@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/* 2.3 form
------------------------------ */
.form dt {
  margin: 3em 0 1em;
}
.form dd {
  margin: 0 0 1em;
}

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

::-moz-placeholder {
  color: #888;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

/* icon--required */
.icon--required {
  position: relative;
}
.icon--required:before {
  position: absolute;
  content: "必須";
  color: #eeecf1;
  font-size: 11px;
  text-align: center;
  line-height: 1;
  padding: 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 4px;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number] {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  background: #fff;
}
@media screen and (min-width: 961px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number] {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number] {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
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: #c31515;
  border-color: #c31515;
}
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 {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  height: auto;
  line-height: 1.6;
}
@media screen and (min-width: 961px) {
  textarea {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  textarea {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
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::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #05010a;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: none;
  padding: 0.5em;
  padding-right: 1.5em;
}
@media screen and (min-width: 961px) {
  .form__select select {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .form__select select {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #c31515;
  border-color: #c31515;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* checkbox */
.form__checkbox label p {
  display: inline-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: #c31515;
}

/* radio */
.form__radio label p {
  display: inline-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: #c31515;
}

/* toggle button */
.form__toggle label p {
  display: inline-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: #c31515;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}

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

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

/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */
html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
  background: transparent;
  color: #eeecf1;
  padding: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-kerning: normal;
}
@media screen and (min-width: 961px) {
  html,
  body {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  html,
  body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.wrap {
  overflow: hidden;
  position: relative;
  background: #05010a;
  min-height: 100%;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.svg-symbol {
  display: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.header {
  z-index: 10;
}
.header .g-nav li a i {
  font-size: 0.4em;
  padding-left: 3px;
  vertical-align: text-bottom;
  line-height: 1.8;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .header .g-nav li a i {
    font-size: 0.8em;
    line-height: 1.2;
    transform: translateY(-2px);
  }
}
.header .g-nav li.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.footer .nav--support {
  display: none;
}

.page--home {
  background: transparent;
}
.page--home .section--bnr {
  position: relative;
}
.page--home .section--bnr::before {
  content: "";
  width: 120vw;
  height: 60vw;
  background: #05010a;
  position: absolute;
  top: -4vw;
  left: -5vw;
  z-index: 2;
  filter: blur(25px);
  pointer-events: none;
  transform: translateZ(0);
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--bnr::before {
    height: 33vw;
    top: -16vw;
    z-index: 2;
    filter: blur(16px);
  }
}
.page--home .section--bnr .list--bnr .slick-list .slick-track,
.page--home .section--video .list--contents .slick-list .slick-track {
  padding-top: 20px !important;
  padding-bottom: 50px !important;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--bnr .list--bnr .slick-list .slick-track,
  .page--home .section--video .list--contents .slick-list .slick-track {
    padding-top: 100px !important;
  }
}
.page--home .section--bnr .list--bnr li.slick-slide,
.page--home .section--video .list--contents li.slick-slide {
  position: relative;
  transition: 0.3s;
}
.page--home .section--bnr .list--bnr li.slick-current.slick-slide,
.page--home .section--video .list--contents li.slick-current.slick-slide {
  pointer-events: all;
  filter: none;
}
.page--home .section--bnr .list--bnr .slick-prev::before,
.page--home .section--bnr .list--bnr .slick-next::before,
.page--home .section--video .list--contents .slick-prev::before,
.page--home .section--video .list--contents .slick-next::before {
  top: 50%;
  transform: translateY(-50%);
}
.page--home footer {
  background: rgba(0, 0, 0, 0.7);
}
.page--home footer .nav--support {
  display: block;
}
.page--home .section--keyvisual {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.page--home .section--keyvisual .block--keyvisual {
  position: relative;
  width: 100%;
  height: 100%;
}
.page--home .section--keyvisual .block--keyvisual .keyvisual {
  position: relative;
  width: 100%;
  height: 120vh;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--keyvisual .block--keyvisual .keyvisual {
    height: 64vh;
    max-height: 500px;
  }
  .page--home .section--keyvisual .block--keyvisual .keyvisual img {
    background-size: contain;
  }
}
.page--home .section--keyvisual .block--keyvisual .keyvisual img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -27vw;
  position: relative;
  z-index: 2;
  vertical-align: middle;
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .page--home .section--keyvisual .block--keyvisual .keyvisual {
    height: 74vh;
    max-height: 800px;
  }
}
.page--home .section--keyvisual .block--logo {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 64vw;
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .page--home .section--keyvisual .block--logo {
    width: 40vw;
    bottom: -6vw;
  }
}
.page--home .text--wrap {
  position: relative;
  z-index: -1;
}
.page--home .text--wrap .txt-white,
.page--home .text--wrap .txt-red,
.page--home .text--wrap .txt-blue {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #05010a;
  opacity: 0.2;
}
@media screen and (min-width: 961px) {
  .page--home .text--wrap .txt-white,
  .page--home .text--wrap .txt-red,
  .page--home .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .text--wrap .txt-white,
  .page--home .text--wrap .txt-red,
  .page--home .text--wrap .txt-blue {
    font-size: 104px;
  }
}
.page--home .text--wrap .txt-white {
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.page--home .text--wrap .txt-red {
  text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
}
.page--home .text--wrap .txt-blue {
  text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
}
.page--home .section--news .block--news li {
  border-bottom: 1px solid #555555;
}
.page--home .section--blog .block--contents .list--contents li a {
  overflow: hidden;
}
.page--home .section--blog .block--contents .list--contents li a .img-wrap {
  overflow: hidden;
  background: #2c2c2c;
}
.page--home .section--blog .block--contents .list--contents li a .img-wrap .blur {
  background: #05010a;
}
.page--home .section--blog .block--contents .list--contents li a .img-wrap .blur img {
  filter: grayscale(100%) blur(20px);
}
@media screen and (min-width: 961px) {
  .page--home .section--blog .block--contents .list--contents li a:hover .img-wrap.nologin .blur img {
    filter: grayscale(0%) blur(20px);
  }
  .page--home .section--blog .block--contents .list--contents li a:hover .img-wrap img {
    filter: none;
  }
  .page--home .section--blog .block--contents .list--contents li a:hover .tit,
  .page--home .section--blog .block--contents .list--contents li a:hover .cat {
    color: #795c9a;
  }
}
.page--home .section--qa {
  display: flex;
  flex-direction: column;
}
.page--home .section--qa .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
.page--home .section--qa .list--contents {
  align-items: stretch;
}
.page--home .section--qa .list--contents li {
  height: auto;
}
.page--home .section--qa .list--contents li a {
  display: block;
  padding: 50px 8%;
  height: 100%;
  background: #05010a;
  border: 1px solid rgba(238, 236, 241, 0.2);
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
.page--home .section--qa .list--contents li a:hover {
  filter: contrast(0.8);
}
.page--home .section--qa .list--contents li a .tit-wrap {
  height: 100%;
}
.page--home .section--qa .list--contents li a .tit-wrap .tit {
  font-size: 17px;
  margin-bottom: 24px;
}
.page--home .section--qa .list--contents li a .tit-wrap > span {
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 4%;
  opacity: 0.4;
  z-index: 1;
  letter-spacing: 0.4em;
}
.page--home .section--qa .list--contents li a .tit-wrap .date {
  position: absolute;
  right: -25px;
  bottom: 40px;
  font-size: 12px;
  padding: 0px 5px;
  line-height: 1.6;
  color: #05010a;
  background: #eeecf1;
  transform: rotate(90deg);
}

@keyframes tape-flowing {
  0% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  40% {
    transform: translate(1px, 1px);
  }
  50% {
    transform: translate(-2px, 0px);
  }
  75% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0);
  }
}
body:not(.page--home) {
  background: #05010a;
}

.section-tit {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  letter-spacing: 0.8em;
}

.txt {
  margin: 0 0 1em;
}

.txt--sub,
.sub-txt-list {
  font-size: 0.85em;
  line-height: 1.4em;
}

.copyright {
  letter-spacing: normal;
  font-size: 10px;
}

.block--pager,
.detail__btn,
.list--more {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.no-data {
  text-align: center;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.lead {
  margin-bottom: 30px;
  font-weight: 400;
}

.slick-prev,
.slick-next {
  opacity: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  color: #05010a;
  font-size: 0;
  line-height: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 99;
  cursor: pointer;
  border: none;
  outline: none;
  background: #eeecf1;
  border-radius: 40px;
  margin-top: -20px;
  transition: 0.4s;
  transform-origin: center;
}

.slick-prev {
  left: 40px;
}

.slick-next {
  right: 40px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
}

.slick-prev::after,
.slick-next::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #05010a;
  border-top: 2px solid #05010a;
  position: absolute;
  top: 16px;
  left: 15px;
  transition: 0.3s;
}

.slick-prev::after {
  transform: rotate(-135deg);
}

.slick-next::after {
  transform: rotate(45deg);
}

.btn .btn--main {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border-radius: 3em;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: #795c9a;
  letter-spacing: 0.08em;
  box-sizing: content-box;
  font-size: 1em;
  color: #05010a;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    transition: all 0.4s ease;
  }
}
.btn .btn--main:hover {
  background: #8325F0;
  color: #fff;
}
.btn .btn--main.btn--join, .btn .btn--main.btn--login, .btn .btn--main.btn--mypage {
  width: 140px;
  height: 44px;
  line-height: 44px;
}
.btn .btn--sub {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border-radius: 3em;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  letter-spacing: 0.08em;
  box-sizing: content-box;
  font-size: 1em;
  color: #8325F0;
  border: 2px solid #8325F0;
}
@media screen and (min-width: 961px) {
  .btn .btn--sub {
    transition: all 0.4s ease;
  }
}
.btn .btn--sub:hover {
  background: #8325F0;
  color: #fff;
}
.btn .btn--sub.btn--join, .btn .btn--sub.btn--login, .btn .btn--sub.btn--mypage {
  width: 140px;
  height: 44px;
  line-height: 44px;
}
.btn .btn--sub.btn--login {
  background: #8325F0;
  border: none;
}
.btn .btn--join svg.join,
.btn .btn--login svg.join,
.btn .btn--mypage svg.join {
  width: 42px;
  height: 18px;
}
.btn .btn--join svg.login,
.btn .btn--login svg.login,
.btn .btn--mypage svg.login {
  width: 40px;
  height: 28px;
  margin-top: 2px;
}
.btn .btn--join svg.mypage,
.btn .btn--login svg.mypage,
.btn .btn--mypage svg.mypage {
  width: 60px;
  height: 29px;
  margin-top: 3px;
}

.detail__btn {
  text-align: left;
}
.detail__btn a {
  display: inline-block;
  position: relative;
  padding: 5px 1em;
}
@media screen and (min-width: 961px) {
  .detail__btn a:before {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #8325F0;
    display: block;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
  }
  .detail__btn a:hover:before {
    transform-origin: right top;
    transform: scale(1, 1);
  }
}

.block--pager {
  text-align: center;
}
.block--pager li {
  display: inline-block;
  position: relative;
}
.block--pager li a {
  padding: 0px 5px 7px;
}
.block--pager .pager-link--prev {
  float: right;
  right: -1em;
}
.block--pager .pager-link--prev a {
  display: inline-block;
  position: relative;
  padding: 5px 1em;
}
@media screen and (min-width: 961px) {
  .block--pager .pager-link--prev a::before {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #8325F0;
    display: block;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
  }
}
@media screen and (min-width: 961px) {
  .block--pager .pager-link--prev:hover a::before {
    transform-origin: right top;
    transform: scale(1, 1);
  }
}
.block--pager .pager-link--next {
  float: left;
  left: -1em;
}
.block--pager .pager-link--next a {
  display: inline-block;
  position: relative;
  padding: 5px 1em;
}
@media screen and (min-width: 961px) {
  .block--pager .pager-link--next a:before {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #8325F0;
    display: block;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
  }
}
@media screen and (min-width: 961px) {
  .block--pager .pager-link--next:hover a::before {
    transform-origin: right top;
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 961px) {
  .block--pager {
    max-width: 1100px;
  }
  .block--pager .pager__item--current {
    color: #8325F0;
    padding: 5px 1em;
  }
  .block--pager .pager__item--other a {
    position: relative;
    padding: 5px 1em;
  }
  .block--pager .pager__item--other a:before {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #8325F0;
    display: block;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
  }
  .block--pager .pager__item--other:hover a::before {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  .block--pager .pager__item--current,
  .block--pager .pager__item--other {
    margin-right: 10px;
  }
}

.block--category .list--sort li {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
}
.block--category .list--sort li input[type=checkbox] {
  display: none;
}
.block--category .list--sort li input[type=checkbox]:not(:checked) + .category {
  background: rgba(113, 113, 113, 0.22);
  color: #eeecf1;
}
.block--category .list--sort li span {
  background: #eeecf1;
  color: #05010a;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}

.block--month {
  margin: 0 0 20px;
}
.block--month .tit {
  float: left;
}
.block--month .tit span.month {
  font-size: 24px;
}
.block--month .tit span.year {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 961px) {
  .block--month .tit span.year {
    font-size: 15px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--month .tit span.year {
    font-size: 13px;
    padding-left: 8px;
  }
}
.block--month .list--month {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.block--month .list--month li {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}

.btn--top {
  text-align: center;
  position: fixed;
  z-index: 50;
}
.btn--top a {
  display: block;
  position: relative;
}
.btn--top a .btn--top__ill {
  background: url(/static/latulatu/fanclub/common/top_btn_ill.png) no-repeat;
  background-size: contain;
  width: 80px;
  height: 50px;
  position: relative;
  bottom: -1px;
  margin: 0 auto;
}
.btn--top a svg {
  width: 40px;
}
.btn--top a .txt {
  font-size: 14px;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  margin-top: -4px;
  margin-bottom: 0;
}
.btn--top:hover .btn--top__ill {
  animation: bounceFromTop 1s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes bounceFromTop {
  0%, 25%, 55%, 85%, 100% {
    animation-timing-function: ease-out;
    transform: translate3d(0, 0, 0);
  }
  41%, 44% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -24px, 0) scale3d(1, 1.2, 1);
  }
  70% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

.list--login {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.list--login li {
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  margin-right: 40px;
}
.list--login li:last-of-type {
  margin-right: 0;
}

.list--more {
  display: inline-block;
}
@media screen and (min-width: 961px) {
  .list--more {
    font-size: 14px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .list--more {
    font-size: 11px;
    margin-left: 5%;
  }
}
.list--more a {
  position: relative;
  transition: color 0.4s ease-out 0s;
  -webkit-transition: color 0.4s ease-out 0s;
  padding: 5px 1.75em 5px 5px;
  z-index: 2;
}
.list--more a::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  border: 1px solid #eeecf1;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
}
.list--more a::after {
  transition: border-color 0.4s ease-out 0s;
  -webkit-transition: border-color 0.4s ease-out 0s;
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translateY(-50%) rotate(-135deg);
}
.list--more:hover a {
  color: #795c9a;
}
.list--more:hover a::after {
  border-color: #795c9a;
}

.list--contents {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.list--contents li {
  margin-right: 2%;
  width: 31%;
}
.list--contents li:last-of-type {
  margin-right: 0;
}
.list--contents li a {
  width: 100%;
}
.list--contents li a .img-wrap {
  position: relative;
}
.list--contents li a .img-wrap img {
  width: 100%;
  line-height: 0;
  display: block;
  transition: all 0.6s ease-out 0s;
  -webkit-transition: all 0.6s ease-out 0s;
}
.list--contents li a .img-wrap .date {
  font-size: 12px;
  font-weight: 500;
  padding: 0px 5px;
  line-height: 1.5;
  transform: rotate(90deg);
}
@media screen and (min-width: 961px) {
  .list--contents li a .img-wrap .date {
    position: absolute;
    right: -25px;
    bottom: 40px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .list--contents li a .img-wrap .date {
    position: absolute;
    right: -20px;
    bottom: 30px;
  }
}

.ph {
  position: relative;
  margin-bottom: 30px;
}
.ph .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blr {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-size: 200%;
  filter: grayscale(100%);
}
.blr::before {
  content: "";
  width: 110%;
  height: 110%;
  background: inherit;
  filter: blur(10px);
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  z-index: -1;
}
@media all and (-ms-high-contrast: none) {
  .blr::after {
    content: "";
    width: 110%;
    height: 110%;
    background: #000;
    opacity: 0.4;
    filter: blur(10px);
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    z-index: 1;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.video .jstream-eqPlayer * {
  background-size: auto;
}
.video .jstream-eqPlayer * .eq-center-icon-play {
  color: transparent;
}
.video .eq-icon-play,
.video .eq-icon-sound {
  color: transparent;
}

.block--player {
  height: 0;
  padding-top: 56.25%;
  background: #05010a;
  line-height: 0;
  position: relative;
}
.block--player video,
.block--player img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.block--player .ulizahtml5 {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.waves {
  position: relative;
  width: 103vw;
  height: 9vw;
  z-index: 0;
  opacity: 0.7;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .waves {
    height: 40px;
  }
}
.waves .bg-wave {
  width: 100%;
  height: 100%;
  animation-timing-function: cubic-bezier(0.55, 0.5, 0.45, 0.5);
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
}
.waves .wave1 {
  animation-name: wave1;
  animation-duration: 100s;
  background-image: url(/static/latulatu/fanclub/common/wave1.svg);
  background-repeat: repeat-X;
}
.waves .wave2 {
  animation-name: wave2;
  animation-duration: 90s;
  background-image: url(/static/latulatu/fanclub/common/wave2.svg);
  background-repeat: repeat-X;
}
.waves .wave3 {
  animation-name: wave1;
  animation-duration: 100s;
  background-image: url(/static/latulatu/fanclub/common/wave2.svg);
  background-repeat: repeat-X;
}

@keyframes wave1 {
  0% {
    background-position: 0 0;
    opacity: 0.4;
  }
  100% {
    background-position: 2000% 0;
    opacity: 0.4;
  }
}
@keyframes wave2 {
  0% {
    background-position: 0% 0%;
    opacity: 0.3;
  }
  100% {
    background-position: -2000% 0;
    opacity: 0.4;
  }
}
.hu__hu__ {
  animation: hu__hu__ infinite 1.4s ease-in-out;
}

@keyframes hu__hu__ {
  50% {
    transform: translateY(10px);
  }
}
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.page--info .date,
.page--blog .date {
  font-family: roboto, sans-serif;
  font-weight: 400;
  float: left;
}
.page--info .section--detail .tit,
.page--blog .section--detail .tit {
  font-size: 1.6rem;
  line-height: 1.4;
}
.page--info .section--detail .section--inner,
.page--blog .section--detail .section--inner {
  background: #eeecf1;
  color: #05010a;
  padding-right: 5%;
  padding-left: 5%;
}
.page--info .section--detail .block--share,
.page--blog .section--detail .block--share {
  line-height: 1;
  text-align: right;
}
.page--info .section--detail .block--share .share,
.page--blog .section--detail .block--share .share {
  display: inline-block;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
.page--info .section--detail .block--share li,
.page--blog .section--detail .block--share li {
  display: inline-block;
  vertical-align: middle;
  color: #05010a;
}

/* .page--blog
============================== */
.page--blog .list--contents li a .img-wrap {
  overflow: hidden;
  background: #2c2c2c;
}
.page--blog .list--contents li a .img-wrap .blur img {
  filter: grayscale(100%) blur(20px);
}
@media screen and (min-width: 961px) {
  .page--blog .list--contents li a:hover .img-wrap.nologin .blur img {
    filter: grayscale(0%) blur(20px);
  }
  .page--blog .list--contents li a:hover .img-wrap img {
    filter: none;
  }
  .page--blog .list--contents li a:hover .tit {
    color: #795c9a;
  }
}

/* .page--qa
============================== */
.page--qa .thema_box {
  margin-bottom: 2em;
}
.page--qa .thema_box .thema_box_sub {
  margin-bottom: 24px;
  border: 1px solid #555555;
  text-align: center;
  line-height: 1;
}
.page--qa .thema_box .thema_box_sub .thema {
  margin-bottom: 24px;
  display: block;
  font-size: 10px;
  letter-spacing: 1em;
  color: #555555;
}
.page--qa .thema_box .thema_box_sub .thema_date {
  margin-bottom: 16px;
  color: #795c9a;
  font-weight: bold;
  display: block;
}
.page--qa .thema_box .thema_box_sub h3 {
  margin-bottom: 16px;
  font-weight: bold;
}

/* page--info category-1
============================== */
.page--info.category-1 .text--wrap {
  position: relative;
  z-index: -1;
}
.page--info.category-1 .text--wrap .txt-white,
.page--info.category-1 .text--wrap .txt-red,
.page--info.category-1 .text--wrap .txt-blue {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #05010a;
  opacity: 0.2;
}
@media screen and (min-width: 961px) {
  .page--info.category-1 .text--wrap .txt-white,
  .page--info.category-1 .text--wrap .txt-red,
  .page--info.category-1 .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--info.category-1 .text--wrap .txt-white,
  .page--info.category-1 .text--wrap .txt-red,
  .page--info.category-1 .text--wrap .txt-blue {
    font-size: 104px;
  }
}
.page--info.category-1 .text--wrap .txt-white {
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.page--info.category-1 .text--wrap .txt-red {
  text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
}
.page--info.category-1 .text--wrap .txt-blue {
  text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
}
.page--info.category-1 .list--info li {
  border-bottom: 1px solid #555555;
}
.page--info.category-1 .list--info li a .thumb {
  display: none;
}
.page--info.category-1 .list--info li a .date {
  font-size: 13px;
  font-family: roboto, sans-serif;
  font-weight: 400;
}
.page--info.category-1 .list--info .new {
  position: relative;
}
.page--info.category-1 .list--info .new:after {
  content: "NEW";
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  color: #8325F0;
  font-size: 0.85em;
  position: absolute;
  line-height: 2.3;
  padding-left: 8px;
}

.page--video .section--list .block--category .list--sort.lower--sort li a {
  background: rgba(113, 113, 113, 0.22);
  color: #eeecf1;
}
.page--video .section--list .block--category .list--sort.lower--sort li:hover a {
  background: #8325F0;
  color: #05010a;
}

.page--movie.new-movie .wrap .section--detail .block--player {
  margin: 0 0 50px;
  border: 1px solid #393939;
}
.page--movie.new-movie .wrap .detail__btn {
  margin: 0;
  text-align: left;
  font-weight: 500;
}
.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 .txt--sub {
  margin-bottom: 50px;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main {
  margin-bottom: 50px;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies {
  background: none;
  border-top: 1px solid #555555;
  padding: 0;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .list__txt {
  width: 72%;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .tit {
  font-size: 17px;
  margin-bottom: 0.3em;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li {
  border-bottom: 1px solid #555555;
  margin: 0;
}

.page--error .section--tit {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}
.page--error .detail__btn {
  text-align: center;
}
@media screen and (min-width: 961px) {
  .page--error .detail__btn {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--error .detail__btn {
    margin-top: 30px;
  }
}
.page--error .footer {
  position: absolute !important;
}

.page--faq .section--list .block--category {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  margin-bottom: 2em;
}
.page--faq .section--list .block--category li {
  margin-bottom: 1em;
}
.page--faq .section--list .block--category li a {
  background: #eeecf1;
  color: #05010a;
  padding: 0.25em 1em;
  border-radius: 20px;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  a {
    cursor: pointer;
  }
  .btn--top {
    right: 30px;
    bottom: 20px;
  }
  .btn--top a:hover svg {
    fill: #8325F0;
  }
  .btn--top a:hover .txt {
    color: #8325F0;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
  }
  .btn--top a:hover svg,
  .btn--top a:hover .txt {
    transition: all 0.3s;
  }
  /* header
  ============================== */
  .header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 25px 2%;
    background: #05010a;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .drawer__btn {
    display: none;
  }
  .header .drawer {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .header .drawer .nav--sns {
    flex: 0 0 100%;
    text-align: right;
  }
  .header .drawer .nav--free {
    margin-right: 6px;
  }
  .header .g-nav li {
    display: inline-block;
    font-family: montserrat, sans-serif;
    font-weight: 700;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.95));
    font-size: 13px;
    margin-left: 6px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .header .g-nav li a {
    padding: 5px 4px;
  }
  .header .g-nav li:hover {
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
  }
  .header .g-nav li:hover a {
    color: #8325F0;
  }
  .header .g-nav li:last-of-type {
    margin-right: 0;
  }
  .header .g-nav.free li {
    margin-bottom: 5px;
  }
  .header .g-nav.member {
    margin-bottom: 5px;
  }
  .header .waves {
    display: none;
  }
  .header .list--sns {
    display: block;
  }
  .header .list--sns li {
    display: inline-block;
    font-family: montserrat, sans-serif;
    font-weight: 700;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.95));
  }
  .header .list--sns .name {
    display: inline-block;
    margin-right: 20px;
    font-size: 13px;
  }
  .header .list--sns .sns-icons {
    display: inline-block;
  }
  .header .list--sns .sns-icons a {
    display: inline-block;
    padding: 0 5px;
    margin-right: 5px;
  }
  .header .list--sns .sns-icons a:hover i {
    color: #8325F0;
  }
  .header .list--sns .sns-icons a:last-of-type {
    margin-right: 0;
  }
  .header .list--sns .sns-icons i {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    font-size: 16px;
  }
  body:not(.page--home) .header .logo {
    display: block;
    width: 200px;
    z-index: 18;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  /* footer
  ============================== */
  .footer {
    padding: 0 2% 90px;
    bottom: 0;
    left: 0;
  }
  .footer .list--sns {
    display: none;
  }
  .footer .copyright {
    margin-top: 30px;
    text-align: left;
  }
  /* page--home
  ============================== */
  .page--home .bg {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    display: block;
    height: 130vh;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .page--home .header .logo {
    width: 18vw;
    max-width: 300px;
  }
  .page--home .footer {
    background: none;
    padding: 0 2% 90px;
    bottom: 0;
    left: 0;
  }
  .page--home .footer .flex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page--home .footer .list--support li {
    display: inline-block;
    font-size: 13px;
    margin-right: 30px;
  }
  .page--home .footer .list--support li:last-of-type {
    margin-right: 0;
  }
  .page--home .footer .list--sns {
    display: block;
  }
  .page--home .footer .list--sns li {
    margin-bottom: 20px;
  }
  .page--home .footer .list--sns li:last-of-type {
    margin-bottom: 0;
  }
  .page--home .footer .list--sns li .name {
    display: inline-block;
    margin-right: 20px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 12px;
  }
  .page--home .footer .list--sns li .sns-icons {
    display: inline-block;
  }
  .page--home .footer .list--sns li .sns-icons a {
    display: inline-block;
    padding: 0 5px;
    margin-right: 5px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .footer .list--sns li .sns-icons a:hover i {
    color: #8325F0;
  }
  .page--home .footer .list--sns li .sns-icons a:last-of-type {
    margin-right: 0;
  }
  .page--home .footer .list--sns li .sns-icons i {
    font-size: 16px;
  }
  .page--home .footer .copyright {
    margin-top: 30px;
    text-align: left;
  }
  .page--home .section--keyvisual {
    padding-top: 88px;
  }
  .page--home .section--bnr {
    padding: 0;
    margin-bottom: 200px;
    position: relative;
  }
  .page--home .section--bnr.section--bnr--single:before {
    height: 70vw;
  }
  .page--home .section--bnr.section--bnr--single .list--bnr li {
    width: 35%;
    margin: 0 auto !important;
  }
  .page--home .section--bnr .list--bnr {
    z-index: 2;
    position: relative;
  }
  .page--home .section--bnr .list--bnr li {
    margin-right: 40px;
  }
  .page--home .section--bnr .list--bnr li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--bnr .list--bnr:hover .slick-prev,
  .page--home .section--bnr .list--bnr:hover .slick-next {
    opacity: 1;
    background: #eeecf1;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
  }
  .page--home .section--bnr .list--bnr:hover .slick-prev:hover,
  .page--home .section--bnr .list--bnr:hover .slick-next:hover {
    background: #8325F0;
    transform: scale(1.2);
    margin-top: -40px;
  }
  .page--home .section--bnr .list--bnr:hover .slick-prev:hover::after,
  .page--home .section--bnr .list--bnr:hover .slick-next:hover::after {
    border-right: 2px solid #eeecf1;
    border-top: 2px solid #eeecf1;
  }
  .page--home .section--news {
    padding-left: 7%;
    padding-bottom: 300px;
    z-index: 2;
    position: relative;
    background: #05010a;
  }
  .page--home .section--news .section-tit {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .page--home .section--news .flex-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease-out 0.2s;
    -webkit-transition: all 0.4s ease-out 0.2s;
  }
  .page--home .section--news.delighter.started .flex-wrap {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .section--news .block--news {
    width: 100%;
    margin-right: 2%;
  }
  .page--home .section--news .block--news ul {
    margin-right: 8%;
  }
  .page--home .section--news .block--news ul li {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .page--home .section--news .list--news li {
    margin-bottom: 70px;
  }
  .page--home .section--news .list--news a {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--news .list--news a:hover {
    opacity: 0.6;
  }
  .page--home .section--news .list--news .date {
    font-size: 13px;
    font-family: roboto, sans-serif;
    font-weight: 400;
    margin-right: 26px;
  }
  .page--home .section--news .list--news span.new {
    padding-left: 8px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #8325F0;
    font-size: 0.85em;
  }
  .page--home .block--member {
    position: relative;
    padding: 0 2% 50px;
    background: #05010a;
  }
  .page--home .block--member:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50vw 100vw;
    border-color: transparent transparent #05010a transparent;
    content: "";
    position: absolute;
    bottom: -50vw;
    left: 0;
    transform: rotate(180deg);
    z-index: 1;
  }
  .page--home .block--member [class^=section--] {
    margin-right: 8%;
    margin-left: 8%;
    position: relative;
    z-index: 2;
  }
  .page--home .block--member [class^=section--] .section-tit {
    font-size: 32px;
    margin-bottom: 50px;
    display: inline-block;
  }
  .page--home .block--member [class^=section--] .text--wrap .txt-white,
  .page--home .block--member [class^=section--] .text--wrap .txt-red,
  .page--home .block--member [class^=section--] .text--wrap .txt-blue {
    font-size: 240px;
  }
  .page--home .block--member [class^=section--] .list--more {
    float: right;
    clear: both;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .page--home .block--member .block--login {
    max-width: 600px;
    margin: 0 auto 50px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease-out 0.2s;
    -webkit-transition: all 0.4s ease-out 0.2s;
  }
  .page--home .block--member .block--login .waves {
    width: 120vw !important;
    height: 9vw !important;
    transform: translate(-40vw, -140px);
  }
  .page--home .block--member .block--login.delighter.started {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .block--member .block--login > img {
    display: block;
    margin-bottom: 70px;
  }
  .page--home .block--member .block--login .flex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .page--home .block--member .block--login p.mailmag {
    font-size: 0.8em;
    text-align: center;
  }
  .page--home .block--member .block--login p.mailmag a {
    position: relative;
    padding: 10px;
    transition: color 0.4s ease-out 0s;
    -webkit-transition: color 0.4s ease-out 0s;
    display: inline-block;
    z-index: 2 !important;
  }
  .page--home .block--member .block--login p.mailmag a::before {
    transition: background-color 0.4s ease-out 0s;
    -webkit-transition: background-color 0.4s ease-out 0s;
    content: "";
    width: 0.8em;
    height: 1px;
    background-color: #eeecf1;
    position: absolute;
    position: absolute;
    top: 50%;
    left: -0.5em;
  }
  .page--home .block--member .block--login p.mailmag a:hover {
    color: #795c9a;
  }
  .page--home .block--member .block--login p.mailmag a:hover:before {
    background-color: #795c9a;
  }
  .page--home .block--member .block--login .list--login li {
    font-size: 18px;
  }
  .page--home .block--member .block--login .list--login li a {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.95));
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    padding: 10px 4px;
    position: relative;
    z-index: 2;
  }
  .page--home .block--member .block--login .list--login li a:hover {
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
    color: #8325F0;
  }
  .page--home .section--blog,
  .page--home .section--movie {
    padding-bottom: 300px;
  }
  .page--home .section--blog .block--img,
  .page--home .section--movie .block--img {
    width: 43vw;
    height: 440px;
    position: absolute;
    bottom: 34vh;
    left: -12%;
    z-index: -1;
    overflow: hidden;
  }
  .page--home .section--blog .block--img img,
  .page--home .section--movie .block--img img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.2);
    filter: blur(10px);
  }
  .page--home .section--blog .block--contents,
  .page--home .section--movie .block--contents {
    margin-bottom: 50px;
  }
  .page--home .section--blog .block--contents .list--contents li,
  .page--home .section--movie .block--contents .list--contents li {
    opacity: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap:before, .page--home .section--blog .block--contents .list--contents li.new .img-wrap:after,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:before,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap:before,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap:after,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--home .section--blog .block--contents .list--contents li a,
  .page--home .section--movie .block--contents .list--contents li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  /* page--info category-1
  ============================== */
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--home .section--blog .block--contents .list--contents li a .img-wrap,
  .page--home .section--movie .block--contents .list--contents li a .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--blog .block--contents .list--contents li a .img-wrap,
  .page--home .section--movie .block--contents .list--contents li a .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 961px) {
  .page--home .section--blog .block--contents .list--contents li a .img-wrap img,
  .page--home .section--movie .block--contents .list--contents li a .img-wrap img {
    filter: grayscale(100%);
  }
  .page--home .section--blog .block--contents .list--contents li a .img-wrap .date,
  .page--home .section--movie .block--contents .list--contents li a .img-wrap .date {
    font-size: 12px;
    background: #05010a;
    color: #eeecf1;
    padding: 0px 5px;
  }
  .page--home .section--blog .block--contents .list--contents li:nth-child(1),
  .page--home .section--movie .block--contents .list--contents li:nth-child(1) {
    transform: translateY(50px);
    transition-delay: 0.2s;
  }
  .page--home .section--blog .block--contents .list--contents li:nth-child(2),
  .page--home .section--movie .block--contents .list--contents li:nth-child(2) {
    transform: translateY(60px);
    transition-delay: 0.3s;
  }
  .page--home .section--blog .block--contents .list--contents li:nth-child(3),
  .page--home .section--movie .block--contents .list--contents li:nth-child(3) {
    transform: translateY(70px);
    transition-delay: 0.4s;
  }
  .page--home .section--blog .block--contents .list--contents .tit,
  .page--home .section--movie .block--contents .list--contents .tit {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .page--home .section--blog .block--contents .list--contents .cat,
  .page--home .section--movie .block--contents .list--contents .cat {
    color: #eeecf1;
    font-size: 12px;
    mix-blend-mode: difference;
  }
  .page--home .section--blog .block--contents .list--contents.video,
  .page--home .section--movie .block--contents .list--contents.video {
    display: inherit;
    padding-top: 0;
  }
  .page--home .section--blog .block--contents .list--contents.video li,
  .page--home .section--movie .block--contents .list--contents.video li {
    min-width: 447px;
    min-height: 447px;
  }
  .page--home .section--blog .block--contents.slider--single .list--contents li,
  .page--home .section--movie .block--contents.slider--single .list--contents li {
    width: 60%;
  }
  .page--home .section--blog .block--contents.slider--single.block--img,
  .page--home .section--movie .block--contents.slider--single.block--img {
    bottom: 54vh;
    left: 50%;
  }
  .page--home .section--blog.delighter.started .list--contents li,
  .page--home .section--movie.delighter.started .list--contents li {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .section--blog .waves {
    transform: translate(-13vw, 70px);
  }
  .page--home .section--blog .tit {
    display: inline;
    background: #000;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 4px;
  }
  .page--home .section--blog .cat {
    font-size: 13px;
  }
  .page--home .section--blog .text--wrap .txt-white,
  .page--home .section--blog .text--wrap .txt-red,
  .page--home .section--blog .text--wrap .txt-blue {
    top: -240px;
    right: 0;
  }
  .page--home .section--blog .block--contents.slider--single .block--img {
    bottom: 56vh;
    left: 48%;
  }
  .page--home .section--movie .block--contents .list--contents li a:hover img {
    filter: none !important;
  }
  .page--home .section--movie .block--contents .list--contents li a:hover .tit,
  .page--home .section--movie .block--contents .list--contents li a:hover .cat {
    color: #795c9a;
  }
  .page--home .section--movie .block--contents.slider--single .block--img {
    bottom: 56vh;
    left: 48%;
  }
  .page--home .section--movie .block--img {
    left: unset;
    right: -12%;
  }
  .page--home .section--movie .waves {
    transform: translate(-13vw, 70px);
  }
  .page--home .section--movie .text--wrap .txt-white,
  .page--home .section--movie .text--wrap .txt-red,
  .page--home .section--movie .text--wrap .txt-blue {
    top: -270px;
    left: 0;
  }
  .page--home .section--qa {
    margin-bottom: 300px;
  }
  .page--home .section--qa .no-data {
    margin: 100px 0;
  }
  .page--home .section--qa .no-data .tit {
    margin-bottom: 50px;
  }
  .page--home .section--qa .no-data .txt,
  .page--home .section--qa .no-data .btn--main {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  }
  .page--home .section--qa .waves {
    transform: translate(-13vw, 220px);
  }
  .page--home .section--qa .text--wrap .txt-white,
  .page--home .section--qa .text--wrap .txt-red,
  .page--home .section--qa .text--wrap .txt-blue {
    top: -230px;
    right: 0;
  }
  .page--home .section--qa .block--contents {
    margin-bottom: 50px;
  }
  .page--home .section--qa .list--contents li {
    opacity: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--qa .list--contents li:nth-child(1) {
    transform: translateY(50px);
    transition-delay: 0.2s;
  }
  .page--home .section--qa .list--contents li:nth-child(2) {
    transform: translateY(60px);
    transition-delay: 0.3s;
  }
  .page--home .section--qa .list--contents li:nth-child(3) {
    transform: translateY(70px);
    transition-delay: 0.4s;
  }
  .page--home .section--qa .list--contents li.new a {
    position: relative;
  }
  .page--home .section--qa .list--contents li.new a:before, .page--home .section--qa .list--contents li.new a:after {
    position: absolute;
    left: 0;
  }
  .page--home .section--qa .list--contents li.new a:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--home .section--qa .list--contents li.new a:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--home .section--qa.delighter.started .list--contents li {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .section--video {
    z-index: 2;
    position: relative;
    padding-bottom: 230px;
  }
  .page--home .section--video .section-tit {
    font-size: 32px;
    margin: 0 0 50px 10%;
    display: inline-block;
  }
  .page--home .section--video .block--contents {
    padding-bottom: 230px;
  }
  .page--home .section--video .block--contents .list--contents {
    padding: 0;
    margin-bottom: 50px;
  }
  .page--home .section--video .block--contents .list--contents li {
    margin-right: 40px;
  }
  .page--home .section--video .block--contents .list--contents li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--video .block--contents .list--contents li a figure {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .page--home .section--video .block--contents .list--contents li a figure::before {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    content: "";
    opacity: 0;
    background: #8325F0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .page--home .section--video .block--contents .list--contents li a figure img {
    width: 100%;
    height: 100%;
  }
  .page--home .section--video .block--contents .list--contents li a figure .tit {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    opacity: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
  }
  .page--home .section--video .block--contents .list--contents li a figure .tit > span {
    display: block;
    border-top: 1px solid #eeecf1;
    margin-top: 10px;
    padding-top: 10px;
    font-family: "Libre Baskerville", serif;
    font-size: 18px;
  }
  .page--home .section--video .block--contents .list--contents li a:hover figure::before {
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page--home .section--video .block--contents .list--contents li a:hover figure .tit {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page--home .section--video .block--contents .list--contents:hover .slick-prev,
  .page--home .section--video .block--contents .list--contents:hover .slick-next {
    opacity: 1;
    background: #eeecf1;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.7));
  }
  .page--home .section--video .block--contents .list--contents:hover .slick-prev:hover,
  .page--home .section--video .block--contents .list--contents:hover .slick-next:hover {
    background: #8325F0;
    transform: scale(1.2);
    margin-top: -40px;
  }
  .page--home .section--video .block--contents .list--contents:hover .slick-prev:hover::after,
  .page--home .section--video .block--contents .list--contents:hover .slick-next:hover::after {
    border-right: 2px solid #eeecf1;
    border-top: 2px solid #eeecf1;
  }
  .page--home .section--video .block--contents .list--contents.slider--single li.no-data {
    margin: 100px auto;
  }
  .page--home .section--video .block--contents .list--more {
    margin-right: 10%;
    float: right;
    clear: both;
  }
  body:not(.page--home) .section--list,
  body:not(.page--home) .section--detail {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 200px 0;
  }
  body:not(.page--home) .section--list .section--tit,
  body:not(.page--home) .section--detail .section--tit {
    font-size: 26px;
    line-height: 1.6;
    margin: 0 0 60px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.5em;
  }
  body:not(.page--home) .section--list {
    max-width: 1100px;
  }
  .page--info .date,
  .page--blog .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--info .block--pager .pager-link--prev a,
  .page--info .block--pager .pager-link--prev span,
  .page--info .block--pager .pager-link--next a,
  .page--info .block--pager .pager-link--next span,
  .page--blog .block--pager .pager-link--prev a,
  .page--blog .block--pager .pager-link--prev span,
  .page--blog .block--pager .pager-link--next a,
  .page--blog .block--pager .pager-link--next span {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 1em;
    position: relative;
  }
  .page--info .block--pager .pager-link--prev span,
  .page--info .block--pager .pager-link--next span,
  .page--blog .block--pager .pager-link--prev span,
  .page--blog .block--pager .pager-link--next span {
    opacity: 0.2;
  }
  .page--info .section--detail .tit,
  .page--blog .section--detail .tit {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .page--info .section--detail .txt,
  .page--blog .section--detail .txt {
    font-size: 15px;
    padding: 40px 0 20px;
  }
  .page--info .section--detail .txt * a,
  .page--blog .section--detail .txt * a {
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
  }
  .page--info .section--detail .txt * a:hover,
  .page--blog .section--detail .txt * a:hover {
    text-decoration: none;
  }
  .page--info .section--detail .section--inner,
  .page--blog .section--detail .section--inner {
    padding-top: 40px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .page--info .section--detail .block--share .share,
  .page--blog .section--detail .block--share .share {
    font-size: 0.8em;
  }
  .page--info .section--detail .block--share li,
  .page--blog .section--detail .block--share li {
    font-size: 20px;
    margin-left: 20px;
  }
  .page--info .section--detail .block--share li a,
  .page--blog .section--detail .block--share li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--info .section--detail .block--share li a:hover i,
  .page--blog .section--detail .block--share li a:hover i {
    color: #8325F0;
  }
  .page--info .section--detail .block--share li a:hover svg,
  .page--blog .section--detail .block--share li a:hover svg {
    fill: #8325F0;
  }
  .page--info.category-1 .text--wrap {
    left: -20vw;
  }
  .page--info.category-1 .text--wrap .txt-white,
  .page--info.category-1 .text--wrap .txt-red,
  .page--info.category-1 .text--wrap .txt-blue {
    top: -270px;
    left: 0;
  }
  .page--info.category-1 .list--info li {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .page--info.category-1 .list--info li a {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--info.category-1 .list--info li a:hover {
    opacity: 0.6;
  }
  .page--info.category-1 .list--info li a .date {
    margin-right: 26px;
  }
  .page--info.category-1 .list--info .new:after {
    line-height: 2.3;
  }
  .page--video .section--list .block--category {
    margin: 5px auto 40px;
  }
  .page--video .section--list .block--category .list--sort li a {
    background: #eeecf1;
    color: #05010a;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 13px;
    padding: 3px 6px 2px 6px;
    line-height: 1.35;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--video .section--list .block--category .list--sort li span {
    padding: 3px 6px 2px 6px;
    font-size: 13px;
  }
  .page--video .section--list .block--category .list--sort li:hover a {
    background: #8325F0;
    color: #05010a;
  }
  .page--video .section--list .list--contents {
    padding: 0;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .page--video .section--list .list--contents li {
    margin-bottom: 50px;
  }
  .page--video .section--list .list--contents li:nth-child(3) {
    margin-right: 0;
  }
  .page--video .section--list .list--contents li a {
    line-height: 0;
    border: 1px solid rgba(58, 58, 58, 0.25);
  }
  .page--video .section--list .list--contents li a figure {
    position: relative;
    overflow: hidden;
  }
  .page--video .section--list .list--contents li a figure::before {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    opacity: 0;
    content: "";
    background: #8325F0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
  }
  .page--video .section--list .list--contents li a figure img {
    width: 100%;
    background-position: center;
  }
  .page--video .section--list .list--contents li a figure .tit {
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .page--video .section--list .list--contents li a figure .tit br {
    display: none;
  }
  .page--video .section--list .list--contents li a figure .tit > span {
    display: block;
    border-top: 1px solid #eeecf1;
    margin-top: 10px;
    padding-top: 10px;
    font-family: "Libre Baskerville", serif;
    font-size: 16px;
  }
  .page--video .section--list .list--contents li a:hover figure::before {
    opacity: 0.5;
    position: absolute;
    top: 0;
  }
  .page--video .section--list .list--contents li a:hover figure .tit {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page--video .section--list .no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--movie .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--movie .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--movie .section--list {
    padding: 150px 0 200px;
  }
  .page--movie .section--list .list--contents {
    flex-wrap: wrap;
  }
  .page--movie .section--list .list--contents li {
    margin-right: 5%;
    width: 45%;
    margin-bottom: 80px;
  }
  .page--movie .section--list .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--movie .section--list .list--contents li.no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--movie .section--list .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--movie .section--list .list--contents li.new .img-wrap:before, .page--movie .section--list .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--movie .section--list .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--movie .section--list .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--movie .section--list .list--contents a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--movie .section--list .list--contents a:hover img {
    filter: grayscale(0%);
  }
  .page--movie .section--list .list--contents a:hover img .tit,
  .page--movie .section--list .list--contents a:hover img .cat {
    color: #795c9a;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--movie .section--list .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--movie .section--list .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 961px) {
  .page--movie .section--list .img-wrap img {
    filter: grayscale(100%);
  }
  .page--movie .section--list .img-wrap .date {
    background: #05010a;
  }
  .page--movie .section--list .text--wrap {
    position: relative;
    z-index: -1;
    top: -15vw;
    left: -20vw;
  }
  .page--movie .section--list .text--wrap .txt-white,
  .page--movie .section--list .text--wrap .txt-red,
  .page--movie .section--list .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--movie .section--list .text--wrap .txt-white,
  .page--movie .section--list .text--wrap .txt-red,
  .page--movie .section--list .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--movie .section--list .text--wrap .txt-white,
  .page--movie .section--list .text--wrap .txt-red,
  .page--movie .section--list .text--wrap .txt-blue {
    font-size: 104px;
  }
}
@media screen and (min-width: 961px) {
  .page--movie .section--list .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--movie .section--list .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--movie .section--list .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--movie .section--list .block--pager .pager-link--prev a,
  .page--movie .section--list .block--pager .pager-link--prev span,
  .page--movie .section--list .block--pager .pager-link--next a,
  .page--movie .section--list .block--pager .pager-link--next span {
    display: block;
    width: 100%;
    height: 100%;
  }
  .page--movie .section--list .block--pager .pager-link--prev span,
  .page--movie .section--list .block--pager .pager-link--next span {
    opacity: 0.2;
  }
  .page--movie .section--detail .tit {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .page--movie .section--detail .txt {
    font-size: 15px;
    padding: 40px 0 20px;
  }
  .page--movie .section--detail .date {
    margin-bottom: 50px;
  }
  .page--movie .section--detail .block--player {
    margin: 0 0 50px;
  }
  .page--movie .section--detail .txt--sub {
    margin-bottom: 100px;
  }
  .page--blog .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--blog .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--blog .section--list {
    padding: 150px 0 200px;
  }
  .page--blog .section--list .list--contents {
    flex-wrap: wrap;
  }
  .page--blog .section--list .list--contents li {
    margin-bottom: 50px;
    margin-right: 4%;
    width: 48%;
  }
  .page--blog .section--list .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--blog .section--list .list--contents li .cat {
    display: inline-block;
    background: #795c9a;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 4px;
    line-height: 1;
    font-size: 13px;
  }
  .page--blog .section--list .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--blog .section--list .list--contents li.new .img-wrap:before, .page--blog .section--list .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--blog .section--list .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--blog .section--list .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--blog .section--list .list--contents a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--blog .section--list .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--list .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 961px) {
  .page--blog .section--list .img-wrap img {
    filter: grayscale(100%);
  }
  .page--blog .section--list .img-wrap .date {
    background: #05010a;
  }
  .page--blog .section--list .text--wrap {
    position: relative;
    z-index: -1;
    top: -15vw;
    left: -20vw;
  }
  .page--blog .section--list .text--wrap .txt-white,
  .page--blog .section--list .text--wrap .txt-red,
  .page--blog .section--list .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--blog .section--list .text--wrap .txt-white,
  .page--blog .section--list .text--wrap .txt-red,
  .page--blog .section--list .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--list .text--wrap .txt-white,
  .page--blog .section--list .text--wrap .txt-red,
  .page--blog .section--list .text--wrap .txt-blue {
    font-size: 104px;
  }
}
@media screen and (min-width: 961px) {
  .page--blog .section--list .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--blog .section--list .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--blog .section--list .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--blog .section--list .no-data {
    margin: 200px auto;
  }
  .page--blog .section--detail .section--inner {
    position: relative;
  }
  .page--blog .section--detail .tit--wrap {
    margin-bottom: 40px;
    display: inline-block;
  }
  .page--blog .section--detail .txt {
    padding-top: 0 !important;
    color: #05010a;
  }
  .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: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    white-space: normal !important;
    word-break: break-word;
    font-size: inherit !important;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .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-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .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-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 961px) {
  .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: #05010a;
    text-decoration: underline;
  }
  .page--qa .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--qa .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--qa .text--wrap {
    position: relative;
    z-index: -1;
    top: -15vw;
    left: -20vw;
  }
  .page--qa .text--wrap .txt-white,
  .page--qa .text--wrap .txt-red,
  .page--qa .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--qa .text--wrap .txt-white,
  .page--qa .text--wrap .txt-red,
  .page--qa .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .text--wrap .txt-white,
  .page--qa .text--wrap .txt-red,
  .page--qa .text--wrap .txt-blue {
    font-size: 104px;
  }
}
@media screen and (min-width: 961px) {
  .page--qa .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--qa .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--qa .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--qa .section--list {
    padding: 150px 0 200px;
  }
  .page--qa .section--list .block--area {
    margin-bottom: 50px;
  }
  .page--qa .section--list .block--area > .txt {
    margin-bottom: 50px;
  }
  .page--qa .list--contents {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .page--qa .list--contents li {
    position: relative;
    margin-bottom: 50px;
    margin-right: 4%;
    width: 48%;
    height: auto;
  }
  .page--qa .list--contents li a {
    display: block;
    padding: 50px 8%;
    height: 100%;
    background: #05010a;
    border: 1px solid rgba(238, 236, 241, 0.2);
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--qa .list--contents li a:hover {
    filter: contrast(0.8);
  }
  .page--qa .list--contents li a .tit-wrap {
    height: 100%;
  }
  .page--qa .list--contents li a .tit-wrap .tit {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .page--qa .list--contents li a .tit-wrap > span {
    font-size: 12px;
    position: absolute;
    top: 15px;
    right: 4%;
    opacity: 0.4;
    z-index: 1;
    letter-spacing: 0.4em;
  }
  .page--qa .list--contents li a .tit-wrap .date {
    position: absolute;
    right: -25px;
    bottom: 40px;
    font-size: 12px;
    padding: 0px 5px;
    line-height: 1.6;
    color: #05010a;
    background: #eeecf1;
    transform: rotate(90deg);
  }
  .page--qa .list--contents li:nth-child(2n) {
    margin-right: 0;
  }
  .page--qa .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--qa .section--detail .rule {
    font-size: 0.85em;
  }
  .page--qa .section--detail .form {
    margin: 50px auto;
  }
  .page--qa .section--detail .form dt {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
  }
  .page--qa .section--detail .form.form--post {
    width: 90%;
  }
  .page--qa .section--detail .form.form--post .name {
    width: 80%;
  }
  .page--qa .section--detail .form.form--post .question {
    width: 88%;
  }
  .page--qa .section--detail .form.form--post .name-edit {
    width: 80%;
  }
  .page--qa .section--detail .form.form--post .name-edit input {
    color: #888;
    pointer-events: none;
  }
  .page--qa .section--detail .form.form--post .question-edit {
    width: 88%;
  }
  .page--qa .section--detail .form.form--comfirm {
    width: 90%;
  }
  .page--qa .section--detail .form.form--comfirm dt {
    margin: 0 0 0.5em;
    color: #888;
    font-size: 13px;
  }
  .page--qa .section--detail .form.form--comfirm dd {
    padding: 30px;
    background-color: #1d1921;
    border-radius: 3px;
    margin-bottom: 30px;
  }
  .page--qa .section--detail .block--question,
  .page--qa .section--detail .block--answer {
    position: relative;
  }
  .page--qa .section--detail .block--question .name,
  .page--qa .section--detail .block--answer .name {
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .page--qa .section--detail .block--question {
    margin: 30px auto 160px;
  }
  .page--qa .section--detail .block--question .name {
    text-align: right;
  }
  .page--qa .section--detail .block--answer {
    margin-bottom: 60px;
  }
  .page--qa .section--detail .block--answer .circle {
    background: #8b8594;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -80px;
    left: -90px;
  }
  .page--qa .section--detail .block--answer .thumb-wrap {
    margin-bottom: 10px;
  }
  .page--qa .section--detail .tit--q,
  .page--qa .section--detail .name > span,
  .page--qa .section--detail .tit--a {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
  }
  .page--qa .section--detail .tit--q,
  .page--qa .section--detail .tit--a {
    font-size: 6em;
    opacity: 0.2;
    position: absolute;
    line-height: 1;
    z-index: 0;
  }
  .page--qa .section--detail .tit--q {
    color: #e0d0f7;
    top: -80px;
    right: -80px;
  }
  .page--qa .section--detail .tit--a {
    color: #e2d6f1;
    bottom: 0px;
    left: 20px;
  }
  .page--qa .section--detail .balloon_l,
  .page--qa .section--detail .balloon_r {
    border-radius: 15px;
    position: relative;
    padding: 50px 30px 60px;
  }
  .page--qa .section--detail .balloon_l::after,
  .page--qa .section--detail .balloon_r::after {
    width: 100px;
    height: 100px;
    display: block;
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page--qa .section--detail .balloon_l {
    background: #332d3a;
  }
  .page--qa .section--detail .balloon_l .tit,
  .page--qa .section--detail .balloon_l .name {
    z-index: 1;
    position: relative;
  }
  .page--qa .section--detail .balloon_l .tit {
    margin-bottom: 20px;
  }
  .page--qa .section--detail .balloon_l::after {
    background-image: url(/static/latulatu/fanclub/common/fukidashi-q.png);
    top: -7px;
    right: 16px;
    transform: scale(-1, 1) rotate(13deg);
    z-index: -1;
  }
  .page--qa .section--detail .balloon_r {
    background: #552d82;
  }
  .page--qa .section--detail .balloon_r .txt {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }
  .page--qa .section--detail .balloon_r::after {
    background-image: url(/static/latulatu/fanclub/common/fukidashi-a.png);
    top: -7px;
    left: 16px;
    z-index: -1;
    transform: rotate(13deg);
  }
  .page--qa .section--detail.done > .txt {
    margin-bottom: 100px;
  }
  .page--qa .thema_box .thema_box_sub {
    padding: 40px 24px 24px;
  }
  .page--qa .thema_box .thema_box_sub .thema_date {
    font-size: 20px;
  }
  .page--qa .thema_box .thema_box_sub h3 {
    font-size: 32px;
  }
  .page--schedule .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--schedule .week {
    font-size: 11px;
    margin-left: 2px;
  }
  .page--schedule .date {
    font-size: 20px;
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--schedule .cat {
    display: inline-block;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 11px;
    padding: 3px 3px 2px 3px;
    line-height: 1;
  }
  .page--schedule .section--list {
    padding: 150px 0 200px;
  }
  .page--schedule .section--list .block--category {
    margin: 5px auto 40px;
  }
  .page--schedule .section--list .block--category .list--sort li span {
    font-size: 13px;
    padding: 3px 6px 2px 6px;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--schedule .section--list .block--category .list--sort li:hover span {
    background: #8325F0;
    color: #05010a;
  }
  .page--schedule .section--list .list--news li a {
    padding: 18px 0;
    position: relative;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--schedule .section--list .list--news li a:hover {
    opacity: 0.6;
  }
  .page--schedule .section--list .list--news .date {
    width: 140px;
    position: absolute;
    margin-bottom: 0;
  }
  .page--schedule .section--list .list--news .cat {
    background: #eeecf1;
    color: #05010a;
  }
  .page--schedule .section--list .list--news .tit-wrap {
    padding-left: 140px;
  }
  .page--schedule .section--list .list--news .tit-wrap span {
    display: inline-block;
  }
  .page--schedule .section--list .list--month li {
    font-size: 13px;
  }
  .page--schedule .section--list .list--month li.prev {
    margin-right: 30px;
  }
  .page--schedule .section--list .no-data {
    margin: 200px auto;
  }
  .page--schedule .section--detail .cat {
    background: #05010a;
    color: #eeecf1;
  }
  .page--schedule .section--detail .date-wrap p {
    display: inline-block;
  }
  .page--schedule .section--detail .date-wrap .cat {
    vertical-align: bottom;
    margin-left: 5px;
  }
  .page--schedule .section--detail .date-wrap .event-date--end {
    position: relative;
    margin-left: 2em;
  }
  .page--schedule .section--detail .date-wrap .event-date--end :before {
    width: 2em;
    height: 1px;
    background: #05010a;
    content: "";
    position: absolute;
    top: 50%;
    left: -3em;
  }
  .page--entry .section--detail .section--tit {
    display: none;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 650px;
    margin: 0 auto 40px;
    border: none;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 175px;
    padding: 20px;
    background-color: #17131b;
    border: 1px solid #eeecf1;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 20px;
    border: 1px solid #eeecf1;
  }
  .page--entry .section--detail .block--logo {
    margin-bottom: 120px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 400px;
    display: block;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail .block--logo .lead {
    margin-bottom: 0;
  }
  .page--entry .section--detail .block-tit {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
  .page--entry .section--detail .list--contents {
    flex-wrap: wrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 30px 0 20px;
    background-color: #332d3a;
    width: 46%;
    height: 190px;
    margin: 0 4% 40px 0;
    position: relative;
  }
  .page--entry .section--detail .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--entry .section--detail .list--contents li .inner {
    margin: 0 5%;
  }
  .page--entry .section--detail .list--contents li .inner .tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1;
  }
  .page--entry .section--detail .list--contents li .inner .text {
    font-size: 14px;
  }
  .page--entry .section--detail .block--intro {
    margin-top: 120px;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 80px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.5em;
  }
  .page--entry .section--detail .entry {
    margin-top: 30px;
  }
  .page--biography .text--wrap {
    position: relative;
    z-index: -1;
    top: -15vw;
    left: -20vw;
  }
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    font-size: 104px;
  }
}
@media screen and (min-width: 961px) {
  .page--biography .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--biography .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--biography .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--biography .thumb {
    position: relative;
  }
  .page--biography .artist--name > span {
    width: 300px;
    background: #05010a;
    margin-bottom: 30px;
    display: inline-block;
  }
  .page--biography .artist--name img {
    margin: 0 auto;
    vertical-align: middle;
  }
  .page--biography .name {
    margin: 50px 0;
  }
  .page--biography .header .list--sns .name {
    margin: 0;
    margin-right: 20px;
  }
  .page--biography .list--member li {
    display: inline-block;
    font-size: 24px;
  }
  .page--biography .list--member li > span {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 15px;
    padding-right: 0.25em;
    margin-right: 1.25em;
    position: relative;
    color: #795c9a;
  }
  .page--biography .list--member li > span:before {
    position: absolute;
    top: 50%;
    right: -1em;
    content: "";
    width: 1em;
    height: 1px;
    background: #795c9a;
    transform: rotate(-45deg);
  }
  .page--support .section--detail .list--support {
    margin-top: 50px;
  }
  .page--support .section--detail .list--support li {
    margin-bottom: 20px;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    text-decoration: underline;
  }
  .page--support .section--detail .list--support a:hover {
    text-decoration: none;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 4px;
  }
  .page--support .section--detail .list--support dd {
    margin-bottom: 40px;
  }
  .page--support .section--detail .list--support .list--inner {
    display: block;
    margin: 10px 0 0 1em;
  }
  .page--support .section--detail .list--support .list--inner li {
    margin-bottom: 5px;
  }
  .page--support .section--detail .terms-list > li {
    margin: 0 0 1.5em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .txt {
    margin-bottom: 1.5em;
  }
  .page--faq .section--list .block--contact {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .page--faq .section--list .block--contact a {
    transition: 0.3s;
  }
  .page--faq .section--list .block--contact a:hover {
    color: #8325F0;
    text-decoration: none;
  }
  .page--faq .section--list .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list .txt--sub {
    font-size: 12px;
  }
  .page--faq .searchBox {
    position: relative;
    width: 90%;
    margin: 40px auto;
    max-width: 900px;
  }
  .page--faq .searchBox input[type=text] {
    padding: 0.5em 1em;
    width: 100%;
    background: #fff;
    color: #05010a;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    color: #505050;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 3px;
    z-index: 2;
    cursor: pointer;
  }
  .page--faq .block--category {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .page--faq .block--category li a {
    transition: 0.2s;
  }
  .page--faq .block--category li a:hover {
    opacity: 0.7;
  }
  .page--faq .faq-inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .page--faq .tit--category {
    margin: 0 0 20px;
    font-weight: bold;
  }
  .page--faq .tit--category a {
    scroll-margin-top: 150px;
  }
  .page--faq .list--faq {
    margin: 0 0 60px;
  }
  .page--faq .list--faq li {
    border-bottom: 1px solid #ffffff;
  }
  .page--faq .list--faq li:first-child {
    border-top: 1px solid #ffffff;
  }
  .page--faq .list--faq li .tit {
    margin: 0 0 0 20px;
  }
  .page--faq .list--faq li a {
    display: flex;
    align-items: center;
    align-items: center;
    color: #ffffff;
    padding: 24px 0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .page--faq .list--faq li a:hover {
    color: #8325F0;
  }
  .page--faq .list--faq .icon--q {
    color: inherit;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.1em;
    line-height: 28px;
  }
  .page--faq .tit--category {
    margin: 0 0 20px;
    font-weight: bold;
  }
  .page--faq .block--faq-detail {
    border: 1px solid #ffffff;
    padding: 25px;
    margin: 0 0 80px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid #ffffff;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }
  .page--faq .block--faq-detail .txt {
    padding-left: 40px;
  }
  .page--faq .block--faq-detail .txt span {
    color: #eeecf1 !important;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--faq .block--faq-detail .txt span {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--faq .block--faq-detail .txt span {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 961px) {
  .page--faq .block--faq-detail .txt * a,
  .page--faq .block--faq-detail .txt a,
  .page--faq .block--faq-detail .txt span a {
    font-weight: bold;
    display: inline-block;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    text-decoration: underline;
  }
  .page--faq .block--faq-detail .txt * a:hover,
  .page--faq .block--faq-detail .txt a:hover,
  .page--faq .block--faq-detail .txt span a:hover {
    text-decoration: none;
  }
  .page--faq .block--faq-detail .icon--q,
  .page--faq .block--faq-detail .icon--a {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: block;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    float: left;
    line-height: 26px;
  }
  .page--faq .block--faq-detail .icon--q {
    border: 1px solid #fff;
  }
  .page--faq .block--faq-detail .icon--a {
    vertical-align: top;
    color: #000000;
    background: #fff;
  }
  .page--faq .block--contact {
    margin: 40px 0 0;
  }
  .page--faq .block--contact a {
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--faq .block--contact a::after {
    content: "";
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact a::after {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
    border-width: 2px;
  }
  .page--faq .block--contact a:hover {
    color: #8325F0;
    text-decoration: none;
  }
  .page--faq .block--contact a:hover::after {
    border-color: #8325F0;
  }
  .page--questionnaire label,
  .page--questionnaire label:hover {
    transition: none;
    color: #eeecf1;
  }
  .page--questionnaire .section--tit {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
    letter-spacing: 0.1em !important;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 50px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    float: none;
    margin: 40px 0 5px;
  }
  .page--questionnaire .form--post .input--quarter + .age {
    margin-left: 4px;
  }
  .page--questionnaire .form--post span.post {
    margin-right: 4px;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox],
  .page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    cursor: pointer;
    vertical-align: -2px;
    padding: 0.8em 1em;
    padding-right: 2em;
  }
  .page--questionnaire .form--post .form__selectbox {
    position: relative;
  }
  .page--questionnaire .form--post .form__selectbox::before {
    position: absolute;
    top: 1em;
    right: 1em;
    border-top: 1px solid #8325F0;
    border-right: 1px solid #8325F0;
    transform: rotate(135deg);
    content: "";
    width: 10px;
    height: 10px;
  }
  .page--questionnaire .form--post .form__radio,
  .page--questionnaire .form--post .form__checkbox {
    margin-bottom: 8px;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    position: relative;
  }
  .page--questionnaire .form--post label {
    position: relative;
    display: inline-block;
    width: 90%;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    vertical-align: middle;
    margin: 3px 5px 8px 0;
    z-index: 1;
    border: none;
    opacity: 1;
    padding-right: 0;
  }
  .page--questionnaire .form--post input[type=radio]:before,
  .page--questionnaire .form--post input[type=checkbox]:before {
    height: auto;
    text-indent: 0;
    font-size: 17px;
    font-family: "FontAwesome";
    color: #8325F0;
    padding-left: 1px;
    text-indent: 0;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 0;
  }
  .page--questionnaire .form--post input[type=checkbox]:before {
    content: "\f096";
  }
  .page--questionnaire .form--post input[type=radio]:before {
    content: "\f10c";
  }
  .page--questionnaire .form--post input[type=checkbox]:checked:before {
    content: "\f046";
    color: #8325F0;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #8325F0;
  }
  .page--questionnaire .form--post .input.postal_code {
    margin-left: 4px;
  }
  .page--questionnaire .block--error {
    background: #c4c4c5;
    padding: 7px 3%;
    border-radius: 5px;
    margin: 2em 0;
  }
  .page--questionnaire .block--error li {
    font-size: 0.85em;
    margin-bottom: 8px;
  }
  .page--questionnaire .block--error li {
    position: relative;
    color: #c31515;
  }
  .page--questionnaire .section--detail .btn--sub {
    border-radius: 0;
    border: none;
  }
  .page--questionnaire .section--detail .txt--basic a {
    text-decoration: underline;
    font-weight: bold;
  }
  .page--questionnaire .section--detail .txt--basic a:hover {
    text-decoration: none;
  }
  .page--questionnaire .section--detail .txt--basic,
  .page--questionnaire .section--detail .txt--sub,
  .page--questionnaire .section--detail .block--error p {
    margin-bottom: 50px;
  }
  .page--questionnaire .section--detail .txt--basic.center,
  .page--questionnaire .section--detail .txt--sub.center,
  .page--questionnaire .section--detail .block--error p.center {
    text-align: center;
  }
  .page--questionnaire .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form {
    margin: 50px 0;
  }
  .page--questionnaire .section--detail .form--comfirm dd {
    padding: 20px;
    background-color: #1d1921;
    border-radius: 3px;
    margin-bottom: 30px;
  }
  .page--birthday .text--wrap {
    position: relative;
    z-index: -1;
    top: -15vw;
    left: -20vw;
  }
  .page--birthday .text--wrap .txt-white,
  .page--birthday .text--wrap .txt-red,
  .page--birthday .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) {
  .page--birthday .text--wrap .txt-white,
  .page--birthday .text--wrap .txt-red,
  .page--birthday .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 961px) and (min-width: 1px) and (max-width: 960px) {
  .page--birthday .text--wrap .txt-white,
  .page--birthday .text--wrap .txt-red,
  .page--birthday .text--wrap .txt-blue {
    font-size: 104px;
  }
}
@media screen and (min-width: 961px) {
  .page--birthday .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--birthday .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--birthday .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--birthday .text--wrap .txt-white,
  .page--birthday .text--wrap .txt-red,
  .page--birthday .text--wrap .txt-blue {
    font-size: 240px;
  }
  .page--birthday.error .footer {
    position: absolute;
  }
  .page--birthday .section--detail .txt a {
    display: inline-block;
    text-decoration: underline;
    font-weight: 600;
    padding: 0 0.25em;
  }
  .page--birthday .section--detail .ph {
    margin: 50px 0;
    overflow: hidden;
    line-height: 0;
  }
  .page--birthday .section--detail .ph .reflection {
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #eeecf1;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  body {
    background: #05010a;
  }
  .btn--top {
    bottom: 18px;
    right: 14px;
  }
  .btn--top a .btn--top__ill {
    width: 65px;
    height: 41px;
  }
  .btn--top a svg {
    width: 32px;
  }
  .btn--top a .txt {
    font-size: 11px;
    margin-top: -2px;
  }
  /* header
  ============================== */
  header {
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  header .logo {
    position: fixed;
    top: 35px;
    left: 7%;
    display: block;
    width: 100px;
    z-index: 18;
    transition: all 0.8s ease-out 0.3s;
    -webkit-transition: all 0.8s ease-out 0.3s;
  }
  /* footer
  ============================== */
  /* page
  ============================== */
  /* page--home
  ============================== */
  /* page--info,page--blog
  ============================== */
  /* page--info category-1
  ============================== */
  /* page--video
  ============================== */
  /* page--movie
  ============================== */
  /* page--blog
  ============================== */
  /* page--qa
  ============================== */
  /* page--schedule
  ============================== */
  /*page--entry
  ============================== */
  /* page--biography
  ============================== */
  /* page--questionnaire
  ============================== */
  /* page--support
  ============================== */
  /* page--faq
  ============================== */
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  header .logo {
    width: 150px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  header .drawer {
    display: none;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  header .list--menu {
    margin: 0 0 40px;
    position: relative;
  }
  header .list--menu li {
    display: block;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .drawer__btn {
    position: fixed;
    width: 49px;
    height: 49px;
    box-sizing: border-box;
    top: 20px;
    right: 5%;
    z-index: 101;
    mix-blend-mode: difference;
  }
  .drawer__btn span {
    display: block;
    background: #eeecf1;
    position: absolute;
    left: 13px;
    width: 24px;
    height: 2px;
    z-index: 20;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .drawer__btn span:first-of-type {
    top: 20px;
  }
  .drawer__btn span:last-of-type {
    bottom: 20px;
  }
  .menuOpen .drawer__btn {
    width: 49px;
    height: 49px;
    box-sizing: border-box;
    position: fixed;
    top: 20px;
    right: 5%;
  }
  .menuOpen .drawer__btn span:first-of-type {
    top: 4px;
    transform: translateY(20px) rotate(-45deg);
  }
  .menuOpen .drawer__btn span:last-of-type {
    transform: translateY(-20px) rotate(45deg);
    top: 44px;
  }
  .menuOpen header .drawer {
    padding: 0 8%;
    display: block;
    z-index: 100;
    pointer-events: auto;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #05010a;
    padding-top: 70px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .menuOpen header .drawer .nav--free {
    margin-bottom: 40px;
  }
  .menuOpen header .drawer .nav--member {
    margin-bottom: 10px;
  }
  .menuOpen header .drawer .nav--login {
    border-top: 1px solid rgba(238, 236, 241, 0.4);
    padding-top: 15px;
    margin-bottom: 20px;
  }
  .menuOpen header .drawer .g-nav {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
  }
  .menuOpen header .drawer .g-nav li {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 5px;
  }
  .menuOpen header .drawer .g-nav li:last-of-type {
    margin-right: 0;
  }
  .menuOpen header .drawer .g-nav li a {
    display: block;
    padding: 10px 0;
    color: #eeecf1;
    font-size: 14px;
    position: relative;
    line-height: 1.2;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
  }
  .menuOpen header .drawer .ill {
    width: 110px;
    margin: 20px 0 0 auto;
  }
  .menuOpen header .list--sns {
    display: block;
  }
  .menuOpen header .list--sns li {
    margin-bottom: 10px;
  }
  .menuOpen header .list--sns li:last-of-type {
    margin-bottom: 0;
  }
  .menuOpen header .list--sns li .name {
    display: inline-block;
    margin-right: 10px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 11px;
  }
  .menuOpen header .list--sns li .sns-icons {
    display: inline-block;
  }
  .menuOpen header .list--sns li .sns-icons a {
    display: inline-block;
    padding: 0 5px;
    margin-right: 5px;
  }
  .menuOpen header .list--sns li .sns-icons a:last-of-type {
    margin-right: 0;
  }
  .menuOpen header .logo-wrap {
    position: relative;
    height: 22vw;
  }
  .menuOpen header .logo-wrap .drawer-logo {
    width: 65vw;
  }
  .menuOpen header .logo-wrap .waves {
    transform: translate(-9vw, -30px);
  }
  .page--home .footer .inner {
    margin: 0 5%;
  }
  body:not(.page--home) .wrap {
    padding-bottom: 76px;
  }
  body:not(.page--home) .footer {
    padding: 30px 5%;
    bottom: 0;
    position: absolute;
    width: 100%;
  }
  body:not(.page--home) .nav--support {
    display: none;
  }
  body:not(.page--home) .section--list,
  body:not(.page--home) .section--detail {
    padding: 120px 5% 40px;
  }
  body:not(.page--home) .section--list .section--tit,
  body:not(.page--home) .section--detail .section--tit {
    padding: 0;
    line-height: 1.4;
    margin-bottom: 30px;
    font-size: 20px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
  }
  .page--home .bg {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    display: block;
    height: 900px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .page--home .header .logo {
    mix-blend-mode: difference;
    display: none;
  }
  .page--home .footer {
    bottom: 0;
    position: inherit;
    padding: 0 0 54px;
    background: none;
  }
  .page--home .footer .tit--support {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 13px;
    text-align: left;
    position: relative;
    padding: 0 0 14px 0;
    border-bottom: 1px solid;
    margin-bottom: 14px;
  }
  .page--home .footer .tit--support:before, .page--home .footer .tit--support:after {
    content: "";
    width: 14px;
    height: 1px;
    background: #eeecf1;
    position: absolute;
    top: 9px;
    right: 1em;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .page--home .footer .tit--support:after {
    transform: rotate(90deg);
  }
  .page--home .footer .tit--support.open:before {
    transform: rotate(-135deg);
  }
  .page--home .footer .tit--support.open:after {
    transform: rotate(-45deg);
  }
  .page--home .footer .nav--support {
    display: block;
    width: 100%;
    margin: 0 auto 58px;
  }
  .page--home .footer .list--support {
    display: none;
  }
  .page--home .footer .list--support li a {
    padding: 10px 0;
    display: block;
    font-size: 13px;
  }
  .page--home .section--bnr {
    position: relative;
  }
  .page--home .section--bnr.section--bnr--single .list--bnr li {
    width: 81%;
    margin: 0 auto !important;
  }
  .page--home .section--bnr .list--bnr {
    z-index: 2;
    position: relative;
    padding-bottom: 54px;
  }
  .page--home .section--bnr .list--bnr:before, .page--home .section--bnr .list--bnr:after {
    content: "";
    position: absolute;
    z-index: -1;
  }
  .page--home .section--bnr .list--bnr:before {
    bottom: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100px 100vw;
    border-color: transparent transparent #05010a transparent;
  }
  .page--home .section--bnr .list--bnr:after {
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 57%;
    background-color: #05010a;
    z-index: -1;
  }
  .page--home .section--bnr .list--bnr li {
    margin-right: 15px;
  }
  .page--home .section--bnr .list--bnr li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--news {
    padding: 0 5%;
    z-index: 2;
    padding-bottom: 130px;
    background: #05010a;
  }
  .page--home .section--news .section-tit {
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.4em;
  }
  .page--home .section--news .flex-wrap {
    display: inherit;
  }
  .page--home .section--news .block--news {
    width: 100%;
  }
  .page--home .section--news .block--news ul {
    margin-right: 0;
  }
  .page--home .section--news .block--news ul li {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .page--home .section--news .block--img {
    display: none;
  }
  .page--home .section--news .list--news li {
    margin-bottom: 28px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--news .list--news li:nth-child(1) {
    transition-delay: 0.2s;
  }
  .page--home .section--news .list--news li:nth-child(2) {
    transition-delay: 0.3s;
  }
  .page--home .section--news .list--news li:nth-child(3) {
    transition-delay: 0.4s;
  }
  .page--home .section--news .list--news a {
    display: block;
    width: 100%;
  }
  .page--home .section--news .list--news .date {
    font-size: 11px;
    font-family: roboto, sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .page--home .section--news .list--news span.new {
    padding-left: 8px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #8325F0;
    font-size: 0.85em;
  }
  .page--home .section--news.delighter.started .list--news li {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .section--news .list--more {
    float: right;
    clear: both;
    margin-right: 5%;
  }
  .page--home .block--member {
    position: relative;
    padding: 0 0 70px;
    background: transparent;
  }
  .page--home .block--member:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 52vw 107vw;
    border-color: transparent transparent #05010a transparent;
    content: "";
    position: absolute;
    bottom: -30vw;
    left: 0;
    transform: rotate(180deg);
    z-index: 1;
  }
  .page--home .block--member [class^=section--] {
    position: relative;
    z-index: 2;
    background: #05010a;
  }
  .page--home .block--member [class^=section--] .section-tit {
    font-size: 20px;
    letter-spacing: 0.4em;
    margin: 0 0 18px 5%;
    display: inline-block;
  }
  .page--home .block--member [class^=section--] .text--wrap .txt-white,
  .page--home .block--member [class^=section--] .text--wrap .txt-red,
  .page--home .block--member [class^=section--] .text--wrap .txt-blue {
    font-size: 104px;
  }
  .page--home .block--member [class^=section--] .list--more {
    float: right;
    clear: both;
    margin-right: 5%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .page--home .block--member .block--login {
    padding-bottom: 60px;
    background: #05010a;
  }
  .page--home .block--member .block--login > img,
  .page--home .block--member .block--login .list--login,
  .page--home .block--member .block--login p.mailmag {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease-out 0.2s;
    -webkit-transition: all 0.4s ease-out 0.2s;
  }
  .page--home .block--member .block--login.delighter.started > img,
  .page--home .block--member .block--login.delighter.started .list--login,
  .page--home .block--member .block--login.delighter.started p.mailmag {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .block--member .block--login .flex-wrap {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }
  .page--home .block--member .block--login p.mailmag {
    font-size: 0.8em;
    z-index: 1;
    text-align: center;
  }
  .page--home .block--member .block--login p.mailmag a {
    padding: 10px 1em;
    z-index: 2 !important;
  }
  .page--home .block--member .block--login > img {
    display: block;
    max-width: 260px;
    margin: 0 auto 30px;
  }
  .page--home .block--member .block--login .list--login {
    margin-bottom: 10px;
  }
  .page--home .block--member .block--login .list--login li {
    font-size: 14px;
  }
  .page--home .block--member .block--login .list--login li a {
    padding: 0 4px;
  }
  .page--home .block--member .block--login .waves {
    transform: translateY(-30px);
  }
  .page--home .block--member .list--contents {
    display: inherit;
  }
  .page--home .block--member .list--contents li {
    margin-right: 15px;
    width: 100%;
  }
  .page--home .block--member .list--contents li:last-of-type {
    margin-right: 0;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--home .block--member .list--contents li a .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--home .block--member .list--contents li a .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .block--member .list--contents li a .img-wrap img {
    filter: grayscale(100%);
  }
  .page--home .block--member .list--contents li a .img-wrap .date {
    font-size: 10px;
    font-weight: 500;
    padding: 0px 3px;
    line-height: 1.4;
  }
  .page--home .block--member .list--contents li a .tit {
    font-size: 13px;
  }
  .page--home .section--blog .block--contents,
  .page--home .section--movie .block--contents {
    opacity: 0;
    transition: all 0.4s ease-out 0.2s;
    -webkit-transition: all 0.4s ease-out 0.2s;
    transform: translateY(30px);
    margin-bottom: 30px;
  }
  .page--home .section--blog .block--contents .list--contents .date,
  .page--home .section--movie .block--contents .list--contents .date {
    background: #05010a;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap:before, .page--home .section--blog .block--contents .list--contents li.new .img-wrap:after,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:before,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap:before,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--home .section--blog .block--contents .list--contents li.new .img-wrap:after,
  .page--home .section--movie .block--contents .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--home .section--blog .block--contents.slider--single,
  .page--home .section--movie .block--contents.slider--single {
    margin: 0 5%;
  }
  .page--home .section--blog.delighter.started .block--contents,
  .page--home .section--movie.delighter.started .block--contents {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .section--blog {
    padding: 0 0 100px;
  }
  .page--home .section--blog .waves svg {
    left: 0;
    top: 30px;
  }
  .page--home .section--blog .text--wrap {
    z-index: -1;
  }
  .page--home .section--blog .text--wrap .txt-white,
  .page--home .section--blog .text--wrap .txt-red,
  .page--home .section--blog .text--wrap .txt-blue {
    bottom: 0;
    left: -10%;
  }
  .page--home .section--blog .tit {
    display: inline;
    background: #05010a;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 4px;
  }
  .page--home .section--blog .cat {
    font-size: 11px;
    font-weight: 300;
  }
  .page--home .section--movie {
    padding: 0 0 130px;
  }
  .page--home .section--movie .waves svg {
    left: 0;
    top: 100px;
  }
  .page--home .section--movie .text--wrap {
    z-index: -1;
  }
  .page--home .section--movie .text--wrap .txt-white,
  .page--home .section--movie .text--wrap .txt-red,
  .page--home .section--movie .text--wrap .txt-blue {
    top: -130px;
    left: 10%;
  }
  .page--home .section--qa {
    padding: 0 0 40px;
  }
  .page--home .section--qa .list--contents li.new a {
    position: relative;
  }
  .page--home .section--qa .list--contents li.new a:before, .page--home .section--qa .list--contents li.new a:after {
    position: absolute;
    left: 0;
  }
  .page--home .section--qa .list--contents li.new a:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--home .section--qa .list--contents li.new a:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--home .section--qa .no-data {
    margin: 50px 0;
  }
  .page--home .section--qa .no-data .tit {
    margin-bottom: 20px;
  }
  .page--home .section--qa .no-data .txt,
  .page--home .section--qa .no-data .btn--main {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  }
  .page--home .section--qa a {
    position: relative;
  }
  .page--home .section--qa a .img-wrap > span {
    opacity: 0.4;
    z-index: 1;
    letter-spacing: 0.4em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--home .section--qa a .img-wrap > span {
    font-size: 12px;
    position: absolute;
    top: 30px;
    right: 16px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--qa a .img-wrap > span {
    font-size: 10px;
    position: absolute;
    top: 25px;
    right: 11px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--qa a .tit-wrap .date {
    color: #05010a;
    background: #eeecf1;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--home .section--qa a .tit-wrap .date {
    font-size: 12px;
    padding: 0px 5px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--qa a .tit-wrap .tit {
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--home .section--qa a .tit-wrap .tit {
    font-size: 17px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--qa a .tit-wrap .tit {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--home .section--qa a .tit-wrap .from {
    font-size: 14px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--qa a .tit-wrap .from {
    font-size: 12px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home .section--qa .waves {
    display: none;
  }
  .page--home .section--qa .text--wrap {
    z-index: -1;
  }
  .page--home .section--qa .text--wrap .txt-white,
  .page--home .section--qa .text--wrap .txt-red,
  .page--home .section--qa .text--wrap .txt-blue {
    top: -80px;
    right: -40px;
  }
  .page--home .section--qa .block--contents {
    opacity: 0;
    transition: all 0.4s ease-out 0.2s;
    -webkit-transition: all 0.4s ease-out 0.2s;
    transform: translateY(30px);
    margin-bottom: 30px;
  }
  .page--home .section--qa .block--contents.slider--single {
    margin: 0 5%;
  }
  .page--home .section--qa.delighter.started .block--contents {
    transform: translateY(0);
    opacity: 1;
  }
  .page--home .section--video {
    z-index: 2;
    position: relative;
    margin-bottom: 80px;
  }
  .page--home .section--video .list--more {
    float: right;
    clear: both;
    margin-right: 5%;
  }
  .page--home .section--video .section-tit {
    font-size: 20px;
    letter-spacing: 0.4em;
    margin: 0 0 18px 5%;
    display: inline-block;
  }
  .page--home .section--video .block--contents {
    margin-bottom: 30px;
  }
  .page--home .section--video .block--contents .list--contents {
    padding: 0;
  }
  .page--home .section--video .block--contents .list--contents .slick-list .slick-track {
    padding-top: 0 !important;
  }
  .page--home .section--video .block--contents .list--contents li {
    margin-right: 1%;
  }
  .page--home .section--video .block--contents .list--contents li:last-of-type {
    margin-right: 0;
  }
  .page--home .section--video .block--contents .list--contents li a {
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--home .section--video .block--contents .list--contents li figure {
    background-size: cover;
    background-position: center;
  }
  .page--home .section--video .block--contents .list--contents li figure img {
    width: 100%;
    height: 100%;
  }
  .page--home .section--video .block--contents .list--contents li a {
    display: block;
    width: 100%;
  }
  .page--home .section--video .block--contents .list--contents li .tit {
    display: none;
  }
  .page--home .section--video .block--contents .list--contents.slider--single li.no-data .no-data {
    margin: 50px 0;
  }
  .page--info .date,
  .page--blog .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--info .section--list .block--pager li a,
  .page--info .section--list .block--pager li span,
  .page--blog .section--list .block--pager li a,
  .page--blog .section--list .block--pager li span {
    padding: 0 0.6em;
  }
  .page--info .section--list .block--pager li.pager__item--current,
  .page--blog .section--list .block--pager li.pager__item--current {
    padding: 0 0.6em;
    color: #8325F0;
  }
  .page--info .section--list .block--pager li.pager-link--prev span,
  .page--blog .section--list .block--pager li.pager-link--prev span {
    opacity: 0.2;
  }
  .page--info .section--list .block--pager li.pager-link--prev span::after,
  .page--blog .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--info .section--list .block--pager li.pager-link--prev span:before,
  .page--blog .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--info .section--list .block--pager li.pager-link--prev a::after,
  .page--blog .section--list .block--pager li.pager-link--prev a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--info .section--list .block--pager li.pager-link--prev a:before,
  .page--blog .section--list .block--pager li.pager-link--prev a:before {
    content: none;
  }
  .page--info .section--list .block--pager li.pager-link--next span,
  .page--blog .section--list .block--pager li.pager-link--next span {
    opacity: 0.2;
  }
  .page--info .section--list .block--pager li.pager-link--next span::after,
  .page--blog .section--list .block--pager li.pager-link--next span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--info .section--list .block--pager li.pager-link--next span:before,
  .page--blog .section--list .block--pager li.pager-link--next span:before {
    content: none;
  }
  .page--info .section--list .block--pager li.pager-link--next a::after,
  .page--blog .section--list .block--pager li.pager-link--next a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--info .section--list .block--pager li.pager-link--next a:before,
  .page--blog .section--list .block--pager li.pager-link--next a:before {
    content: none;
  }
  .page--info .section--detail .tit,
  .page--blog .section--detail .tit {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .page--info .section--detail .txt,
  .page--blog .section--detail .txt {
    padding: 30px 0 20px;
  }
  .page--info .section--detail .txt * a,
  .page--blog .section--detail .txt * a {
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
  }
  .page--info .section--detail .section--inner,
  .page--blog .section--detail .section--inner {
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .page--info .section--detail .block--share .share,
  .page--blog .section--detail .block--share .share {
    font-size: 0.8em;
  }
  .page--info .section--detail .block--share li,
  .page--blog .section--detail .block--share li {
    font-size: 18px;
    margin-left: 13px;
  }
  .page--info .section--detail .block--share li a,
  .page--blog .section--detail .block--share li a {
    display: block;
  }
  .page--info .section--detail .block--share li svg,
  .page--blog .section--detail .block--share li svg {
    width: 18px;
  }
  .page--info.category-1 .text--wrap {
    top: -25vw;
    left: -9vw;
  }
  .page--info.category-1 .text--wrap .txt-white,
  .page--info.category-1 .text--wrap .txt-red,
  .page--info.category-1 .text--wrap .txt-blue {
    font-size: 22vw;
  }
  .page--info.category-1 .section--tit {
    letter-spacing: 0.8em;
  }
  .page--info.category-1 .list--info {
    margin-bottom: 40px;
  }
  .page--info.category-1 .list--info li {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .page--info.category-1 .list--info li a {
    display: block;
    width: 100%;
  }
  .page--info.category-1 .list--info li a:hover {
    opacity: 0.6;
  }
  .page--info.category-1 .list--info li a .date {
    font-size: 11px;
    margin-bottom: 10px;
    width: 100%;
  }
  .page--info.category-1 .list--info .new:after {
    padding-left: 8px;
    line-height: 2.3;
  }
  .page--info.category-1 .form__select {
    display: none;
  }
  .page--info.category-1 .block--pager {
    margin: 0 5%;
  }
  .page--info.category-1 .block--pager li a,
  .page--info.category-1 .block--pager li span {
    padding: 0 0.6em;
  }
  .page--info.category-1 .block--pager li.pager__item--current {
    padding: 0 0.6em;
  }
  .page--info.category-1 .block--pager li.pager-link--prev span {
    transform: rotate(-45deg), translate(-50%, -50%);
    opacity: 0.2;
  }
  .page--info.category-1 .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--info.category-1 .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--info.category-1 .block--pager li.pager-link--prev a::after,
  .page--info.category-1 .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--info.category-1 .block--pager li.pager-link--prev a:before,
  .page--info.category-1 .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--info.category-1 .block--pager li.pager-link--next span {
    opacity: 0.2;
  }
  .page--info.category-1 .block--pager li.pager-link--next span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--info.category-1 .block--pager li.pager-link--next a {
    transform: rotate(-180deg);
  }
  .page--info.category-1 .block--pager li.pager-link--next a::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--video .section--list .block--category {
    margin: 5px auto 40px;
  }
  .page--video .section--list .block--category .list--sort li a {
    background: #eeecf1;
    color: #05010a;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 13px;
    padding: 3px 6px 2px 6px;
    line-height: 1.35;
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
  }
  .page--video .section--list .block--category .list--sort li a.not_checked {
    background: rgba(113, 113, 113, 0.22);
    color: #eeecf1;
  }
  .page--video .section--list .block--category .list--sort li span {
    padding: 3px 6px 2px 6px;
    font-size: 13px;
  }
  .page--video .section--list .block--category .list--sort li:hover a {
    background: #8325F0;
    color: #05010a;
  }
  .page--video .section--list .list--contents .cat {
    display: inline-block;
    background: #795c9a;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 4px;
    line-height: 1;
    font-size: 13px;
    font-family: "Libre Baskerville", serif;
  }
  .page--video .section--list .block--pager {
    margin: 0 5%;
  }
  .page--video .section--list .block--pager li a,
  .page--video .section--list .block--pager li span {
    padding: 0 0.6em;
  }
  .page--video .section--list .block--pager li.pager__item--current {
    padding: 0 0.6em;
  }
  .page--video .section--list .block--pager li.pager-link--prev span {
    transform: rotate(-45deg), translate(-50%, -50%);
    opacity: 0.2;
  }
  .page--video .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--video .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--video .section--list .block--pager li.pager-link--prev a::after,
  .page--video .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--video .section--list .block--pager li.pager-link--prev a:before,
  .page--video .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--video .section--list .block--pager li.pager-link--next span {
    opacity: 0.2;
  }
  .page--video .section--list .block--pager li.pager-link--next span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--video .section--list .block--pager li.pager-link--next a {
    transform: rotate(-180deg);
  }
  .page--video .section--list .block--pager li.pager-link--next a::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--video .form__select {
    display: none;
  }
  .page--video .list--contents {
    padding: 0;
    flex-wrap: wrap;
  }
  .page--video .list--contents li {
    width: 100%;
    margin: 0 auto 40px;
  }
  .page--video .list--contents li figure img {
    width: 100%;
    margin-bottom: 10px;
  }
  .page--video .no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--movie .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--movie .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--movie .section--list .block--pager li a,
  .page--movie .section--list .block--pager li span {
    padding: 0 0.6em;
  }
  .page--movie .section--list .block--pager li.pager__item--current {
    padding: 0 0.6em;
    color: #8325F0;
  }
  .page--movie .section--list .block--pager li.pager-link--prev span {
    opacity: 0.2;
  }
  .page--movie .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--movie .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--movie .section--list .block--pager li.pager-link--prev a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--movie .section--list .block--pager li.pager-link--prev a:before {
    content: none;
  }
  .page--movie .section--list .block--pager li.pager-link--next span {
    opacity: 0.2;
  }
  .page--movie .section--list .block--pager li.pager-link--next span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--movie .section--list .block--pager li.pager-link--next span:before {
    content: none;
  }
  .page--movie .section--list .block--pager li.pager-link--next a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--movie .section--list .block--pager li.pager-link--next a:before {
    content: none;
  }
  .page--movie .section--list .list--contents {
    flex-wrap: wrap;
  }
  .page--movie .section--list .list--contents li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .page--movie .section--list .list--contents li.no-data {
    width: 100%;
    margin: 200px auto;
  }
  .page--movie .section--list .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--movie .section--list .list--contents li.new .img-wrap:before, .page--movie .section--list .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--movie .section--list .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--movie .section--list .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--movie .section--list .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--movie .section--list .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--movie .section--list .img-wrap img {
    filter: grayscale(100%);
  }
  .page--movie .section--list .img-wrap .date {
    background: #05010a;
  }
  .page--movie .section--list .text--wrap {
    position: relative;
    z-index: -1;
    top: -25vw;
    left: -9vw;
  }
  .page--movie .section--list .text--wrap .txt-white,
  .page--movie .section--list .text--wrap .txt-red,
  .page--movie .section--list .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--movie .section--list .text--wrap .txt-white,
  .page--movie .section--list .text--wrap .txt-red,
  .page--movie .section--list .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--movie .section--list .text--wrap .txt-white,
  .page--movie .section--list .text--wrap .txt-red,
  .page--movie .section--list .text--wrap .txt-blue {
    font-size: 22vw;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--movie .section--list .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--movie .section--list .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--movie .section--list .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--movie .section--detail {
    /*Android*/
  }
  .page--movie .section--detail .tit {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .page--movie .section--detail .block--player {
    margin: 0 0 30px;
    border: 1px solid #eeecf1;
  }
  .page--movie .section--detail .date {
    margin-bottom: 30px;
  }
  .page--movie .section--detail .sub-txt-list {
    margin-bottom: 30px;
  }
  .page--movie .section--detail .sub-txt-list li {
    margin-bottom: 10px;
  }
  .page--movie .section--detail .flash__player--accordion.btn {
    margin-bottom: 30px;
  }
  .page--movie .section--detail .flash__player--accordion.btn .btn--sub {
    color: #eeecf1;
    font-weight: normal;
    border: 1px solid #eeecf1;
    background: transparent;
    height: auto;
  }
  .page--movie.new-movie .wrap .section--detail {
    padding: 100px 5% 40px;
  }
  .page--movie.new-movie .wrap .section--detail .block--player {
    position: relative;
    top: 0;
    margin: 0 0 30px;
    border: 1px solid #eeecf1;
  }
  .page--movie.new-movie .wrap .section--detail .area--movie .video-js .vjs-play-control {
    left: 50%;
    transform: translateX(-50%);
    top: -19vw;
  }
  .page--movie.new-movie .wrap .section--detail .area--movie .video-js.vjs-fullscreen .vjs-play-control {
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
  }
  .page--movie.new-movie .wrap .section--detail .area--movie .video-js.vjs-fullscreen .vjs-control-bar {
    bottom: 5em;
  }
  .page--blog .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--blog .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--blog .section--list .block--pager {
    margin: 0 5%;
  }
  .page--blog .section--list .block--pager li a,
  .page--blog .section--list .block--pager li span {
    padding: 0 0.6em;
  }
  .page--blog .section--list .block--pager li.pager__item--current {
    padding: 0 0.6em;
  }
  .page--blog .section--list .block--pager li.pager-link--prev span {
    transform: rotate(-45deg), translate(-50%, -50%);
    opacity: 0.2;
  }
  .page--blog .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--blog .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--blog .section--list .block--pager li.pager-link--prev a::after,
  .page--blog .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--blog .section--list .block--pager li.pager-link--prev a:before,
  .page--blog .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--blog .section--list .block--pager li.pager-link--next span {
    opacity: 0.2;
  }
  .page--blog .section--list .block--pager li.pager-link--next span::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--blog .section--list .block--pager li.pager-link--next a {
    transform: rotate(-180deg);
  }
  .page--blog .section--list .block--pager li.pager-link--next a::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--blog .section--list .list--contents {
    flex-wrap: wrap;
  }
  .page--blog .section--list .list--contents li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .page--blog .section--list .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--blog .section--list .list--contents li.new .img-wrap:before, .page--blog .section--list .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--blog .section--list .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--blog .section--list .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--blog .section--list .list--contents .cat {
    display: inline-block;
    background: #795c9a;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 4px;
    line-height: 1;
    font-size: 11px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--blog .section--list .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--list .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--list .img-wrap img {
    filter: grayscale(100%);
  }
  .page--blog .section--list .img-wrap .date {
    background: #05010a;
  }
  .page--blog .section--list .text--wrap {
    position: relative;
    z-index: -1;
    top: -25vw;
    left: -9vw;
  }
  .page--blog .section--list .text--wrap .txt-white,
  .page--blog .section--list .text--wrap .txt-red,
  .page--blog .section--list .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--blog .section--list .text--wrap .txt-white,
  .page--blog .section--list .text--wrap .txt-red,
  .page--blog .section--list .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--list .text--wrap .txt-white,
  .page--blog .section--list .text--wrap .txt-red,
  .page--blog .section--list .text--wrap .txt-blue {
    font-size: 22vw;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--blog .section--list .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--blog .section--list .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--blog .section--list .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--blog .section--list .no-data {
    margin: 200px auto;
  }
  .page--blog .section--detail .section--inner {
    position: relative;
  }
  .page--blog .section--detail .tit--wrap {
    margin-bottom: 30px;
    display: inline-block;
  }
  .page--blog .section--detail .tit {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .page--blog .section--detail .txt {
    padding-top: 0 !important;
    color: #05010a;
  }
  .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: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    white-space: normal !important;
    word-break: break-word;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .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-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .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-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .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: #05010a;
    text-decoration: underline;
  }
  .page--qa .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--qa .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--qa .section--list .block--area {
    margin-bottom: 30px;
  }
  .page--qa .section--list .block--area > .txt {
    margin-bottom: 30px;
  }
  .page--qa .section--list .list--contents {
    flex-wrap: wrap;
  }
  .page--qa .section--list .list--contents li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .page--qa .section--list .list--contents li a {
    display: block;
    padding: 50px 8%;
    height: 100%;
    background: #05010a;
    border: 1px solid rgba(238, 236, 241, 0.2);
    transition: all 0.4s ease-out 0s;
  }
  .page--qa .section--list .list--contents li a .date {
    position: absolute;
    right: -25px;
    bottom: 40px;
    font-size: 12px;
    padding: 0px 5px;
    line-height: 1.6;
    color: #05010a;
    background: #eeecf1;
    transform: rotate(90deg);
  }
  .page--qa .section--list .list--contents li.new .img-wrap {
    position: relative;
  }
  .page--qa .section--list .list--contents li.new .img-wrap:before, .page--qa .section--list .list--contents li.new .img-wrap:after {
    position: absolute;
    left: 0;
  }
  .page--qa .section--list .list--contents li.new .img-wrap:before {
    bottom: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #795c9a;
    border-width: 43px 0 0 43px;
    z-index: 2;
  }
  .page--qa .section--list .list--contents li.new .img-wrap:after {
    bottom: 3px;
    transform: rotate(45deg);
    content: "NEW";
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    color: #eeecf1;
    font-size: 10px;
    z-index: 3;
    letter-spacing: 0.01em;
  }
  .page--qa .section--list .list--contents a {
    position: relative;
  }
  .page--qa .section--list .list--contents a .img-wrap > span {
    opacity: 0.4;
    z-index: 1;
    letter-spacing: 0.4em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--list .list--contents a .img-wrap > span {
    font-size: 12px;
    position: absolute;
    top: 30px;
    right: 16px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .list--contents a .img-wrap > span {
    font-size: 10px;
    position: absolute;
    top: 25px;
    right: 11px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .list--contents a .tit-wrap .date {
    color: #05010a;
    background: #eeecf1;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--list .list--contents a .tit-wrap .date {
    font-size: 12px;
    padding: 0px 5px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .list--contents a .tit-wrap .tit {
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--list .list--contents a .tit-wrap .tit {
    font-size: 17px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .list--contents a .tit-wrap .tit {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--list .list--contents a .tit-wrap .from {
    font-size: 14px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .list--contents a .tit-wrap .from {
    font-size: 12px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .list--contents a .date {
    position: absolute;
    right: -20px;
    bottom: 35px;
    font-size: 10px;
    padding: 0px 3px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--list .img-wrap {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .img-wrap img {
    filter: grayscale(100%);
  }
  .page--qa .section--list .img-wrap .date {
    background: #eeecf1;
  }
  .page--qa .section--list .text--wrap {
    position: relative;
    z-index: -1;
    top: -25vw;
    left: -9vw;
  }
  .page--qa .section--list .text--wrap .txt-white,
  .page--qa .section--list .text--wrap .txt-red,
  .page--qa .section--list .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--list .text--wrap .txt-white,
  .page--qa .section--list .text--wrap .txt-red,
  .page--qa .section--list .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .text--wrap .txt-white,
  .page--qa .section--list .text--wrap .txt-red,
  .page--qa .section--list .text--wrap .txt-blue {
    font-size: 22vw;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--list .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--qa .section--list .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--qa .section--list .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--qa .section--list .block--pager li a,
  .page--qa .section--list .block--pager li span {
    padding: 0 0.6em;
  }
  .page--qa .section--list .block--pager li.pager__item--current {
    padding: 0 0.6em;
    color: #8325F0;
  }
  .page--qa .section--list .block--pager li.pager-link--prev span {
    opacity: 0.2;
  }
  .page--qa .section--list .block--pager li.pager-link--prev span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--qa .section--list .block--pager li.pager-link--prev span:before {
    content: none;
  }
  .page--qa .section--list .block--pager li.pager-link--prev a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--qa .section--list .block--pager li.pager-link--prev a:before {
    content: none;
  }
  .page--qa .section--list .block--pager li.pager-link--next span {
    opacity: 0.2;
  }
  .page--qa .section--list .block--pager li.pager-link--next span::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--qa .section--list .block--pager li.pager-link--next span:before {
    content: none;
  }
  .page--qa .section--list .block--pager li.pager-link--next a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #8325F0;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    vertical-align: middle;
  }
  .page--qa .section--list .block--pager li.pager-link--next a:before {
    content: none;
  }
  .page--qa .section--detail .text--wrap {
    position: relative;
    z-index: -1;
    top: -10vw;
    left: -9vw;
  }
  .page--qa .section--detail .text--wrap .txt-white,
  .page--qa .section--detail .text--wrap .txt-red,
  .page--qa .section--detail .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--qa .section--detail .text--wrap .txt-white,
  .page--qa .section--detail .text--wrap .txt-red,
  .page--qa .section--detail .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--detail .text--wrap .txt-white,
  .page--qa .section--detail .text--wrap .txt-red,
  .page--qa .section--detail .text--wrap .txt-blue {
    font-size: 22vw;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--qa .section--detail .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--qa .section--detail .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--qa .section--detail .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--qa .section--detail > .txt {
    text-align: center;
  }
  .page--qa .section--detail .rule {
    font-size: 0.85em;
  }
  .page--qa .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--qa .section--detail .tit {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .page--qa .section--detail .form {
    margin: 30px auto;
  }
  .page--qa .section--detail .form dt {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 12px;
  }
  .page--qa .section--detail .form.form--post .name-edit input {
    pointer-events: none;
    color: #888;
  }
  .page--qa .section--detail .form.form--comfirm dt {
    margin: 0 0 0.5em;
    color: #888;
  }
  .page--qa .section--detail .form.form--comfirm dd {
    padding: 15px 5%;
    background-color: #1d1921;
    border-radius: 3px;
    margin-bottom: 30px;
  }
  .page--qa .section--detail .block--question,
  .page--qa .section--detail .block--answer {
    position: relative;
  }
  .page--qa .section--detail .block--question .name,
  .page--qa .section--detail .block--answer .name {
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  .page--qa .section--detail .block--question {
    margin: 30px auto 70px;
  }
  .page--qa .section--detail .block--question .name {
    margin-right: 30px;
    text-align: right;
  }
  .page--qa .section--detail .block--answer {
    margin-bottom: 50px;
  }
  .page--qa .section--detail .block--answer .circle {
    background: #8b8594;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -30px;
    left: -10px;
  }
  .page--qa .section--detail .block--answer .thumb-wrap {
    margin-bottom: 10px;
  }
  .page--qa .section--detail .block--answer .thumb-wrap .name {
    margin-left: 40px;
  }
  .page--qa .section--detail .tit--q,
  .page--qa .section--detail .name > span,
  .page--qa .section--detail .tit--a {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
  }
  .page--qa .section--detail .tit--q,
  .page--qa .section--detail .tit--a {
    font-size: 3em;
    opacity: 0.4;
    position: absolute;
    line-height: 1;
    z-index: 0;
  }
  .page--qa .section--detail .tit--q {
    color: #e0d0f7;
    top: -40px;
    right: -10px;
  }
  .page--qa .section--detail .tit--a {
    color: #e2d6f1;
    bottom: 0px;
    right: 4%;
  }
  .page--qa .section--detail .balloon_l,
  .page--qa .section--detail .balloon_r {
    border-radius: 15px;
    position: relative;
    padding: 25px 5% 30px;
  }
  .page--qa .section--detail .balloon_l::after,
  .page--qa .section--detail .balloon_r::after {
    width: 30px;
    height: 30px;
    display: block;
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page--qa .section--detail .balloon_l {
    background: #332d3a;
  }
  .page--qa .section--detail .balloon_l::after {
    background-image: url(/static/latulatu/fanclub/common/fukidashi-q.png);
    top: -7px;
    right: 6px;
    transform: scale(-1, 1) rotate(13deg);
    z-index: -1;
  }
  .page--qa .section--detail .balloon_l .tit,
  .page--qa .section--detail .balloon_l .name {
    z-index: 1;
    position: relative;
  }
  .page--qa .section--detail .balloon_l .tit {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .page--qa .section--detail .balloon_r {
    background: #552d82;
  }
  .page--qa .section--detail .balloon_r::after {
    background-image: url(/static/latulatu/fanclub/common/fukidashi-a.png);
    top: -7px;
    left: 6px;
    z-index: -1;
    transform: rotate(13deg);
    z-index: -1;
  }
  .page--qa .section--detail .balloon_r .txt {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }
  .page--qa .section--detail.done .txt, .page--qa .section--detail.comfirm .txt {
    margin-bottom: 50px;
    text-align: center;
  }
  .page--qa .thema_box .thema_box_sub {
    padding: 32px 16px 16px;
  }
  .page--qa .thema_box .thema_box_sub .thema_date {
    font-size: 16px;
  }
  .page--qa .thema_box .thema_box_sub h3 {
    font-size: 24px;
    line-height: 1.4;
  }
  .page--schedule .section--tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.8em;
  }
  .page--schedule .week {
    font-size: 11px;
    margin-left: 2px;
  }
  .page--schedule .cat {
    display: inline-block;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 11px;
    padding: 3px 3px 2px 3px;
    line-height: 1;
  }
  .page--schedule .date {
    font-family: roboto, sans-serif;
    font-weight: 400;
  }
  .page--schedule .section--list .block-month .year {
    font-size: 12px;
  }
  .page--schedule .section--list .list--month {
    padding-top: 15px;
  }
  .page--schedule .section--list .list--month li {
    font-size: 11px;
  }
  .page--schedule .section--list .list--month li.prev {
    margin-right: 5vw;
  }
  .page--schedule .section--list .block--category {
    margin: 5px auto 10px;
  }
  .page--schedule .section--list .block--category .list--sort li span {
    font-size: 10px;
    padding: 3px 3px 2px 3px;
  }
  .page--schedule .section--list .list--news li a {
    padding: 18px 0;
  }
  .page--schedule .section--list .list--news .date {
    display: inline-block;
    font-size: 17px;
    margin-bottom: 10px;
  }
  .page--schedule .section--list .list--news .cat {
    display: inline-block;
    background: #eeecf1;
    color: #05010a;
    margin-left: 5px;
  }
  .page--schedule .section--list .list--news .tit-wrap span {
    display: inline-block;
  }
  .page--schedule .section--list .no-data {
    margin: 200px auto;
  }
  .page--schedule .section--detail .cat {
    background: #05010a;
    color: #eeecf1;
  }
  .page--schedule .section--detail .date-wrap {
    margin-bottom: 5px;
  }
  .page--schedule .section--detail .date-wrap p {
    display: inline-block;
  }
  .page--schedule .section--detail .date-wrap .cat {
    margin-left: 5px;
    font-size: 10px;
  }
  .page--schedule .section--detail .date-wrap .event-date--end {
    position: relative;
    margin-left: 1.5em;
  }
  .page--schedule .section--detail .date-wrap .event-date--end :before {
    width: 1.5em;
    height: 1px;
    background: #05010a;
    content: "";
    position: absolute;
    top: 50%;
    left: -2em;
  }
  .page--entry .section--detail .section--tit {
    display: none;
  }
  .page--entry .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry .section--detail [class^=block--] table {
    width: 100%;
    margin: 0 auto 30px;
    border: none;
  }
  .page--entry .section--detail [class^=block--] table th {
    width: 100px;
    padding: 10px 13px;
    text-align: center;
    background-color: #17131b;
    border: 1px solid #eeecf1;
  }
  .page--entry .section--detail [class^=block--] table td {
    padding: 10px;
    border: 1px solid #eeecf1;
  }
  .page--entry .section--detail [class^=block--] .block-tit {
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .page--entry .section--detail .block--logo {
    margin-bottom: 50px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 60%;
    display: block;
    margin: 0 auto 30px;
  }
  .page--entry .section--detail .block--logo .lead {
    margin-bottom: 0;
  }
  .page--entry .section--detail .list--contents {
    flex-wrap: wrap;
  }
  .page--entry .section--detail .list--contents li {
    padding: 20px 0;
    background-color: #332d3a;
    width: 100%;
    min-height: 200px;
    margin-bottom: 40px;
    position: relative;
  }
  .page--entry .section--detail .list--contents li .inner {
    margin: 0 5%;
  }
  .page--entry .section--detail .list--contents li .inner .tit {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1;
  }
  .page--entry .section--detail .list--contents li .inner .text {
    font-size: 13px;
  }
  .page--entry .section--detail .block--intro {
    margin-top: 50px;
  }
  .page--entry .section--detail .block--intro .block-tit {
    margin-bottom: 40px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.3em;
  }
  .page--entry .section--detail .entry {
    margin-top: 30px;
  }
  .page--biography.error .footer {
    position: absolute;
  }
  .page--biography .section--tit {
    letter-spacing: 0.8em;
  }
  .page--biography .text--wrap {
    position: relative;
    z-index: -1;
    top: -21vw;
    left: -9vw;
  }
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    position: absolute;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #05010a;
    opacity: 0.2;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    font-size: 104px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--biography .text--wrap .txt-white {
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  }
  .page--biography .text--wrap .txt-red {
    text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  }
  .page--biography .text--wrap .txt-blue {
    text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
    animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
  }
  .page--biography .text--wrap .txt-white,
  .page--biography .text--wrap .txt-red,
  .page--biography .text--wrap .txt-blue {
    font-size: 87px;
  }
  .page--biography .thumb {
    position: relative;
    margin-bottom: 20px;
  }
  .page--biography .thumb img {
    vertical-align: middle;
  }
  .page--biography .artist--name > span {
    width: 80%;
    background: #05010a;
    display: block;
    margin: 0 auto 15px;
  }
  .page--biography .artist--name img {
    margin: 0 auto;
    vertical-align: middle;
  }
  .page--biography .list--member li {
    font-size: 17px;
  }
  .page--biography .list--member li > span {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 10px;
    padding-right: 0.25em;
    margin-right: 1.25em;
    position: relative;
    color: #795c9a;
  }
  .page--biography .list--member li > span:before {
    position: absolute;
    top: 50%;
    right: -1em;
    content: "";
    width: 1em;
    height: 1px;
    background: #795c9a;
    transform: rotate(-45deg);
  }
  .page--questionnaire label,
  .page--questionnaire label:hover {
    transition: none;
    color: #eeecf1;
  }
  .page--questionnaire .section--tit {
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
    letter-spacing: 0.1em !important;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 30px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .page--questionnaire .form--post {
    margin: 30px 0;
  }
  .page--questionnaire .form--post #questionnaire_form dd div {
    display: block;
  }
  .page--questionnaire .form--post dl {
    margin: 0 0 40px;
  }
  .page--questionnaire .form--post dt {
    float: none;
    margin: 30px 0 5px;
  }
  .page--questionnaire .form--post .input--quarter + .age {
    margin-left: 4px;
  }
  .page--questionnaire .form--post span.post {
    margin-right: 4px;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox],
  .page--questionnaire .form--post select {
    margin: 0 5px 0 0;
    cursor: pointer;
    vertical-align: -2px;
    padding: 0.8em 1em;
    padding-right: 2em;
  }
  .page--questionnaire .form--post .form__selectbox {
    position: relative;
  }
  .page--questionnaire .form--post .form__selectbox::before {
    position: absolute;
    top: 1em;
    right: 1em;
    border-top: 1px solid #8325F0;
    border-right: 1px solid #8325F0;
    transform: rotate(135deg);
    content: "";
    width: 10px;
    height: 10px;
  }
  .page--questionnaire .form--post .form__radio,
  .page--questionnaire .form--post .form__checkbox {
    margin-bottom: 8px;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    position: relative;
  }
  .page--questionnaire .form--post label {
    position: relative;
    display: inline-block;
    width: 90%;
  }
  .page--questionnaire .form--post input[type=radio],
  .page--questionnaire .form--post input[type=checkbox] {
    vertical-align: middle;
    margin: 3px 5px 8px 0;
    z-index: 1;
    border: none;
    opacity: 1;
    padding-right: 0;
  }
  .page--questionnaire .form--post input[type=radio]:before,
  .page--questionnaire .form--post input[type=checkbox]:before {
    height: auto;
    text-indent: 0;
    font-size: 17px;
    font-family: "FontAwesome";
    color: #8325F0;
    padding-left: 1px;
    text-indent: 0;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 0;
  }
  .page--questionnaire .form--post input[type=checkbox]:before {
    content: "\f096";
  }
  .page--questionnaire .form--post input[type=radio]:before {
    content: "\f10c";
  }
  .page--questionnaire .form--post input[type=checkbox]:checked:before {
    content: "\f046";
    color: #8325F0;
  }
  .page--questionnaire .form--post input[type=radio]:checked:before {
    content: "\f192";
    color: #8325F0;
  }
  .page--questionnaire .form--post .input.postal_code {
    margin-left: 4px;
  }
  .page--questionnaire .block--error {
    background: #c4c4c5;
    padding: 7px 3%;
    border-radius: 5px;
    margin: 2em 0;
  }
  .page--questionnaire .block--error li {
    font-size: 0.85em;
    margin-bottom: 8px;
  }
  .page--questionnaire .block--error li {
    position: relative;
    color: #c31515;
  }
  .page--questionnaire .section--detail .btn--sub {
    border-radius: 0;
    border: none;
  }
  .page--questionnaire .section--detail .txt--basic a {
    text-decoration: underline;
    font-weight: bold;
  }
  .page--questionnaire .section--detail .txt--basic,
  .page--questionnaire .section--detail .txt--sub,
  .page--questionnaire .section--detail .block--error p {
    margin-bottom: 30px;
  }
  .page--questionnaire .section--detail .txt--basic.center,
  .page--questionnaire .section--detail .txt--sub.center,
  .page--questionnaire .section--detail .block--error p.center {
    text-align: center;
  }
  .page--questionnaire .section--detail .btn + .btn {
    margin-top: 30px;
  }
  .page--questionnaire .section--detail .form {
    margin: 30px 0;
  }
  .page--questionnaire .section--detail .form--comfirm dd {
    padding: 20px;
    background-color: #1d1921;
    border-radius: 3px;
    margin-bottom: 30px;
  }
  .page--support .section--detail .list--support li {
    margin-bottom: 20px;
  }
  .page--support .section--detail .list--support a {
    display: inline-block;
    text-decoration: underline;
  }
  .page--support .section--detail .list--support dt {
    font-weight: bold;
    margin-bottom: 2px;
  }
  .page--support .section--detail .list--support dd {
    margin-bottom: 30px;
  }
  .page--support .section--detail .list--support .list--inner {
    display: block;
    margin: 10px 0 0 1em;
  }
  .page--support .section--detail .list--support .list--inner li {
    margin-bottom: 5px;
  }
  .page--support .section--detail .terms-list > li {
    margin: 0 0 1.5em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .txt {
    margin-bottom: 1.5em;
  }
  .page--faq .section--list .block--contact a {
    text-decoration: underline;
  }
  .page--faq .section--list .btn {
    margin: 20px 0;
    text-align: center;
  }
  .page--faq .section--list .txt--sub {
    font-size: 12px;
  }
  .page--faq .searchBox {
    position: relative;
    margin: 20px auto 40px;
  }
  .page--faq .searchBox input[type=text] {
    padding: 0.5em 1em;
    width: 100%;
    background: #eeecf1;
    color: #05010a;
  }
  .page--faq .searchBox input[type=submit] {
    width: 40px;
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    color: #505050;
    background: transparent;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 3px;
    z-index: 2;
    cursor: pointer;
  }
  .page--faq .list--faq {
    margin: 0 0 40px;
  }
  .page--faq .list--faq li {
    border-bottom: 1px solid #eeecf1;
  }
  .page--faq .list--faq li:first-child {
    border-top: 1px solid #eeecf1;
  }
  .page--faq .list--faq li .tit {
    margin: 0 0 0 0.75em;
  }
  .page--faq .list--faq li a {
    display: flex;
    align-items: baseline;
    color: #eeecf1;
    padding: 12px 0;
    text-decoration: none;
  }
  .page--faq .list--faq .icon--q {
    line-height: 1;
  }
  .page--faq .tit--category {
    margin: 0 0 12px;
    font-weight: bold;
  }
  .page--faq .tit--category a {
    scroll-margin-top: 30px;
  }
  .page--faq .block--faq-detail {
    border: 1px solid #eeecf1;
    padding: 12px 5%;
    margin: 0 0 50px;
  }
  .page--faq .block--faq-detail dt {
    border-bottom: 1px solid #eeecf1;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }
  .page--faq .block--faq-detail .txt {
    padding-left: 40px;
  }
  .page--faq .block--faq-detail .txt * {
    color: #eeecf1 !important;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 961px) {
  .page--faq .block--faq-detail .txt * {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) and (min-width: 1px) and (max-width: 960px) {
  .page--faq .block--faq-detail .txt * {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--faq .block--faq-detail .txt a {
    font-weight: bold;
    display: inline-block;
    text-decoration: underline;
  }
  .page--faq .block--faq-detail .icon--q,
  .page--faq .block--faq-detail .icon--a {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: block;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    float: left;
    line-height: 26px;
  }
  .page--faq .block--faq-detail .icon--q {
    border: 1px solid #eeecf1;
  }
  .page--faq .block--faq-detail .icon--a {
    vertical-align: top;
    color: #05010a;
    background: #eeecf1;
  }
  .page--faq .block--contact {
    margin: 20px 0 0;
  }
  .page--faq .block--contact a {
    text-decoration: none;
    font-weight: bold;
  }
  .page--faq .block--contact a::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #eeecf1;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    vertical-align: middle;
  }
  .page--faq .block--contact a::after {
    border-width: 2px;
  }
}
/* page--birthday
============================== */
.page--birthday .text--wrap {
  position: relative;
  z-index: -1;
  top: -25vw;
  left: -9vw;
}
.page--birthday .text--wrap .txt-white,
.page--birthday .text--wrap .txt-red,
.page--birthday .text--wrap .txt-blue {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #05010a;
  opacity: 0.2;
}
@media screen and (min-width: 961px) {
  .page--birthday .text--wrap .txt-white,
  .page--birthday .text--wrap .txt-red,
  .page--birthday .text--wrap .txt-blue {
    font-size: 240px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--birthday .text--wrap .txt-white,
  .page--birthday .text--wrap .txt-red,
  .page--birthday .text--wrap .txt-blue {
    font-size: 17vw;
  }
}
.page--birthday .text--wrap .txt-white {
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.page--birthday .text--wrap .txt-red {
  text-shadow: 1px 0 0 #FF3434, 0 1px 0 #FF3434, -1px 0 0 #FF3434, 0 -1px 0 #FF3434;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
}
.page--birthday .text--wrap .txt-blue {
  text-shadow: 1px 0 0 #006AFA, 0 1px 0 #006AFA, -1px 0 0 #006AFA, 0 -1px 0 #006AFA;
  animation: glitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms infinite;
}
.page--birthday .section--detail .txt a {
  display: inline-block;
  text-decoration: underline;
  font-weight: 600;
  padding: 0 0.25em;
}
.page--birthday .section--detail .birthday {
  font-weight: 600;
  font-size: 1.2em;
}
.page--birthday .section--detail .ph {
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.page--birthday .section--detail .ph .reflection {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #eeecf1;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 2s ease-in-out infinite;
}

/* tablet
============================== */
@media screen and (min-width: 756px) and (max-width: 961px) {
  .waves {
    height: 60px;
    transform: translate(-9vw, -40px);
  }
  .block--pager .pager-link--prev span,
  .block--pager .pager-link--next span {
    position: relative;
    opacity: 0.2;
  }
  .menuOpen header .logo-wrap {
    margin-bottom: 20px;
  }
  .menuOpen header .drawer .logo-wrap {
    margin-bottom: 10px;
  }
  .menuOpen header .drawer .nav--member {
    margin-bottom: 20px;
  }
  .menuOpen header .drawer .nav--login {
    margin-bottom: 30px;
  }
  .list--contents li a .img-wrap .date {
    bottom: 40px;
  }
  .page--home .block--member:before {
    border-width: 0 0 52vw 137vw;
  }
  .page--home .section--blog .txt-white,
  .page--home .section--blog .txt-red,
  .page--home .section--blog .txt-blue {
    top: -640px;
    left: -3%;
  }
  .page--home .section--qa .list--contents li a {
    display: block;
  }
  .page--home .section--video .block--contents .list--contents li {
    margin-right: 1%;
  }
  .page--qa .section--list .list--contents a .date {
    bottom: 40px;
  }
  .page--qa .section--list .list--contents a .img-wrap > span {
    top: 55px;
  }
  .page--qa .section--list .list--contents a .tit-wrap {
    top: 100px;
  }
  .page--entry .section--detail .block--logo .logo {
    width: 300px;
  }
}