@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

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

i, em {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* absolute : position:absolute; */
/* 配置*/
/* link*/
/* 2.3 form
------------------------------ */
.form {
  width: 100%;
  margin: 0 auto;
}
.form dt {
  margin: 1em 0 0.5em;
}
.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: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  margin-left: 4px;
  position: relative;
  background: #c31515;
  border-radius: 2px;
  letter-spacing: 0.01em;
}

/* input */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=time],
input[type=date] {
  font-family: YakuHanJP, -apple-system, "游ゴシック体", YuGothic, "Yu Gothic Medium", BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid rgba(40, 25, 22, 0.4);
  padding: 1em 0.5em;
  background: #fff;
  color: #000;
}
@media screen and (min-width: 961px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=time],
  input[type=date] {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
}
@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],
  input[type=time],
  input[type=date] {
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 1.6;
  }
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]: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,
input[type=time].form__error,
input[type=date].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,
input[type=time].form__error:focus,
input[type=date].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],
input[type=time][disabled],
input[type=date][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

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

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

/* textarea */
textarea {
  font-family: YakuHanJP, -apple-system, "游ゴシック体", YuGothic, "Yu Gothic Medium", BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid rgba(40, 25, 22, 0.4);
  padding: 1em 0.5em;
  height: auto;
  line-height: 1.6;
}
@media screen and (min-width: 961px) {
  textarea {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  textarea {
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 1.6;
  }
}
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;
  position: relative;
}
.form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.form__select:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-45deg);
}
.form__select select {
  font-family: YakuHanJP, -apple-system, "游ゴシック体", YuGothic, "Yu Gothic Medium", BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid rgba(40, 25, 22, 0.4);
  padding: 1em 0.5em;
  padding-right: 1.5em;
  background: transparent;
}
@media screen and (min-width: 961px) {
  .form__select select {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .form__select select {
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 1.6;
  }
}
.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],
.form__checkbox input[type=file] {
  -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],
.form__radio input[type=file] {
  -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],
.form__toggle input[type=file] {
  -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;
}

/* error-list */
/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #281916;
  font-family: YakuHanJP, -apple-system, "游ゴシック体", YuGothic, "Yu Gothic Medium", BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}
@media screen and (min-width: 961px) {
  body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  body {
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 1.6;
  }
}

.preload * {
  transition: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}

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

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

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

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

.svg-symbol,
.xdebug-var-dump {
  display: none !important;
}

.txt--basic {
  margin: 0 0 1em;
}

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

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.red {
  color: #e63a37;
}

.date,
.cat,
.commingsoon,
.no-data {
  line-height: 1;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.new {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-tit {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  line-height: 1;
}

.tit {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  word-break: break-word;
}

.block--pager {
  text-align: center;
  letter-spacing: -0.5em;
  margin: 0 auto;
}
.block--pager li {
  display: inline-block;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  padding: 0.6em 0;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
  line-height: 1;
  color: #F8B500;
}
.block--pager a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 0 0.6em;
}
.block--pager .pager__item--number {
  text-align: center;
}
.block--pager .pager__item--newer {
  float: left;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--newer span {
  position: relative;
}
.block--pager .pager__item--newer a::after,
.block--pager .pager__item--newer span::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.block--pager .pager__item--older {
  float: right;
}
.block--pager .pager__item--older a,
.block--pager .pager__item--older span {
  position: relative;
}
.block--pager .pager__item--older a::after,
.block--pager .pager__item--older span::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  top: 0;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--newer span,
.block--pager .pager__item--older a,
.block--pager .pager__item--older span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  position: relative;
}
.block--pager .pager__item--newer a:after,
.block--pager .pager__item--newer span:after,
.block--pager .pager__item--older a:after,
.block--pager .pager__item--older span:after {
  top: 50%;
  right: 50%;
  border-color: #F8B500;
  border-width: 2px;
}
.block--pager .pager__item--newer span:after,
.block--pager .pager__item--older span:after {
  opacity: 0.4;
}
.block--pager .pager__item--current {
  position: relative;
  padding: 0.6em 0.6em calc(0.6em - 2px);
  border-bottom: 2px solid;
}

.btn {
  text-align: center;
}
@media screen and (min-width: 961px) {
  .btn {
    cursor: pointer;
  }
}
.btn .btn--main {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: #F8B500;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 3em;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .btn .btn--main {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.btn .btn--main:hover {
  background: #FFFCF2;
  color: #F8B500;
  box-shadow: 0 0 0px 2px #F8B500 inset;
}
.btn .btn--sub {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  box-sizing: content-box;
  font-weight: 400;
  color: #fff;
  border-radius: 3em;
  cursor: pointer;
  color: #F8B500;
  box-shadow: 0 0 0px 2px #F8B500 inset;
}
@media screen and (min-width: 961px) {
  .btn .btn--sub {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.btn .btn--sub:hover {
  background: #FFFCF2;
  color: #F8B500;
  box-shadow: 0 0 0px 2px #F8B500 inset;
}

.ph,
.thumb {
  position: relative;
  line-height: 0;
}
.ph img,
.thumb img {
  height: auto;
}
.ph::after,
.thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ph .dummy,
.thumb .dummy {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* video */
video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video {
  position: relative;
  padding-top: 56.25%;
}
.video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.block--player {
  height: 0;
  padding-top: 56.25%;
  background: #fff;
  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;
}

.list__more,
.detail__btn {
  display: inline-block;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}
.list__more a,
.detail__btn a {
  display: inline-block;
}
.list__more .allow,
.detail__btn .allow {
  display: inline-block;
}

.list__more {
  text-align: right;
}

.detail__btn {
  text-align: left;
}
.detail__btn .allow {
  transform: scaleX(-1) translateY(-1px);
}

.no-data {
  text-align: center;
  letter-spacing: 0.1em;
  margin: 30px auto;
}

.swiper-wrapper {
  height: inherit;
}

.swiper-container {
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

.swiper-container::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.swiper-pagination-fraction {
  text-align: left;
  bottom: 0;
  left: 5.5vw;
  position: relative;
}
.swiper-pagination-fraction span.line {
  width: 28px;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-3px);
  background: #F8B500;
  margin: 0 9px;
}
.swiper-pagination-fraction .swiper-pagination-current,
.swiper-pagination-fraction .swiper-pagination-total {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  color: #F8B500;
  padding: 5px;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .swiper-pagination-fraction .swiper-pagination-current,
  .swiper-pagination-fraction .swiper-pagination-total {
    font-size: 14px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  position: absolute;
  z-index: 5;
  top: calc(50% - 40px);
  background-image: none;
  width: 46px;
  height: 84px;
  margin-top: -42px;
  font-size: 20px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #F8B500;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  border-width: 5px;
  left: 50%;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 20px;
    height: 20px;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.2);
}

.swiper-button-prev {
  left: 30px;
}
.swiper-button-prev:after {
  transform: rotate(45deg);
}

.swiper-button-next {
  right: 30px;
}

.list--bnr a {
  display: block;
  height: 100%;
}
.list--bnr img {
  border-radius: 7px;
}

.list--info li .block--date {
  margin-bottom: 5px;
}
.list--info li:last-of-type {
  margin-bottom: 0;
}
.list--info li .new {
  color: #F8B500;
}
.list--info li .date,
.list--info li .cat {
  display: inline-block;
}
.list--info li.no-data {
  border-bottom: none !important;
}
.list--info li .cat {
  min-width: 70px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid;
  color: #F8B500;
  padding: 2px 0;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.list--info li .category--6 {
  border: 1px solid #ff8a7c !important;
  color: #ff8a7c !important;
}
.list--info li .category--7 {
  border: 1px solid #60ADFB !important;
  color: #60ADFB !important;
}
.list--info li .category--8 {
  border: 1px solid #f6ca46 !important;
  color: #f6ca46 !important;
}
.list--info li .category--9 {
  border: 1px solid #F97BAC !important;
  color: #F97BAC !important;
}
.list--info li .category--10 {
  border: 1px solid #65dbb0 !important;
  color: #65dbb0 !important;
}
.list--info li .category--11 {
  border: 1px solid #fc9cc1 !important;
  color: #fc9cc1 !important;
}
.list--info li .category--12 {
  border: 1px solid #fc9f9c !important;
  color: #fc9f9c !important;
}
.list--info li .category--13 {
  border: 1px solid #68c7e9 !important;
  color: #68c7e9 !important;
}
.list--info li .category--14 {
  border: 1px solid #cd92e2 !important;
  color: #cd92e2 !important;
}
.list--info li .category--15 {
  border: 1px solid #adadad !important;
  color: #adadad !important;
}
.list--info li .category--17 {
  border: 1px solid #ff8a7c !important;
  color: #ff8a7c !important;
}
.list--info li .category--18 {
  border: 1px solid #60ADFB !important;
  color: #60ADFB !important;
}
.list--info li .category--19 {
  border: 1px solid #f6ca46 !important;
  color: #f6ca46 !important;
}
.list--info li .category--20 {
  border: 1px solid #F97BAC !important;
  color: #F97BAC !important;
}
.list--info li .category--21 {
  border: 1px solid #65dbb0 !important;
  color: #65dbb0 !important;
}
.list--info li .category--22 {
  border: 1px solid #adadad !important;
  color: #adadad !important;
}
.list--info li .category--27 {
  border: 1px solid #B79962 !important;
  color: #B79962 !important;
}
.list--info li .category--28 {
  border: 1px solid #32bd32 !important;
  color: #32bd32 !important;
}
.list--info li .category--30 {
  border: 1px solid #fc6b5a !important;
  color: #fc6b5a !important;
}
.list--info li a {
  display: block;
}

.list--contents a,
.list--discography a {
  display: block;
}
.list--contents .block--thumb,
.list--discography .block--thumb {
  position: relative;
}
.list--contents .date,
.list--contents .cat,
.list--discography .date,
.list--discography .cat {
  display: inline-block;
}
.list--contents li .thumb,
.list--discography li .thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.list--contents .blur,
.list--discography .blur {
  filter: blur(10px);
  transform: scale(1.2);
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .list--contents .blur,
  .list--discography .blur {
    display: none;
    background-image: none;
  }
}

.list--contents li .thumb {
  border-radius: 3px;
}
.list--contents li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.list--contents li img:not(.blur) {
  background-size: contain;
  z-index: 2;
}
.list--contents li .blur {
  position: absolute;
}
.list--contents li.new {
  position: relative;
}
.list--contents li.new::before {
  z-index: 3;
  content: "";
  position: absolute;
  background-image: url("/static/ske48/fansite/common/new.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.list--discography .blur {
  position: absolute;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .list--discography .blur {
    display: none;
    background-image: none;
  }
}
.list--discography .thumb img:not(.blur) {
  background-size: contain;
  z-index: 2;
  position: relative;
}
.list--discography .thumb img {
  width: 100%;
}
.list--discography .cat {
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid;
  color: #F8B500;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  display: inline-block;
  line-height: 1;
}

.list--horizontal {
  display: flex;
  flex-wrap: wrap;
}
.list--horizontal a {
  display: block;
}
@media screen and (min-width: 961px) {
  .list--horizontal li a figure {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .list--horizontal li a:hover figure {
    opacity: 0.8;
  }
}
.list--horizontal li:not(:last-child) {
  margin-right: 8px;
}

.list--login {
  position: relative;
}
.list--login li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.list--login li a {
  display: block;
  color: #fff;
  font-family: gill-sans-nova, sans-serif;
}
.list--login li.join {
  position: relative;
}
.list--login li.join span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  display: block;
  background: #fff;
}

.block--category .list--category {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.block--category .list--category li {
  margin-bottom: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 0 0px 1px #F8B500 inset;
  color: #F8B500;
  letter-spacing: 0.08em;
  line-height: 1;
  height: 30px;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 3%;
}
.block--category .list--category li:not(:last-child) {
  margin-right: 22px;
}
.block--category .list--category li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: none;
  line-height: 30px;
}
.block--category .list--category li:hover {
  background: #F8B500;
  color: #fff;
}
.block--category .list--category li.current {
  background: #F8B500;
  color: #fff;
}
.block--category .pulldownBox {
  border: none;
  position: relative;
}
.block--category .pulldownBox::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.block--category .pulldownBox:after {
  border-width: 2px;
  right: 0.75em;
  top: 1.25em;
  z-index: 2;
}
.block--category .pulldownBox select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 45px;
  background: #F8B500;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  border-radius: 3px;
  box-sizing: border-box;
  line-height: 45px;
  padding: 0 2em 0 1.5em;
  position: relative;
  border: none;
}
.block--category .pulldownBox select::-ms-expand {
  display: none;
}
.block--category.ticket {
  width: inherit;
}
.block--category.ticket .list--status-ticket .current {
  font-weight: bold;
  color: #F8B500;
}
.block--category.ticket .list--status-ticket .link--text-sub {
  display: inline-block;
  font-size: 0.85em;
  position: relative;
}
.block--category.ticket .list--status-ticket .link--text-sub::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.block--category.ticket .list--status-ticket .link--text-sub a {
  padding: 5px 1em 5px 0;
}
.block--category.ticket .list--status-ticket .link--text-sub:after {
  top: 50%;
  right: 0;
  transform: rotate(-135deg) translateY(50%);
}

.background {
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: none;
  z-index: 0;
  top: 0;
}
.background > span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.35;
  background-image: url("/static/ske48/fansite/common/background_dot.png");
  background-repeat: repeat;
  background-size: initial;
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .background > span {
    background-size: 200%;
  }
}

.badge {
  color: #fff;
  background-color: #F8B500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 2px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  padding: 0 6px;
  position: relative;
  top: -5px;
}

.header {
  width: 100%;
}
.header .drawer {
  display: none;
  pointer-events: none;
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  overflow-y: scroll;
  background-color: #F8B500;
  color: #fff;
}
.header .drawer__btn {
  z-index: 99;
}
.header .drawer__btn .drawer__btn-inner {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .drawer__btn span {
  transition: all;
  transform-origin: center;
}
.header .g-nav > li a {
  display: block;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
}

.drawer__btn-pc {
  width: 50px;
  height: 50px;
  z-index: 110;
  margin: 0 auto;
  position: fixed;
  top: 42%;
  left: 58px;
  cursor: pointer;
}
.drawer__btn-pc .drawer__btn-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer__btn-pc span {
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 50px;
  height: 3px;
  background: #F8B500;
  display: inline-block;
  border-radius: 3em;
}
.drawer__btn-pc span:first-of-type {
  top: 17px;
}
.drawer__btn-pc span:last-of-type {
  top: 31px;
}

/*visible*/
body.drawer-visible {
  overflow: hidden;
}
body.drawer-visible .content--body {
  overflow: hidden;
}
body.drawer-visible .header .drawer__btn span {
  background: #fff;
}
body.drawer-visible .header .drawer__btn span:first-child {
  top: 15px;
  transform: translateY(6px) rotate(-45deg);
}
body.drawer-visible .header .drawer__btn span:last-of-type {
  top: 27px;
  transform: translateY(-6px) rotate(45deg);
}
body.drawer-visible .header .drawer__btn .drawer__btn-inner {
  transform: rotate(360deg);
}
body.drawer-visible .drawer__btn-pc span:first-child {
  top: 15px;
  transform: translateY(6px) rotate(-45deg) scale(0.75);
}
body.drawer-visible .drawer__btn-pc span:last-of-type {
  top: 27px;
  transform: translateY(-6px) rotate(45deg) scale(0.75);
}
body.drawer-visible .drawer__btn-pc .drawer__btn-inner {
  transform: rotate(360deg);
}
body.drawer-visible .drawer {
  display: block;
  pointer-events: auto;
}
body.drawer-visible .drawer .label_nav,
body.drawer-visible .drawer .g-nav > li,
body.drawer-visible .drawer .drawer--sns,
body.drawer-visible .drawer .nav-fc li {
  animation: drawerVisible 0.6s ease 0s forwards;
}

footer {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  background: #FAFAFA;
}
footer .footer-logo a {
  display: block;
}
footer .footer-logo img {
  width: 330px;
  height: 27px;
}
footer .copyright {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-size: 10px;
}
footer .footer--sns {
  display: none;
}
footer .footer--sns li {
  display: inline-block;
  color: #F8B500;
}
footer .footer--sns li a {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 5px 0;
}
footer .footer--sns svg.line_ico {
  fill: #f8b500;
  width: 18px;
  height: 18px;
  transform: translateY(2px);
}
footer .block--support {
  display: none;
}
footer .block--support li {
  display: inline-block;
}
footer .nav__page-top {
  z-index: 10;
  font-size: 10px;
  color: #F8B500;
  position: relative;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
footer .nav__page-top svg.allow {
  display: block;
  width: 12px;
  height: 17px;
  fill: #F8B500;
  top: 0%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
footer .nav__page-top a {
  padding-top: 26px;
  height: 100%;
  display: block;
}

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

.section--detail {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.section--detail .list--contents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.section--detail > .txt * {
  white-space: normal !important;
  word-break: break-word;
}
.section--detail .block--share {
  text-align: right;
}
.section--detail .block--share a {
  padding: 5px 0;
}
.section--detail .block--share li {
  display: inline-block;
  margin-right: 10px;
}
.section--detail .block--share li .fa {
  font-size: 20px;
  vertical-align: middle;
}
.section--detail .block--share li:last-child {
  margin-right: 0;
}
.section--detail .block--share li svg {
  width: 20px;
  fill: #281916;
  position: relative;
  top: 6px;
  left: -2px;
}
.section--detail .block--share li.share {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-size: 10px;
  margin-right: 0.5em;
}
@media screen and (min-width: 961px) {
  .section--detail .block--share i,
  .section--detail .block--share svg {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .section--detail .block--share li:hover a svg {
    fill: #F8B500;
  }
  .section--detail .block--share li:hover a .fa {
    color: #F8B500;
  }
}

/* delighter */
.page--home .block--schedule,
.page--home .block--favmember,
.page--home .block--nextlive {
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  opacity: 0;
}
.page--home .block--schedule.delighter.started,
.page--home .block--favmember.delighter.started,
.page--home .block--nextlive.delighter.started {
  transform: translateY(0);
  opacity: 1;
}

.list--info li,
.list--contents li,
.list--discography li,
.list--jaket li,
.list--youtube li,
.list--topics li {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.list--info li:nth-child(1),
.list--contents li:nth-child(1),
.list--discography li:nth-child(1),
.list--jaket li:nth-child(1),
.list--youtube li:nth-child(1),
.list--topics li:nth-child(1) {
  transition-delay: calc(0.1s * 1);
}
.list--info li:nth-child(2),
.list--contents li:nth-child(2),
.list--discography li:nth-child(2),
.list--jaket li:nth-child(2),
.list--youtube li:nth-child(2),
.list--topics li:nth-child(2) {
  transition-delay: calc(0.1s * 2);
}
.list--info li:nth-child(3),
.list--contents li:nth-child(3),
.list--discography li:nth-child(3),
.list--jaket li:nth-child(3),
.list--youtube li:nth-child(3),
.list--topics li:nth-child(3) {
  transition-delay: calc(0.1s * 3);
}
.list--info li:nth-child(4),
.list--contents li:nth-child(4),
.list--discography li:nth-child(4),
.list--jaket li:nth-child(4),
.list--youtube li:nth-child(4),
.list--topics li:nth-child(4) {
  transition-delay: calc(0.1s * 4);
}
.list--info li:nth-child(5),
.list--contents li:nth-child(5),
.list--discography li:nth-child(5),
.list--jaket li:nth-child(5),
.list--youtube li:nth-child(5),
.list--topics li:nth-child(5) {
  transition-delay: calc(0.1s * 5);
}
.list--info li:nth-child(6),
.list--contents li:nth-child(6),
.list--discography li:nth-child(6),
.list--jaket li:nth-child(6),
.list--youtube li:nth-child(6),
.list--topics li:nth-child(6) {
  transition-delay: calc(0.1s * 6);
}
.list--info li:nth-child(7),
.list--contents li:nth-child(7),
.list--discography li:nth-child(7),
.list--jaket li:nth-child(7),
.list--youtube li:nth-child(7),
.list--topics li:nth-child(7) {
  transition-delay: calc(0.1s * 7);
}
.list--info li:nth-child(8),
.list--contents li:nth-child(8),
.list--discography li:nth-child(8),
.list--jaket li:nth-child(8),
.list--youtube li:nth-child(8),
.list--topics li:nth-child(8) {
  transition-delay: calc(0.1s * 8);
}
.list--info li:nth-child(9),
.list--contents li:nth-child(9),
.list--discography li:nth-child(9),
.list--jaket li:nth-child(9),
.list--youtube li:nth-child(9),
.list--topics li:nth-child(9) {
  transition-delay: calc(0.1s * 9);
}
.list--info li:nth-child(10),
.list--contents li:nth-child(10),
.list--discography li:nth-child(10),
.list--jaket li:nth-child(10),
.list--youtube li:nth-child(10),
.list--topics li:nth-child(10) {
  transition-delay: calc(0.1s * 10);
}
.list--info li:nth-child(11),
.list--contents li:nth-child(11),
.list--discography li:nth-child(11),
.list--jaket li:nth-child(11),
.list--youtube li:nth-child(11),
.list--topics li:nth-child(11) {
  transition-delay: calc(0.1s * 11);
}
.list--info li:nth-child(12),
.list--contents li:nth-child(12),
.list--discography li:nth-child(12),
.list--jaket li:nth-child(12),
.list--youtube li:nth-child(12),
.list--topics li:nth-child(12) {
  transition-delay: calc(0.1s * 12);
}
.list--info li:nth-child(13),
.list--contents li:nth-child(13),
.list--discography li:nth-child(13),
.list--jaket li:nth-child(13),
.list--youtube li:nth-child(13),
.list--topics li:nth-child(13) {
  transition-delay: calc(0.1s * 13);
}
.list--info li:nth-child(14),
.list--contents li:nth-child(14),
.list--discography li:nth-child(14),
.list--jaket li:nth-child(14),
.list--youtube li:nth-child(14),
.list--topics li:nth-child(14) {
  transition-delay: calc(0.1s * 14);
}
.list--info li:nth-child(15),
.list--contents li:nth-child(15),
.list--discography li:nth-child(15),
.list--jaket li:nth-child(15),
.list--youtube li:nth-child(15),
.list--topics li:nth-child(15) {
  transition-delay: calc(0.1s * 15);
}
.list--info li.delighter.started,
.list--contents li.delighter.started,
.list--discography li.delighter.started,
.list--jaket li.delighter.started,
.list--youtube li.delighter.started,
.list--topics li.delighter.started {
  transform: translateY(0);
  opacity: 1;
}

body.loaded .section--detail {
  opacity: 1;
  transform: translateY(0);
}

.page--home .wrap > h1 {
  display: none;
}
.page--home .list__more {
  display: block;
  position: relative;
  margin: 40px 0 0;
}
.page--home .section--keyvisual .block--favmember .thumb {
  height: 100%;
  display: block;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
  margin: 0 0 5px;
}
.page--home .section--keyvisual .block--favmember .thumb:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 5;
  border-left: 2px solid #F8B500;
  border-right: 2px solid #F8B500;
  pointer-events: none;
}
.page--home .section--keyvisual .block--favmember .thumb img {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  background-position: top center;
}
.page--home .section--keyvisual .block--favmember .block-tit {
  text-align: right;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #F8B500;
}
.page--home .section--keyvisual .block--schedule {
  background: #fff;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
  position: relative;
}
.page--home .section--keyvisual .block--schedule:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 5;
  border-left: 2px solid #F8B500;
  border-right: 2px solid #F8B500;
  pointer-events: none;
}
.page--home .section--keyvisual .block--schedule .area--tit {
  color: #fff;
  background-color: #F8B500;
  display: inline-block;
  margin-bottom: 40px;
  padding: 8px 10px;
  transform: translateX(-40px);
}
.page--home .section--keyvisual .block--schedule .area--tit .block-tit {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  padding-right: 14px;
}
.page--home .section--keyvisual .block--schedule .area--tit .block-tit:before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  position: absolute;
  transform: rotate(45deg);
  right: 5px;
  background: #fff;
}
.page--home .section--keyvisual .block--schedule .area--tit .date {
  letter-spacing: -0.01em;
  display: inline-block;
}
.page--home .section--keyvisual .block--schedule .list__more a {
  color: #F8B500;
}
.page--home .section--keyvisual .block--schedule .list__more a .allow {
  fill: #F8B500;
  width: 38px;
  display: inline-block;
  height: 11px;
  margin-left: 10px;
}
.page--home .section--keyvisual .block--nextlive,
.page--home .section--keyvisual .block--topics {
  background: #F8B500;
  color: #fff;
  border-radius: 3px;
  position: relative;
}
.page--home .section--keyvisual .block--nextlive .block-tit,
.page--home .section--keyvisual .block--topics .block-tit {
  letter-spacing: 0.01em;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
}
.page--home .section--keyvisual .block--nextlive li.no-data,
.page--home .section--keyvisual .block--topics li.no-data {
  padding: 0;
  margin: 0;
}
.page--home .section--keyvisual .block--topics .list--topics li {
  position: relative;
}
.page--home .section--keyvisual .block--topics .list--topics li:not(:last-child) {
  margin-bottom: 10px;
}
.page--home .section--keyvisual .block--topics .list--topics li .tit {
  display: inline-block;
}
.page--home .section--keyvisual .block--topics .date {
  display: inline-block;
}
.page--home .section--keyvisual .block--topics .list__more a {
  justify-content: flex-end;
}
.page--home .section--keyvisual .block--topics .list__more svg {
  fill: #fff;
}
.page--home .section--keyvisual .block--topics + .list__more {
  color: #F8B500;
}
.page--home .section--keyvisual .block--topics + .list__more svg {
  fill: #F8B500;
}
.page--home .section--info,
.page--home .section--fcinfo {
  background: #fff;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
}
.page--home .section--info .list__more,
.page--home .section--fcinfo .list__more {
  color: #F8B500;
}
.page--home .section--info .list__more svg,
.page--home .section--fcinfo .list__more svg {
  fill: #F8B500;
}
.page--home .section--blog,
.page--home .section--movie,
.page--home .section--family {
  background-color: #FFFCF2;
  border-bottom: 2px solid #F8B500;
}
.page--home .section--movie,
.page--home .section--family {
  border-top: 2px solid #F8B500;
}
.page--home .section--blog img:not(.blur) {
  background-size: cover;
}
.page--home .section--blog .list--contents li .thumb {
  padding-top: 100%;
}
.page--home .section--blog .list--contents li .cat.name {
  font-size: 10px;
  color: #fff;
  background-color: #F8B500;
  padding: 3px 6px;
  margin-right: 8px;
}
.page--home .section--blog .list--contents .tit {
  font-size: 14px;
}
.page--home .section--blog .btn.post {
  margin-top: min(4em, 4vw);
}
.page--home .section--blog .btn.post .btn--main {
  background: #281916;
}
.page--home .section--movie .list--contents li .thumb {
  height: auto;
  padding-top: 56.25%;
}
.page--home .section--movie .no-data {
  text-align: center;
}
.page--home .section--report .thumb {
  padding-top: 75%;
}
.page--home .section--report img:not(.blur) {
  background-size: cover;
}
.page--home .section--family .block--tit {
  margin-bottom: 30px;
}
.page--home .section--family .block--tit a {
  display: block;
}
.page--home .section--family .list--menu {
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page--home .section--family .list--menu li {
  margin-bottom: 8px;
  width: 49%;
}
.page--home .section--family .list--menu li:nth-child(odd) {
  margin-right: 2%;
}
.page--home .section--family .list--menu li img {
  width: 9px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
}
.page--home .section--family .list--menu a {
  padding: 2px 0;
}
.page--home .section--family .txt {
  font-weight: bold;
}
.page--home .section--video .ex-link {
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.page--home .section--video .ex-link svg.link {
  width: 15px;
  height: 13px;
  fill: #f8b500;
  margin-right: 6px;
}
.page--home .section--video .list--youtube img {
  display: block;
  width: 100%;
  height: 100%;
}
.page--home .section--video .list--youtube .video .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.page--home .section--video .list--youtube li.video-ready .tit {
  display: none;
}
.page--home .section--links {
  background: #fff;
}
.page--home .section--links img {
  width: 100%;
}
.page--home footer .footer--sns,
.page--home footer .block--support {
  display: block;
}

body:not(.page--home) .section--list,
body:not(.page--home) .section--detail {
  position: relative;
  background: #fff;
}
body:not(.page--home) .section--list .area--tit,
body:not(.page--home) .section--detail .area--tit {
  background-color: #fff;
}
body:not(.page--home) .section--list .area--tit .section-tit,
body:not(.page--home) .section--detail .area--tit .section-tit {
  display: inline-block;
  color: #F8B500;
}
body:not(.page--home) .section--list .block--pager .allow,
body:not(.page--home) .section--detail .block--pager .allow {
  fill: #F8B500;
}
body:not(.page--home).member .section--list,
body:not(.page--home).member .section--detail {
  background: #FFFCF2;
}
body:not(.page--home).page--detail .detail__btn {
  color: #F8B500;
}
body:not(.page--home).page--detail .detail__btn svg {
  fill: #F8B500;
}
body:not(.page--home) .section--list {
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
}
body:not(.page--home) .section--detail {
  border-bottom: 2px solid #F8B500;
}

/*  page--info
------------------------------ */
.page--info .block--ticket {
  display: none;
}
.page--info.ticket .date--event .week {
  font-size: 0.8em;
  margin-left: 4px;
}
.page--info.ticket .date--event {
  position: relative;
}
.page--info.ticket .date--event .event-date--end:before {
  content: "～";
  margin: 0 5px;
}
.page--info.ticket .period {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.page--info.ticket .list--info .thumb {
  overflow: hidden;
  background-color: #F8B500;
}
.page--info.ticket .list--info .thumb > img {
  width: 100%;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--info.ticket .list--info .thumb img:not(.blur) {
  background-size: contain;
  z-index: 2;
  position: relative;
}
.page--info.theater__event-end .block--ticket {
  display: block;
}
.page--info.theater__event-end .list--horizontal {
  align-items: stretch;
}
.page--info.theater__event-end .list--horizontal figcaption {
  line-height: 1.3;
  font-size: 14px;
}
.page--info.theater__event-end .list--horizontal img {
  width: 100%;
  margin: 0 0 14px;
  border: 1px solid rgba(248, 181, 0, 0.5);
}
.page--info .section--detail .txt a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--info .section--detail .txt a:hover {
  text-decoration: none;
}
.page--info .section--detail .tit {
  font-weight: bold;
}
.page--info .section--detail .tit a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--info .section--detail .tit a:hover {
  text-decoration: none;
}
.page--info .section--detail .date,
.page--info .section--detail .cat {
  display: inline-block;
}
.page--info .section--detail .cat {
  min-width: 70px;
  text-align: center;
  font-weight: bold;
  border: 1px solid;
  color: #F8B500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.page--info .section--detail .category--6 {
  border: 1px solid #ff8a7c !important;
  color: #ff8a7c !important;
}
.page--info .section--detail .category--7 {
  border: 1px solid #60ADFB !important;
  color: #60ADFB !important;
}
.page--info .section--detail .category--8 {
  border: 1px solid #f6ca46 !important;
  color: #f6ca46 !important;
}
.page--info .section--detail .category--9 {
  border: 1px solid #F97BAC !important;
  color: #F97BAC !important;
}
.page--info .section--detail .category--10 {
  border: 1px solid #65dbb0 !important;
  color: #65dbb0 !important;
}
.page--info .section--detail .category--11 {
  border: 1px solid #fc9cc1 !important;
  color: #fc9cc1 !important;
}
.page--info .section--detail .category--12 {
  border: 1px solid #fc9f9c !important;
  color: #fc9f9c !important;
}
.page--info .section--detail .category--13 {
  border: 1px solid #68c7e9 !important;
  color: #68c7e9 !important;
}
.page--info .section--detail .category--14 {
  border: 1px solid #cd92e2 !important;
  color: #cd92e2 !important;
}
.page--info .section--detail .category--15 {
  border: 1px solid #adadad !important;
  color: #adadad !important;
}
.page--info .section--detail .category--17 {
  border: 1px solid #ff8a7c !important;
  color: #ff8a7c !important;
}
.page--info .section--detail .category--18 {
  border: 1px solid #60ADFB !important;
  color: #60ADFB !important;
}
.page--info .section--detail .category--19 {
  border: 1px solid #f6ca46 !important;
  color: #f6ca46 !important;
}
.page--info .section--detail .category--20 {
  border: 1px solid #F97BAC !important;
  color: #F97BAC !important;
}
.page--info .section--detail .category--21 {
  border: 1px solid #65dbb0 !important;
  color: #65dbb0 !important;
}
.page--info .section--detail .category--22 {
  border: 1px solid #adadad !important;
  color: #adadad !important;
}
.page--info .section--detail .category--27 {
  border: 1px solid #B79962 !important;
  color: #B79962 !important;
}
.page--info .section--detail .category--28 {
  border: 1px solid #32bd32 !important;
  color: #32bd32 !important;
}
.page--info .section--detail .category--30 {
  border: 1px solid #fc6b5a !important;
  color: #fc6b5a !important;
}
.page--info .section--detail .new {
  color: #F8B500;
}
.page--info .section--detail .tag_list ul li {
  display: inline-block;
  color: #F8B500;
  font-size: 0.85em;
}
.page--info.page--detail .wrap,
.page--info.page--detail .wrap--main {
  padding-top: 0;
}

.tag_list a {
  color: #337fcc;
}

.page--schedule .header-calendar {
  margin-bottom: 30px;
}
.page--schedule .header-calendar .block--month {
  position: relative;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  line-height: 1;
}
.page--schedule .header-calendar .block--month .month-pager {
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: 0;
}
.page--schedule .header-calendar .block--month .month {
  font-weight: 500;
  font-size: 60px;
  letter-spacing: -0.01em;
}
.page--schedule .header-calendar .block--month .year {
  font-size: 24px;
}
.page--schedule .header-calendar li {
  display: inline-block;
}
.page--schedule .header-calendar li:not(:last-child) {
  margin-right: 0.5em;
}
.page--schedule .header-calendar li a {
  display: block;
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.page--schedule .list--category {
  margin: 0 auto 40px;
  font-size: 1.6rem;
}
.page--schedule .list--category li {
  display: inline-block;
}
.page--schedule .list--category li .form__checkbox input[type=checkbox] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.page--schedule .form--horizontal label {
  margin: 0;
}
.page--schedule .form__checkbox label p::before,
.page--schedule .form__checkbox :checked ~ p::before,
.page--schedule .form__checkbox label p::after {
  content: none;
}
.page--schedule .form__checkbox label p {
  padding: 0;
}
.page--schedule .form__checkbox label p {
  line-height: 1;
  min-width: 80px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  display: block;
  padding: 2px 1em;
  position: relative;
  cursor: pointer;
  color: #F8B500 !important;
  border: 1px solid #F8B500 !important;
  background-color: #fff;
  transition: 0.3s ease;
}
.page--schedule .form__checkbox label .cat17 {
  color: #ff8a7c !important;
  border: 1px solid #ff8a7c !important;
}
.page--schedule .form__checkbox label .cat18 {
  color: #60adfb !important;
  border: 1px solid #60adfb !important;
}
.page--schedule .form__checkbox label .cat19 {
  color: #f6ca46 !important;
  border: 1px solid #f6ca46 !important;
}
.page--schedule .form__checkbox label .cat20 {
  color: #f97bac !important;
  border: 1px solid #f97bac !important;
}
.page--schedule .form__checkbox label .cat21 {
  color: #65dbb0 !important;
  border: 1px solid #65dbb0 !important;
}
.page--schedule .form__checkbox label .cat22 {
  color: #adadad !important;
  border: 1px solid #adadad !important;
}
.page--schedule .form__checkbox label .cat30 {
  color: #fc6b5a !important;
  border: 1px solid #fc6b5a !important;
}
.page--schedule .form__checkbox li :checked + .cat1216 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1217 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1218 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1219 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1220 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1221 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1222 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1223 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1224 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked + .cat1225 {
  color: #F8B500 !important;
  border-color: #F8B500 !important;
}
.page--schedule .form__checkbox li :checked ~ p {
  background: #F8B500;
  color: #fff !important;
}
.page--schedule .form__checkbox li :checked ~ .cat17 {
  background: #ff8a7c;
  border: 1px solid #ff8a7c !important;
}
.page--schedule .form__checkbox li :checked ~ .cat18 {
  background: #60adfb;
  border: 1px solid #60adfb !important;
}
.page--schedule .form__checkbox li :checked ~ .cat19 {
  background: #f6ca46;
  border: 1px solid #f6ca46 !important;
}
.page--schedule .form__checkbox li :checked ~ .cat20 {
  background: #f97bac;
  border: 1px solid #f97bac !important;
}
.page--schedule .form__checkbox li :checked ~ .cat21 {
  background: #65dbb0;
  border: 1px solid #65dbb0 !important;
}
.page--schedule .form__checkbox li :checked ~ .cat22 {
  background: #adadad;
  border: 1px solid #adadad !important;
}
.page--schedule .form__checkbox li :checked ~ .cat30 {
  background: #fc6b5a;
  border: 1px solid #fc6b5a !important;
}
.page--schedule .form__checkbox li:nth-child(1) :checked ~ p {
  color: #fff !important;
  border-color: #F8B500 !important;
}
.page--schedule .category--17 {
  border: 1px solid #ff8a7c !important;
  color: #ff8a7c !important;
}
.page--schedule .category--18 {
  border: 1px solid #60adfb !important;
  color: #60adfb !important;
}
.page--schedule .category--19 {
  border: 1px solid #f6ca46 !important;
  color: #f6ca46 !important;
}
.page--schedule .category--20 {
  border: 1px solid #f97bac !important;
  color: #f97bac !important;
}
.page--schedule .category--21 {
  border: 1px solid #65dbb0 !important;
  color: #65dbb0 !important;
}
.page--schedule .category--22 {
  border: 1px solid #adadad !important;
  color: #adadad !important;
}
.page--schedule .category--30 {
  border: 1px solid #fc6b5a !important;
  color: #fc6b5a !important;
}
.page--schedule .schedule_entry_box {
  opacity: 1;
  transform: translateY(0);
}

/*  page--movie
------------------------------ */
.page--movie .list--contents .thumb {
  padding-top: 56.25%;
}
.page--movie .list--contents img:not(.blur) {
  background-size: cover;
}
.page--movie .btn .btn--sub {
  font-size: 0.85em;
}
.page--movie.page--detail .date {
  display: block;
}
.page--movie.page--detail .wrap,
.page--movie.page--detail .wrap--main {
  padding-top: 0;
}

.page--movie.new-movie .section--list .list--contents {
  margin-bottom: 0;
}
.page--movie.new-movie .section--list .category-tit {
  margin-bottom: 25px;
}
.page--movie.new-movie .section--list .block--latest-list,
.page--movie.new-movie .section--list .block--category-list {
  margin-bottom: 70px;
}
.page--movie.new-movie .section--list .list__more,
.page--movie.new-movie .section--list .detail__btn {
  margin: 0;
}
.page--movie.new-movie .section--list .list__more a,
.page--movie.new-movie .section--list .detail__btn a {
  border-bottom: 2px solid;
  padding: 0 0 3px;
}
.page--movie.new-movie .section--detail .block--player {
  background: none;
  height: 100%;
}
.page--movie.new-movie .section--detail .comment {
  margin-top: 25px;
  line-height: 1.6;
}
.page--movie.new-movie #new_movie.section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
  filter: drop-shadow(0px 7px 9px rgba(0, 0, 0, 0.1882352941));
  margin: 0;
  transform: translate(-50%, -50%);
}

/*  page--blog
------------------------------ */
.page--blog .cat.name {
  font-size: 10px;
  color: #fff;
  background-color: #F8B500;
  padding: 3px 6px;
  margin-right: 8px;
}
.page--blog .report .list--contents .thumb {
  padding-top: 75%;
}
.page--blog .list--contents li img:not(.blur) {
  background-size: cover;
}
.page--blog .memberblog .list--contents .thumb {
  padding-top: 100%;
}
.page--blog .memberblog .list--contents .tit {
  font-size: 14px;
}
.page--blog .block--pager {
  color: #F8B500;
}
.page--blog .block--pager .allow {
  fill: #F8B500;
}
.page--blog .section--detail .ph img {
  width: inherit !important;
}
.page--blog.page--detail .wrap,
.page--blog.page--detail .wrap--main {
  padding-top: 0;
}
.page--blog.page--detail .video-wrap {
  position: relative;
}
.page--blog.page--detail .block--player {
  margin-bottom: 2em;
}
.page--blog.page--detail .block--player .video-wrap {
  position: absolute;
}
.page--blog.report .section--detail .ph .headerPhoto {
  margin: 0 0 10px;
}
.page--blog.report .section--detail .titleText,
.page--blog.report .section--detail .btn,
.page--blog.report .section--detail .headerPhoto {
  display: none;
}
.page--blog.report .section--detail .textReport {
  margin: 0 auto 10px;
}
.page--blog.report .section--detail p.member {
  margin: 0 auto 10px;
  color: #F8B500;
  font-weight: bold;
}
.page--blog.report .section--detail .setlist {
  margin: 0 auto 40px;
}
.page--blog.report .section--detail .reportTitle {
  font-weight: bold;
  font-size: 1.1em;
  display: block;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
  color: #F8B500;
  padding: 3px 0;
  margin-bottom: 6px;
}
.page--blog.report .section--detail .report span.ph {
  margin-bottom: 1em;
}

/*  page--wallpaper
------------------------------ */
.page--wallpaper .notes {
  font-size: 0.85em;
  background: rgba(248, 181, 0, 0.2);
  padding: 20px 3%;
  border-radius: 3px;
}
.page--wallpaper .notes dt {
  font-weight: bold;
}
.page--wallpaper .point-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(248, 181, 0, 0.2);
  padding: 20px 3%;
  border-radius: 3px;
}
.page--wallpaper .point-wrap .list--point span {
  padding-left: 3em;
}
.page--wallpaper .point-wrap .necessary {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F8B500;
}
.page--wallpaper .list--contents .thumb {
  padding-top: 75%;
}
.page--wallpaper .list--contents img:not(.blur) {
  position: absolute;
}
.page--wallpaper .block--wp-size .tit {
  margin-bottom: 10px;
}
.page--wallpaper .list--wp-size {
  text-align: center;
  font-size: 14px;
}
.page--wallpaper .list--wp-size p {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #F8B500;
}
.page--wallpaper .list--wp-size p:not(:last-of-type) {
  margin-bottom: 1em;
}
.page--wallpaper .list--wp-size a {
  height: 100%;
  width: 100%;
  display: inline-block;
}
.page--wallpaper .section--detail .btn.download {
  margin-bottom: 10px;
}
.page--wallpaper .section--detail .tit {
  margin-bottom: 1em;
  font-weight: bold;
}
.page--wallpaper.page--detail .wrap,
.page--wallpaper.page--detail .wrap--main {
  padding-top: 0;
}

/*  page--disco
------------------------------ */
.page--disco .area--tit {
  background-color: #fff;
}
.page--disco .area--tit .section-tit {
  color: #F8B500;
}
.page--disco .block--pager .allow {
  fill: #F8B500;
}
.page--disco .section--list {
  border-top: 2px solid #F8B500;
}
.page--disco .section--list,
.page--disco .section--detail {
  background-color: #fff;
  border-bottom: 2px solid #F8B500;
}
.page--disco .list-tit {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.page--disco .jacket {
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
  position: relative;
}
.page--disco .jacket .ph {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.page--disco .jacket .ph.one {
  height: 100%;
}
.page--disco .jacket .ph.one > img {
  position: inherit;
}
.page--disco .jacket img {
  width: 100%;
  background-size: contain;
}
.page--disco .jacket .jacket-tit {
  text-align: center;
}
.page--disco .block--disc-detail .tit {
  font-weight: bold;
}
.page--disco .block--disc-detail .cat {
  text-align: center;
  font-weight: bold;
  border: 1px solid;
  color: #F8B500;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  margin-right: 8px;
  display: inline-block;
  line-height: 1;
}
.page--disco .block--disc-detail .text a {
  word-break: break-all;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--disco .block--disc-detail .text a:hover {
  text-decoration: none;
}
.page--disco .block--disc-detail .text .box--youtube {
  max-width: 400px;
  aspect-ratio: 16/9;
}
.page--disco .block--disc-detail .text .box--youtube iframe {
  width: 100%;
  height: 100%;
}
.page--disco.loaded .section--detail .jacket {
  opacity: 1;
  transform: translateY(0);
}
.page--disco.page--detail .wrap,
.page--disco.page--detail .wrap--main {
  padding-top: 0;
}

.page--feature .section--list,
.page--feature .section--detail {
  border-top: 2px solid #F8B500;
}
.page--feature .detail__btn {
  color: #F8B500;
}
.page--feature .detail__btn .allow {
  fill: #F8B500;
}

.page--entry_sp .area--tit {
  display: none;
}
.page--entry_sp .section--detail {
  padding: 0 5.5vw !important;
  background: none !important;
  border: none !important;
}
.page--entry_sp .section--detail [class^=block--] {
  margin-bottom: 100px;
}
.page--entry_sp .section--detail [class^=block--] table {
  border-collapse: collapse;
  background: #fff;
  width: 700px;
  margin: 0 auto 30px;
  border: 1px solid rgba(248, 181, 0, 0.5);
  box-sizing: border-box;
}
.page--entry_sp .section--detail [class^=block--] table tr {
  border-bottom: 1px solid rgba(248, 181, 0, 0.5);
}
.page--entry_sp .section--detail [class^=block--] table th {
  text-align: center;
  font-weight: 400;
  background-color: #FFFCF2;
}
.page--entry_sp .section--detail [class^=block--] table td {
  padding: 10px 3%;
  border-left: 1px solid rgba(248, 181, 0, 0.5);
}
.page--entry_sp .section--detail [class^=block--] table.list--payment td ul li {
  margin-bottom: 0.5em;
}
.page--entry_sp .section--detail [class^=block--] table .txt--sub {
  margin-bottom: 0.5em !important;
  line-height: normal;
}
.page--entry_sp .section--detail [class^=block--] .block-tit {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
  line-height: 0.8;
  color: #F8B500;
}
.page--entry_sp .section--detail .block--top .logo {
  text-align: center;
}
.page--entry_sp .section--detail .block--top .logo img {
  display: block;
}
.page--entry_sp .section--detail .block--top .logo .name {
  font-size: 14px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  color: #F8B500;
}
.page--entry_sp .section--detail .block--top .lead {
  margin-bottom: 0;
}
.page--entry_sp .section--detail .list--contents li {
  margin-bottom: 20px;
  background: #FFFCF2;
}
.page--entry_sp .section--detail .list--contents li:nth-child(even) {
  margin-right: 0;
}
.page--entry_sp .section--detail .list--contents li .tit {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #F8B500;
}
.page--entry_sp .section--detail .list--contents li .text {
  letter-spacing: 0.1em;
}
.page--entry_sp .section--detail .list--contents li .txt--sub {
  margin-bottom: 0.5em;
}
.page--entry_sp .section--detail .list--contents li .txt--sub:first-of-type {
  margin-top: 1em;
}
.page--entry_sp .note {
  margin-bottom: 30px;
}
.page--entry_sp .area--btn .list--inner {
  display: block;
  margin: 10px 0 0 1em;
  font-weight: normal;
}
.page--entry_sp .area--btn .list--inner li {
  margin-bottom: 10px;
}
.page--entry_sp .area--btn .btn:first-of-type {
  margin-bottom: 10px;
}
.page--entry_sp .area--btn .first_login a {
  width: 70%;
  height: auto;
  line-height: 1.4;
  padding: 20px 0;
  font-weight: bold;
}
.page--entry_sp .area--btn .first_login a:hover {
  background-color: #FFFCF2;
  box-shadow: 0 0 0px 2px #F8B500 inset;
}
.page--entry_sp .area--btn .btn.entry a {
  background-color: #fff2d1;
  color: #F8B500;
}
.page--entry_sp .area--btn .first_login a,
.page--entry_sp .area--btn .entry a {
  margin: 0 auto;
}

.page--support .list--support a {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--support .list--support a:hover {
  text-decoration: none;
}
.page--support .list--support a:hover {
  text-decoration: none;
}
.page--support .list--support dt {
  font-weight: bold;
  margin-bottom: 2px;
}
.page--support .list--support .list--inner {
  display: block;
  margin: 10px 0 0 1em;
}
.page--support .list--support .list--inner li {
  margin-bottom: 0.5em;
}
.page--support .list--support .list--inner li .tit {
  margin-bottom: 4px;
}

.page--support.inquiry .list--horizontal li {
  font-weight: bold;
  text-align: center;
  border: 2px solid #F8B500;
  color: #F8B500;
}

.page--contact .area--tit {
  top: -1em !important;
}
.page--contact .section--detail {
  background: #fff;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
}
.page--contact .block--attention {
  background: #FAFAFA;
  border-radius: 3px;
}
.page--contact .block--attention .list--inner li {
  margin-bottom: 1em;
  font-size: 0.85em;
}
.page--contact .block--form dt {
  font-weight: bold;
  margin-bottom: 2px;
}
.page--contact .block--form dd {
  margin-bottom: 1em;
}
.page--contact .btn.confirm {
  margin-top: 10px;
}
.page--contact .btn.confirm .btn--sub:hover {
  background: transparent;
  box-shadow: 0;
  opacity: 0.4;
}
.page--contact .block--error {
  background: rgba(255, 203, 190, 0.4);
  padding: 2% 3%;
  border-radius: 5px;
  margin-bottom: 30px;
  font-size: 0.85em;
}
.page--contact .block--error li:not(:last-child) {
  margin-bottom: 8px;
}

.page--faq .section--list,
.page--faq .section--detail {
  background-color: #fff;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
}
.page--faq .txt--no-data {
  font-size: 12px;
}
.page--faq .tit--category {
  font-weight: bold;
}
.page--faq .searchBox {
  position: relative;
  width: 80%;
}
.page--faq .searchBox input[type=text] {
  border: none;
  background: #FAFAFA;
  border-radius: 0;
  padding: 0.75em 1em;
}
.page--faq .searchBox input[type=submit] {
  width: 40px;
  font-family: FontAwesome;
  font-size: 17px;
  font-weight: bold;
  line-height: 40px;
  background: transparent;
  border: none;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  right: 3px;
  z-index: 2;
  transform: translateY(-50%);
  color: #281916;
}
@media screen and (min-width: 961px) {
  .page--faq .searchBox input[type=submit] {
    cursor: pointer;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--faq .searchBox input[type=submit]:hover {
    opacity: 0.4;
  }
}
.page--faq .section--list .btn {
  margin: 20px 0;
  text-align: center;
}
.page--faq .section--list .txt--sub {
  font-size: 0.8em;
}
.page--faq .list--faq .icon--q {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  color: #F8B500;
}
.page--faq .list--faq li {
  position: relative;
}
.page--faq .list--faq li:not(:last-child) {
  margin-bottom: 15px;
}
.page--faq .list--faq li .tit {
  margin: 0 0 0 0.5em;
}
.page--faq .list--faq li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
.page--faq .list--faq li a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 50%;
}
.page--faq .block--faq-detail {
  background-color: #FAFAFA;
  border-radius: 3px;
}
.page--faq .block--faq-detail dt {
  padding: 0 0 0.5em;
  margin: 0 0 0.5em;
  font-weight: bold;
  border-bottom: 2px solid #F8B500;
}
.page--faq .block--faq-detail dd a {
  display: inline;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--faq .block--faq-detail dd a:hover {
  text-decoration: none;
}
.page--faq .block--faq-detail .txt {
  padding-top: 0;
  margin-bottom: 0;
}
.page--faq .block--faq-detail .txt * {
  color: #281916 !important;
}
.page--faq .block--contact .txt {
  padding-top: 0;
}
.page--faq .block--contact p > a {
  position: relative;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}
.page--faq .block--contact p > a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: -0.5em;
  top: 50%;
}
.page--faq .block--contact p > a:hover {
  text-decoration: none;
}
.page--faq .block--contact p > a:after {
  transform: rotate(-135deg) translateY(4px);
}

.page--questionnaire .section--detail {
  border-top: 2px solid #F8B500;
}
.page--questionnaire label,
.page--questionnaire label:hover {
  transition: none;
  color: #281916;
}
.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;
  font-weight: bold;
  margin-bottom: 2px;
}
.page--questionnaire .form--post dd {
  margin-bottom: 1em;
}
.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__select::after {
  border-color: #281916;
  position: absolute;
  right: 0.75em;
}
.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: #281916;
  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: #F8B500;
}
.page--questionnaire .form--post input[type=radio]:checked:before {
  content: "\f192";
  color: #F8B500;
}
.page--questionnaire .form--post .input.postal_code {
  margin-left: 4px;
}
.page--questionnaire .block--error {
  margin: 0 0 30px;
  padding: 3%;
  border-radius: 3px;
  background: rgba(195, 21, 21, 0.2);
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--questionnaire .block--error {
    padding: 20px 5.5vw;
  }
}
.page--questionnaire .block--error li {
  position: relative;
  color: #c31515;
}
.page--questionnaire .section--detail .txt--basic a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--questionnaire .section--detail .txt--basic a:hover {
  text-decoration: none;
}
.page--questionnaire .section--detail .form {
  margin: 50px 0;
}
.page--questionnaire .section--detail .form--confirm dd {
  padding: 20px;
  background-color: rgba(136, 136, 136, 0.2);
  border-radius: 3px;
  margin-bottom: 30px;
}
.page--questionnaire .section--detail.comfirm .btn--sub:hover {
  background: none;
  color: #F8B500;
}

.page--whatsske48 .thumb > img {
  width: 100%;
}
.page--whatsske48 .section--detail [class^=block--] {
  margin-bottom: 70px;
}
.page--whatsske48 .section--detail [class^=block--] .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
.page--whatsske48 .section--detail [class^=block--] .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--whatsske48 .list--horizontal .thumb {
  margin: 0 0 14px;
}
.page--whatsske48 .block--produce .area-tit {
  line-height: 1.4;
}
.page--whatsske48 .block--produce .area-tit .small {
  font-size: 0.85em;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}
.page--whatsske48 .block--produce .block--inner {
  display: flex;
  margin: 0;
}

.page--profile .slick-slide img {
  width: 100%;
}
.page--profile .slick-track {
  transform: none !important;
}
.page--profile .tab_nav li {
  box-shadow: 0 0 0px 1px #F8B500 inset;
  color: #F8B500;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}
.page--profile .tab_nav li:hover, .page--profile .tab_nav li.slick-current {
  color: #fff;
  background: #F8B500;
}
.page--profile .block--team:not(:last-child) {
  margin-bottom: 70px;
}
.page--profile .list--horizontal > li {
  margin-bottom: 40px;
}
.page--profile .list--horizontal figure {
  margin: 0 0 14px;
}
.page--profile .list--horizontal figure > img {
  width: 100%;
}
.page--profile .list--horizontal figcaption {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}
.page--profile .list--horizontal figcaption span {
  display: block;
  font-size: 12px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
}
.page--profile .list--horizontal .item_link_nav {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
}
.page--profile .list--horizontal .item_link_nav li {
  margin: 0;
  box-shadow: 0 0 0px 1px #F8B500 inset;
}
.page--profile .list--horizontal .item_link_nav li a {
  text-align: center;
  color: #F8B500;
}
.page--profile .list--horizontal .item_link_nav li:not(:last-child) {
  margin-bottom: 8px;
}
.page--profile .list--horizontal .item_link_nav li:hover a {
  color: #fff;
  background: #F8B500;
}
.page--profile .list--horizontal .item_link_nav a {
  padding: 8px 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page--profile.page--member .block--inner .area-left .thumb > img {
  width: 100%;
}
.page--profile.page--member .block--inner .office a {
  font-size: 12px;
  text-decoration: underline;
}
@media screen and (min-width: 961px) {
  .page--profile.page--member .block--inner .office a:hover {
    text-decoration: none;
  }
}
.page--profile.page--member .block--inner .area-right dt {
  line-height: 1.3;
}
.page--profile.page--member .block--inner .area-right dt span {
  display: block;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
}
.page--profile.page--member .block--inner .area-right .unit_logo_area {
  color: #F8B500;
  font-weight: bold;
}
.page--profile.page--member .block--inner .area-right .unit_logo_area img {
  width: 100%;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--profile.page--member .block--inner .area-right .unit_logo_area a {
  display: block;
}
.page--profile.page--member .block--inner .area-right .unit_logo_area a:hover img {
  transform: translateY(-10px);
}
.page--profile.page--member .block--inner .list--sns {
  margin-bottom: 1em;
}
.page--profile.page--member .block--inner .list--sns > li {
  display: inline-block;
  vertical-align: middle;
}
.page--profile.page--member .block--inner .list--sns > li > img {
  width: 100%;
}
.page--profile.page--member .block--inner .list--sns > li a {
  display: block;
  width: 100%;
  height: 100%;
}
.page--profile.page--member .block--inner .amebablog {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
}
.page--profile.page--member .block--inner .list--data li {
  margin-bottom: 0.75em;
  padding: 0 0 0.75em 9em;
  border-bottom: 1px solid rgba(248, 181, 0, 0.5);
  position: relative;
}
.page--profile.page--member .block--inner .list--data span.data {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  left: 0.75em;
  color: #F8B500;
}

.page--akushu .txt--link {
  text-decoration: underline;
}
.page--akushu .txt--link:hover {
  text-decoration: none;
}
.page--akushu .underline {
  -webkit-text-decoration: underline 2px #F8B500;
          text-decoration: underline 2px #F8B500;
}
.page--akushu .attention {
  margin-top: 1em;
  font-size: 0.85em;
  background: #FFFCF2;
  padding: 3%;
}
.page--akushu .block--content {
  margin-top: 70px;
}
.page--akushu .block--zenkoku,
.page--akushu .block--theater {
  padding: 30px 4%;
  border: 2px solid #F8B500;
}
.page--akushu .block-tit_area .block-tit,
.page--akushu .block-tit_area .sub-tit {
  text-align: center;
}
.page--akushu .block-tit_area .block-tit {
  letter-spacing: 0.1em;
  color: #F8B500;
  font-weight: bold;
}
.page--akushu .block-tit_area .sub-tit {
  line-height: 1.4;
  font-weight: bold;
}
.page--akushu .step_area dt {
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.page--akushu .step_area dt span {
  background: #F8B500;
  color: #fff;
  padding: 3px 4px 4px;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  margin-right: 0.5em;
  line-height: 1;
  letter-spacing: 0.04em;
  display: inline-block;
  border-radius: 2px;
  font-size: 0.75em;
  vertical-align: text-top;
}
.page--akushu .step_area dd:not(:last-child) {
  margin-bottom: 30px;
}
.page--akushu .step_area .flow {
  position: relative;
}
.page--akushu .step_area .flow:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.page--akushu .step_area .flow:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-style: solid;
  border-width: 1em 1em 0 1em;
  border-color: #F8B500 transparent transparent transparent;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
}
.page--akushu .block--links a {
  width: 100%;
  font-weight: bold;
  border-radius: 3px;
}
.page--akushu .block--links svg {
  fill: #fff;
  width: 30px;
  height: 15px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.page--setlist .tab_nav li {
  text-align: center;
  font-weight: bold;
  border: 1px solid;
  color: #F8B500;
  letter-spacing: 0.08em;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}
.page--setlist .tab_nav li a {
  width: 100%;
  height: 100%;
  display: block;
}
.page--setlist .tab_nav li a:hover {
  color: #fff;
  background: #F8B500;
}
.page--setlist .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
.page--setlist .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--setlist .year {
  font-weight: bold;
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(40, 25, 22, 0.4);
}
.page--setlist .list--setlist {
  margin-bottom: 70px;
}
.page--setlist .list--setlist .tit {
  color: #F8B500;
  position: relative;
  cursor: pointer;
  font-size: inherit !important;
  padding-right: 0.5em;
  margin-bottom: 0.5em !important;
  position: relative;
}
.page--setlist .list--setlist .tit::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #F8B500;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.page--setlist .list--setlist .tit:after {
  border-width: 2px;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  top: 50%;
  right: 0;
}
.page--setlist .list--setlist dd {
  display: none;
  font-size: 14px;
  margin-bottom: 40px;
}
.page--setlist .list--setlist .tit.open:after {
  transform: rotate(135deg);
}

.page--ticket .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
.page--ticket .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--ticket .list--horizontal figcaption {
  line-height: 1.3;
  font-size: 14px;
}
.page--ticket .list--horizontal img {
  width: 100%;
  margin: 0 0 14px;
  border: 1px solid rgba(248, 181, 0, 0.5);
}

.page--links .list--horizontal .thumb img {
  width: 100%;
}

.page--goods .list--horizontal figcaption {
  line-height: 1.3;
  font-size: 14px;
  text-align: center;
}
.page--goods .list--horizontal .thumb {
  margin: 0 0 14px;
}
.page--goods .list--horizontal .thumb img {
  width: 100%;
}

.page--aboutblog .list--horizontal li,
.page--aboutmovie .list--horizontal li,
.page--fancommunity .list--horizontal li {
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.page--aboutblog .list--horizontal li:nth-child(1),
.page--aboutmovie .list--horizontal li:nth-child(1),
.page--fancommunity .list--horizontal li:nth-child(1) {
  background: #fc9cc1;
  box-shadow: 0 0 0 5px #fc9cc1 inset, 0 0 0 7px #fff inset;
}
.page--aboutblog .list--horizontal li:nth-child(2),
.page--aboutmovie .list--horizontal li:nth-child(2),
.page--fancommunity .list--horizontal li:nth-child(2) {
  background: #60adfb;
  box-shadow: 0 0 0 5px #60adfb inset, 0 0 0 7px #fff inset;
}
.page--aboutblog .list--horizontal li:nth-child(3),
.page--aboutmovie .list--horizontal li:nth-child(3),
.page--fancommunity .list--horizontal li:nth-child(3) {
  background: #9ce3fc;
  box-shadow: 0 0 0 5px #9ce3fc inset, 0 0 0 7px #fff inset;
}
.page--aboutblog .list--horizontal li:nth-child(4),
.page--aboutmovie .list--horizontal li:nth-child(4),
.page--fancommunity .list--horizontal li:nth-child(4) {
  background: #fc9f9c;
  box-shadow: 0 0 0 5px #fc9f9c inset, 0 0 0 7px #fff inset;
}
.page--aboutblog .list--horizontal li:nth-child(5),
.page--aboutmovie .list--horizontal li:nth-child(5),
.page--fancommunity .list--horizontal li:nth-child(5) {
  background: #2b5c9c;
  box-shadow: 0 0 0 5px #2b5c9c inset, 0 0 0 7px #fff inset;
}
.page--aboutblog .list--horizontal li:nth-child(6),
.page--aboutmovie .list--horizontal li:nth-child(6),
.page--fancommunity .list--horizontal li:nth-child(6) {
  background: #89dc89;
  box-shadow: 0 0 0 5px #89dc89 inset, 0 0 0 7px #fff inset;
}

.page--mail .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 2em;
  border-top: double 4px #281916;
  border-bottom: double 4px #281916;
}
.page--mail .txt--basic.bold {
  color: #F8B500;
  border-top: 1px solid #F8B500;
  border-bottom: 1px solid #F8B500;
}
.page--mail .section--inner {
  background: #FFFCF2;
  padding: 20px 2%;
}
.page--mail .section--inner .block--appli,
.page--mail .section--inner .block--web {
  border: 1px solid #F8B500;
  border-radius: 7px;
  background-color: #fff;
  padding: 30px 2%;
}
.page--mail .section--inner .download {
  border: double 4px #F8B500;
  color: #F8B500;
  text-align: center;
}
.page--mail .app_info_area {
  padding: 10px 5%;
}
.page--mail .app_info_area .show_item .qr {
  margin-bottom: 1em;
}
.page--mail .app_info_area .show_item a {
  display: block;
}
.page--mail .table-tit {
  margin: 0 auto 0.5em;
  text-align: center;
}
.page--mail .table--hikaku {
  margin: 0 auto;
  border-collapse: collapse;
}
.page--mail .table--hikaku tr:nth-child(odd) {
  background: rgba(248, 181, 0, 0.2);
}
.page--mail .table--hikaku thead th {
  text-align: center;
  font-weight: bold;
}
.page--mail .table--hikaku .item_tit {
  font-weight: bold;
}
.page--mail .table--hikaku td {
  text-align: center;
}
.page--mail .table--hikaku th,
.page--mail .table--hikaku td {
  border: 1px solid rgba(248, 181, 0, 0.4);
  padding: 10px 2%;
}
.page--mail .underline {
  -webkit-text-decoration: underline solid #F8B500 4px;
          text-decoration: underline solid #F8B500 4px;
}
.page--mail .voice {
  background: #FFFCF2;
  padding: 3%;
  margin-bottom: 1em;
}
.page--mail .block--decome .oh {
  margin-top: 30px;
}
.page--mail .block--decome img {
  margin: 0 auto;
  display: block;
}

.page--fanclub .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
.page--fanclub .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--fanclub .block--tit_logo {
  border: 1px solid #f8b600;
  border-radius: 7px;
}
.page--fanclub .block--tit_logo img {
  width: 100%;
}
.page--fanclub .block--tokuten .figure > img {
  width: 100%;
}
.page--fanclub .block--detail_info {
  background: #FFFCF2;
  padding: 3%;
}
.page--fanclub .list--about dt {
  font-weight: bold;
}

.page--theater .area--link {
  text-align: center;
  background: #fef8e8;
  padding: 3%;
}
.page--theater .area--link .list--link li {
  text-align: center;
  font-weight: bold;
  display: inline-block;
  background: #F8B500;
  color: #fff;
  border-radius: 3px;
  padding: 0 2%;
  margin: 5px 0 5px;
}
.page--theater .area--link .list--link a {
  display: block;
  width: 100%;
  height: 100%;
}
.page--theater .block--rule .block-tit {
  border-radius: 3px;
  padding: 3%;
  text-align: center;
  color: #fff;
  background: #F8B500;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
.page--theater .block--rule .block-tit::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 0;
}
.page--theater .block--rule .block-tit:after {
  top: 50%;
  right: 1.15em;
  border-width: 2px;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--theater .block--rule .block-tit.open:after {
  transform: rotate(135deg);
}
.page--theater .block--rule .list--support {
  font-size: 0.85em;
  display: none;
  padding: 3%;
}
.page--theater .block--rule .list--support:last-child {
  margin-bottom: 0;
}
.page--theater .block--rule .list--support li {
  margin-bottom: 0.75em;
}
.page--theater .block--rule .list--support li > p {
  padding-left: 1em;
}
.page--theater .block--rule .list--inner {
  font-size: 0.85em;
}
.page--theater .block--access .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
.page--theater .block--access .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--theater .block--access .iframe_box iframe {
  width: 100%;
}
.page--theater .block--access .detail .list--detail dt {
  font-weight: bold;
  color: #F8B500;
  font-size: 0.85em;
}
.page--theater .block--access .detail .list--detail dd {
  margin-bottom: 1em;
}
.page--theater .block--setlist .list--team {
  text-align: center;
}
.page--theater .block--setlist .list--team li {
  background: #FFFCF2;
  padding: 20px 3% 3%;
}
.page--theater .block--setlist .list--team .list-tit {
  color: #F8B500;
  font-weight: bold;
}
.page--theater .block--setlist .list--team .thumb {
  margin: 10px 0 14px;
  overflow: hidden;
  position: relative;
}
.page--theater .block--setlist .list--team .thumb::before {
  content: "";
  display: block;
  width: 40vw;
  height: 40vw;
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(248, 181, 0, 0.4);
  transform: translate(-50%, -50%) scale(0);
  z-index: 3;
  border-radius: 50%;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--theater .block--setlist .list--team .thumb > img {
  width: 100%;
  display: block;
}

.page--theater.join .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}
.page--theater.join .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--theater.join .txt--link {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--theater.join .txt--link:hover {
  text-decoration: none;
}
.page--theater.join .list--ticket {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page--theater.join .list--ticket .tit-ticket {
  font-weight: bold;
  color: #F8B500;
  text-align: center;
}
.page--theater.join .list--ticket li {
  background: rgba(248, 181, 0, 0.1);
  padding: 10px 3%;
  border-radius: 3px;
}

.page--theater.seat .block--txt {
  padding: 30px 4%;
  border: 2px solid #F8B500;
}
.page--theater.seat .block--txt ul li:not(:last-child) {
  margin-bottom: 1em;
}
.page--theater.seat .block--txt p a,
.page--theater.seat .block--txt li a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  color: #F8B500;
}
.page--theater.seat .block--txt p a:hover,
.page--theater.seat .block--txt li a:hover {
  text-decoration: none;
}
.page--theater.seat .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.5em;
}
.page--theater.seat .block-tit::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  background: #F8B500;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.page--theater.seat .block--seat {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
.page--theater.seat .block--seat figure {
  margin: 0 auto 10px;
  width: 80%;
}
.page--theater.seat .block--seat img {
  display: block;
}
.page--theater.seat .block--seat figcaption {
  font-size: 0.85em;
  margin-bottom: 30px;
}

.page--appli .block-tit {
  font-weight: bold;
  padding-left: 1em;
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 2em;
  background: #F8B500;
  color: #fff;
  border-radius: 3em;
  display: inline-block;
}
.page--appli .thumb {
  margin-bottom: 1em;
}

.page--error .section--list,
.page--error .section--detail {
  background: #fff;
  border-top: 2px solid #F8B500;
  border-bottom: 2px solid #F8B500;
}
.page--error .section--list .detail__btn,
.page--error .section--detail .detail__btn {
  color: #F8B500;
}
.page--error .section--list .detail__btn svg,
.page--error .section--detail .detail__btn svg {
  fill: #F8B500;
}

/* .page--first_login
------------------------------ */
/* terms popup*/
#terms {
  display: none;
}

.popup-inner {
  padding: 120px 0 0;
  color: #fff;
}
.popup-inner .terms_check {
  text-align: center;
  margin: 0 0 20px;
}
.popup-inner .terms_check .form__checkbox {
  display: inline-block;
}
.popup-inner .list--support li {
  margin-bottom: 1.5em;
}
.popup-inner .list--inner > li {
  margin: 0 0 1.5em;
  text-indent: -1em;
  padding-left: 1em;
}
.popup-inner .btn {
  opacity: 0.6;
}
.popup-inner .btn .btn--main {
  pointer-events: none;
}
.popup-inner .btn.checked {
  opacity: 1;
}
.popup-inner .btn.checked .btn--main {
  pointer-events: auto;
}
.popup-inner .form__checkbox label p {
  position: relative;
}
.popup-inner .form__checkbox label p:before, .popup-inner .form__checkbox label p:after {
  content: "";
  display: inline-block;
  position: absolute;
}
.popup-inner .form__checkbox label p:before {
  background: #fff;
  width: 1em;
  height: 1em;
  border: 1px solid #888;
  margin: -0.6em 0 0;
  top: 50%;
  left: -1.5em;
}
.popup-inner .form__checkbox label p:after {
  width: 0.7em;
  height: 0.4em;
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  top: 44%;
  left: -1.25em;
  transform: rotate(-45deg);
  opacity: 0;
}
.popup-inner .form__checkbox :checked ~ p::before {
  background: #fff;
  border-color: #000;
}
.popup-inner .form__checkbox :checked ~ p::after {
  top: 47%;
  opacity: 1;
}

.modaal-content-container {
  font-size: 15px;
}

.modaal-content-container .box .tit {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 18px;
}

.page--first_login .wrap--main {
  padding-top: 0;
}
.page--first_login .section--detail.first_login {
  border-top: 0;
}
.page--first_login .section--detail.first_login .section-tit {
  letter-spacing: 0.01em;
  text-align: center;
  display: block;
}
.page--first_login .section--detail.first_login .section-tit .sitename {
  font-size: 18px;
  display: block;
}
.page--first_login .section--detail.first_login .section-tit span.attention {
  letter-spacing: 0.01em;
  display: block;
  color: #e63a37;
  font-size: 18px;
  margin: 0 auto 50px;
  border-bottom: 2px solid #e63a37;
  padding: 0 1%;
  width: 11em;
}
.page--first_login .section--detail.first_login .block-tit {
  color: #F8B500;
  text-align: center;
}
.page--first_login .section--detail.first_login .area--link {
  text-align: center;
  background: #fef8e8;
  padding: 3%;
}
.page--first_login .section--detail.first_login .area--link .list--link li {
  text-align: center;
  font-weight: bold;
  display: inline-block;
  background: #F8B500;
  color: #fff;
  border-radius: 3px;
  padding: 0 2%;
}
.page--first_login .section--detail.first_login .area--link .list--link li.already {
  background-color: #f89400;
}
.page--first_login .section--detail.first_login .area--link .list--link a {
  display: block;
  width: 100%;
  height: 100%;
}
.page--first_login .section--detail.first_login .block--pid {
  margin-top: 30px;
  border: 2px solid #F8B500;
}
.page--first_login .section--detail.first_login .block--pid > .txt--basic:first-child {
  font-weight: bold;
  color: #F8B500;
  background: #fff;
}
.page--first_login .section--detail.first_login .txt--basic a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.page--first_login .section--detail.first_login .txt--basic a:hover {
  text-decoration: none;
}
.page--first_login .section--detail.first_login .txt--sub {
  margin-bottom: 1em;
}
.page--first_login .txt--link a {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}
.page--first_login .txt--link a:hover {
  text-decoration: none;
}
.page--first_login .txt--link a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #281916;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: -0.75em;
  top: 0.25em;
}
.page--first_login .block--solution {
  margin-bottom: 50px;
  padding: 20px;
  border: 2px solid #F8B500;
}
.page--first_login .block--solution .inner {
  margin: 0.5em 0 0 1em;
  display: block;
}
.page--first_login .block--attention {
  background: #fdf7f7;
  padding: 20px;
  margin: 1em 0;
}
.page--first_login .block--attention .tit {
  font-weight: bold !important;
}
.page--first_login .block--attention ul {
  margin-top: 15px;
}
.page--first_login .block--attention ul li {
  position: relative;
}
.page--first_login .block--attention ul li:first-of-type {
  margin-bottom: 8px;
}
.page--first_login .block--attention .txt--link {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}
.page--first_login .block--attention .txt--link:hover {
  text-decoration: none;
}
.page--first_login .block--attention .txt--link::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #e63a37;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  vertical-align: middle;
  position: absolute;
  right: -0.75em;
  top: 0.25em;
}
.page--first_login .block--attention .fas {
  margin-right: 0.25em;
}
.page--first_login .block--step.already .block-tit {
  color: #f89400;
}
.page--first_login .block--step.already .list-tit {
  border-bottom: 1px solid #f89400;
}
.page--first_login .block--step.already .list-tit > span {
  background-color: #f89400;
}
.page--first_login .block--step.already .list--step > li {
  background-color: rgba(248, 148, 0, 0.1);
}
.page--first_login .block--step .list-tit {
  font-weight: 600;
  padding-bottom: 0.75em;
  border-bottom: 1px solid #F8B500;
  margin-bottom: 0.75em;
}
.page--first_login .block--step .list-tit > span {
  background: #F8B500;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 1px 4px 2px;
  margin-right: 0.5em;
}
.page--first_login .block--step .list--step > li {
  margin-bottom: 30px;
  background: #FFFCF2;
  padding: 32px 4%;
}
.page--first_login .block--step .list--step > li .thumb {
  width: 90%;
  margin: 30px auto;
  border: 1px solid rgba(40, 25, 22, 0.2);
  line-height: 0;
}
.page--first_login .block--step .list--step > li .thumb img {
  width: 100%;
}
.page--first_login .block--step .block {
  margin: 0.5em 0;
}
.page--first_login .block--step .block:not(:last-of-type) {
  margin: 20px 0 30px;
}
.page--first_login .block--step .block > .tit {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 1em;
}
.page--first_login .block--step .block > .tit:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background: #F8B500;
  display: block;
  border-radius: 50%;
}

@keyframes drawerVisible {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  a {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  .date,
  .commingsoon {
    font-size: 12px;
  }
  .content--body {
    display: flex;
  }
  .wrap--main {
    width: calc(100% - 170px);
    position: relative;
    left: 170px;
    padding: 70px 0 0;
  }
  .video {
    cursor: pointer;
  }
  .list--bnr li a {
    position: relative;
    cursor: pointer;
    line-height: 0;
  }
  .list--bnr li a img {
    width: 100%;
  }
  .list--error li {
    font-size: 13px;
  }
  .list--login li a {
    padding: 0 20px;
  }
  .list--info .no-data {
    text-align: center;
  }
  .list--info li {
    position: relative;
  }
  .list--info li:not(:last-child) {
    margin-bottom: 15px;
  }
  .list--info li:hover {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transform: translateX(10px) !important;
  }
  .list--info li a {
    padding: 5px 0;
  }
  .list--info .new {
    font-size: 10px;
    margin-left: 3px;
  }
  .list--info .cat {
    margin-right: 10px;
  }
  .list--schedule .date {
    text-align: center;
  }
  .list--schedule li:hover {
    transform: none !important;
  }
  .list--schedule a:hover {
    transform: translateX(10px) !important;
  }
  .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list--contents li {
    width: 100%;
  }
  .list--contents li .list__txt .date {
    margin-bottom: 5px;
  }
  .list--contents li .list__txt .tit {
    font-size: 14px;
  }
  .list--contents li.new:before {
    top: -15px;
    left: -15px;
    width: 54px;
    height: 54px;
  }
  .list--discography {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list--discography .cat {
    margin-right: 10px;
    white-space: nowrap;
  }
  .list--discography .date {
    margin-bottom: 10px;
  }
  .list--contents .list__txt,
  .list--discography .list__txt {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .list--contents .thumb,
  .list--discography .thumb {
    margin-bottom: 18px;
  }
  .list--contents .thumb > img,
  .list--discography .thumb > img {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .list--contents .thumb:before,
  .list--discography .thumb:before {
    content: "";
    display: block;
    width: 60vw;
    height: 60vw;
    position: absolute;
    background: #F8B500;
    opacity: 0.5;
    border-radius: 50%;
    transform-origin: center;
    transition: all 0.8s 0s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%) scale(0);
  }
  .list--contents a:hover .thumb:before,
  .list--discography a:hover .thumb:before {
    transform: translate(-50%, -50%) scale(1.2);
  }
  .list--contents a:hover .thumb img:not(.blur),
  .list--discography a:hover .thumb img:not(.blur) {
    transform: scale(1.1);
    transform-origin: center;
    z-index: 2;
  }
  .no--data {
    text-align: center;
  }
  .block--category {
    width: 160px;
    margin: 0 0 50px auto;
  }
  .block--category.ticket .list--status-ticket {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .block--category.ticket .list--status-ticket .current {
    font-size: 18px;
  }
  .block--category.ticket .list--status-ticket .link--text-sub {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .block--category.ticket .list--status-ticket .link--text-sub:hover {
    transform: translateX(10px);
  }
  .detail__btn,
  .list__more {
    font-size: 16px;
    margin: 110px 0 0;
  }
  .detail__btn a,
  .list__more a {
    padding: 5px 15px 5px 0;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .detail__btn .allow,
  .list__more .allow {
    width: 30px;
    height: 8px;
    display: inline-block;
    margin-left: 15px;
  }
  .list__more:hover a {
    transform: translateX(10px);
  }
  .detail__btn:hover a {
    transform: translateX(-10px);
  }
  .block--pager {
    font-size: 18px;
  }
  .block--pager .pager__item--newer:hover a {
    transform: translateX(-10px);
  }
  .block--pager .pager__item--older:hover a {
    transform: translateX(10px);
  }
  .block--pager .pager__item--other:hover,
  .block--pager .pager__item--top:hover {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
  }
  .wrap--side {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .wrap--side .logo {
    width: 90px;
    position: relative;
    top: 40px;
    margin: 0 auto;
  }
  .wrap--side .logo a {
    display: block;
  }
  .wrap--side .menu--side {
    position: fixed;
    top: 0;
    left: 0;
    width: 170px;
    height: 100vh;
    border-right: 2px solid #F8B500;
    background: #fff;
    z-index: 100;
  }
  .wrap--side .menu-login {
    background: #F8B500;
    padding: 30px 0;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .wrap--side .menu-login .tit {
    font-size: 14px;
    background: #fff;
    width: 120px;
    margin: 0 auto;
    border-radius: 3em;
    color: #F8B500;
  }
  .wrap--side .menu-login .site-tit {
    margin: 12px auto 4px;
    font-size: 11px;
  }
  .wrap--side .menu-login .family-tit {
    padding-top: 8px;
  }
  .wrap--side .menu-login .nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .wrap--side .menu-login .nav li {
    padding: 6px;
    margin: 0 2px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  .wrap--side .menu-login .nav li a {
    transition: none;
  }
  .wrap--side .menu-login .nav li:hover {
    opacity: 0.4;
  }
  .wrap--side .menu-official {
    width: 86%;
    margin-bottom: 60px;
  }
  .wrap--side .menu-official .g-nav li {
    display: inline-block;
    font-size: 22px;
    margin: 0 20px 10px 0 !important;
  }
  .wrap--side .menu-fanclub {
    width: 86%;
    margin-bottom: 60px;
  }
  .wrap--side .menu-fanclub .label_fanclub {
    color: #F8B500;
    font-size: 12px;
  }
  .wrap--side .menu-fanclub .label_nav {
    color: #fff;
    background: #F8B500;
    display: inline-block;
    padding: 3px 8px;
    letter-spacing: 0.01em;
    border-radius: 2px;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .wrap--side .menu-fanclub .g-nav li {
    display: inline-block;
    font-size: 22px;
    margin: 0 20px 10px 0 !important;
  }
  .wrap--side .menu-family {
    width: 86%;
    margin-bottom: 60px;
  }
  .wrap--side .menu-family .label_family {
    color: #fc9cc1;
    font-size: 12px;
  }
  .wrap--side .menu-family .label_nav {
    color: #fff;
    background: #fc9cc1;
    display: inline-block;
    padding: 3px 8px;
    letter-spacing: 0.01em;
    border-radius: 2px;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .wrap--side .menu-family .g-nav li {
    display: inline-block;
    font-size: 22px;
    margin: 0 20px 10px 0 !important;
  }
  .wrap--side .side--nav {
    padding: 100px 5.5vw 40px;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: calc(100vw - 170px);
    height: 100vh;
    background: #FFFCF2;
    margin-left: 170px;
    pointer-events: none;
    opacity: 0;
    z-index: 99;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
  }
  .wrap--side .side--nav .nav--inner {
    opacity: 0;
    transition: opacity 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .wrap--side .side--nav .g-nav a {
    padding: 3px 0;
    position: relative;
  }
  .wrap--side .side--nav .g-nav a:hover {
    opacity: 0.4;
  }
  .wrap--side .side--nav .g-nav span {
    display: block;
    line-height: 1;
    font-size: 11px;
    opacity: 0.6;
  }
  .wrap--side .side--nav .g-nav li {
    color: #656262;
  }
  .nav-fc li {
    font-size: 22px;
  }
  .nav-fc li:hover a {
    color: #F8B500;
  }
  body.drawer-visible .nav--inner {
    animation: drawerVisible 0.8s ease 0.2s forwards;
  }
  body.drawer-visible .side--nav {
    display: block;
    opacity: 1 !important;
    pointer-events: auto;
    overflow-y: scroll;
  }
  .swiper-wrapper {
    width: 100%;
    margin: 0 0 0 5.5vw;
  }
  .swiper-button-prev,
  .swiper-button-next {
    opacity: 0;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .swiper-button-prev.swiper-button-disabled:after,
  .swiper-button-next.swiper-button-disabled:after {
    opacity: 0.4;
  }
  .swiper-container {
    padding: 70px 0;
  }
  .swiper-container:hover .swiper-button-prev, .swiper-container:hover .swiper-button-next {
    opacity: 1;
  }
  .swiper-slide {
    width: 100%;
    height: 100%;
    line-height: 280px;
  }
  .page--home {
    /* common */
    /* section--keyvisual */
    /* section--banner,.section--fcbanner */
    /* section--info */
    /* section--blog */
    /* section--movie */
    /* section--report */
    /* section--video */
    /* section--family */
    /* section--links */
  }
  .page--home .section-tit {
    font-size: 36px;
    display: inline-block;
    margin-bottom: 40px;
  }
  .page--home .area--tit .badge {
    margin-left: 20px;
  }
  .page--home .section--keyvisual {
    padding: 0 5.5vw;
    margin-bottom: 110px;
  }
  .page--home .section--keyvisual .flex-wrap {
    height: 80vh;
    margin-bottom: 50px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--home .block--favmember {
    height: 100%;
    width: 46%;
    margin-right: 4%;
  }
  .page--home .block--favmember a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .page--home .block--favmember a:hover .thumb img {
    transform: scale(1.05);
  }
  .page--home .block--favmember .thumb {
    overflow: hidden;
    margin-bottom: 5px;
  }
  .page--home .block--favmember .thumb img {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--home .block--favmember .block-tit {
    font-size: 13px;
  }
  .page--home .block--schedule {
    height: 100%;
    width: 50%;
    padding: 36px 40px;
  }
  .page--home .block--schedule .area--tit {
    color: #fff;
    background-color: #F8B500;
    display: inline-block;
    margin-bottom: 40px;
    padding: 8px 10px;
    transform: translateX(-40px);
  }
  .page--home .block--schedule .area--tit .block-tit {
    font-size: 16px;
  }
  .page--home .block--schedule .area--tit .block-tit:before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    position: absolute;
    top: 7px;
  }
  .page--home .block--schedule .area--tit .date {
    font-size: 31px;
    letter-spacing: -0.01em;
    display: inline-block;
  }
  .page--home .block--schedule .list--info {
    max-height: 70%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: -1;
  }
  .page--home .block--schedule .list--info::-webkit-scrollbar-thumb {
    background: #F8B500;
    border-radius: 5px;
  }
  .page--home .block--schedule .list--info::-webkit-scrollbar-track {
    background-color: rgba(248, 181, 0, 0.1);
  }
  .page--home .block--schedule .list--info a {
    display: flex;
    align-items: baseline;
  }
  .page--home .block--schedule .list--info .tit {
    font-size: 15px;
  }
  .page--home .block--schedule li.no-data {
    margin: 100px 0;
  }
  .page--home .block--schedule li.no-data:hover {
    transform: translateX(0) !important;
  }
  .page--home .block--schedule .cat {
    min-width: 80px;
    font-size: 10px;
    padding: 2px 0;
    margin-right: 22px;
  }
  .page--home .block--schedule .list__more {
    position: absolute;
    bottom: 40px;
    right: 36px;
    margin: 0;
  }
  .page--home .block--schedule .list__more a {
    z-index: 2;
    position: relative;
  }
  .page--home .block--schedule .list__more:before {
    display: block;
    content: "";
    display: block;
    width: 200%;
    height: 50px;
    position: absolute;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0));
    position: absolute;
    top: -30px;
    left: -100%;
    z-index: 0;
  }
  .page--home .block--nextlive, .page--home .block--topics {
    box-shadow: 0 0 0 9px #F8B500 inset, 0 0 0 11px #fff inset;
  }
  .page--home .block--nextlive .block-tit, .page--home .block--topics .block-tit {
    color: #fff;
    background: #F8B500;
    font-size: 15px;
    padding: 4px 12px;
    position: absolute;
    top: 5px;
    left: 2.5%;
    line-height: 0.5 !important;
  }
  .page--home .block--nextlive {
    margin-bottom: 40px;
  }
  .page--home .block--nextlive .date, .page--home .block--nextlive .tit {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--home .block--nextlive:hover .date, .page--home .block--nextlive:hover .tit {
    transform: translateX(10px);
  }
  .page--home .block--nextlive a {
    padding: 35px 30px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .block--nextlive .date {
    display: inline-block;
    font-size: 34px;
    margin-right: 34px;
  }
  .page--home .block--nextlive .date .week {
    font-size: 16px;
    margin-left: 8px;
  }
  .page--home .block--topics {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 35px 30px;
  }
  .page--home .block--topics .list--topics li:not(.no-data):hover {
    transform: translateX(10px);
  }
  .page--home .block--topics a {
    padding: 5px 0;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .block--topics .date {
    font-size: 24px;
    margin-right: 20px;
  }
  .page--home .block--topics .date .week {
    font-size: 16px;
    margin-left: 8px;
  }
  .page--home .block--topics + .list__more {
    margin: 20px 0 0;
  }
  .page--home .block--topics + .list__more a {
    padding: 5px 0 5px 0;
  }
  .page--home .section--banner,
  .page--home .section--fcbanner {
    margin: 70px 0;
  }
  .page--home .section--banner .swiper-container,
  .page--home .section--fcbanner .swiper-container {
    padding: 10px 0;
  }
  .page--home .section--banner .list--bnr li,
  .page--home .section--fcbanner .list--bnr li {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--home .section--banner .list--bnr li:hover,
  .page--home .section--fcbanner .list--bnr li:hover {
    transform: scale(1.02) translateY(-5px);
  }
  .page--home .section--info,
  .page--home .section--fcinfo {
    position: relative;
    padding: 66px 5.5vw 40px;
  }
  .page--home .section--info .area--tit,
  .page--home .section--fcinfo .area--tit {
    position: absolute;
    top: -1.5em;
    background-color: #fff;
    padding: 0 10px;
  }
  .page--home .section--info .area--tit .section-tit,
  .page--home .section--fcinfo .area--tit .section-tit {
    color: #F8B500;
  }
  .page--home .section--blog,
  .page--home .section--movie,
  .page--home .section--report,
  .page--home .section--family,
  .page--home .section--links {
    padding: 70px 5.5vw;
  }
  .page--home .section--blog .list--contents li.new:before,
  .page--home .section--movie .list--contents li.new:before,
  .page--home .section--report .list--contents li.new:before,
  .page--home .section--family .list--contents li.new:before,
  .page--home .section--links .list--contents li.new:before {
    top: -12px;
    left: -12px;
  }
  .page--home .section--blog .list--contents li.new:after,
  .page--home .section--movie .list--contents li.new:after,
  .page--home .section--report .list--contents li.new:after,
  .page--home .section--family .list--contents li.new:after,
  .page--home .section--links .list--contents li.new:after {
    top: -11px;
    left: -11px;
  }
  .page--home .section--blog .list--contents li {
    width: 23.5%;
  }
  .page--home .section--blog .list--contents li:not(:last-child) {
    margin-right: 2%;
  }
  .page--home .section--blog .list--contents .thumb:before {
    content: "";
    display: block;
    width: 500px;
    height: 500px;
    position: absolute;
  }
  .page--home .section--blog .list--contents .date {
    margin-bottom: 5px;
  }
  .page--home .section--movie .section--inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--movie .area--tit {
    margin-right: 10vw;
    width: 28vw;
  }
  .page--home .section--movie .list--contents li {
    width: 32%;
  }
  .page--home .section--movie .list--contents li:not(:last-child) {
    margin-right: 2%;
  }
  .page--home .section--movie .list--contents .thumb:before {
    content: "";
    display: block;
    width: 600px;
    height: 600px;
    position: absolute;
  }
  .page--home .section--movie .list--contents .list__txt .date {
    margin-bottom: 5px;
  }
  .page--home .section--report .list--contents li {
    width: 32%;
  }
  .page--home .section--report .list--contents li:not(:last-child) {
    margin-right: 2%;
  }
  .page--home .section--report .list--contents .thumb:before {
    content: "";
    display: block;
    width: 800px;
    height: 800px;
    position: absolute;
  }
  .page--home .section--video {
    padding: 70px 0;
  }
  .page--home .section--video .area--tit {
    margin-left: 5.5vw;
    margin-right: 40px;
  }
  .page--home .section--video .list__more {
    margin-right: 5.5vw;
  }
  .page--home .section--video .ex-link {
    margin-left: 40px;
    font-size: 14px;
  }
  .page--home .section--video .swiper-container {
    padding: 0;
  }
  .page--home .section--video .list--youtube .video {
    margin-bottom: 20px;
  }
  .page--home .section--video .list--youtube .thumb {
    position: relative;
    overflow: hidden;
  }
  .page--home .section--video .list--youtube .thumb:before {
    content: "";
    display: block;
    width: 980px;
    height: 980px;
    position: absolute;
    background: #F8B500;
    opacity: 0.4;
    border-radius: 50%;
    transform-origin: center;
    transition: all 0.8s 0s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%) scale(0);
  }
  .page--home .section--video .list--youtube .tit {
    font-size: 14px;
    font-weight: bold;
    transition: all 0.8s 0s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 4;
  }
  .page--home .section--video .list--youtube li:hover .thumb:before {
    transform: translate(-50%, -50%) scale(1);
  }
  .page--home .section--video .list--youtube li:hover .tit {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .page--home .section--family {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--home .section--family .logo {
    width: 40%;
    margin-right: 6%;
    max-width: 450px;
  }
  .page--home .section--family .block--menu {
    width: 48%;
  }
  .page--home .section--family .list--menu {
    margin-bottom: 30px;
    font-size: 13px;
  }
  .page--home .section--family .list--menu li {
    margin-bottom: 8px;
    width: 48%;
    cursor: pointer;
  }
  .page--home .section--family .list--menu li:nth-child(odd) {
    margin-right: 2%;
  }
  .page--home .section--family .list--menu a {
    padding: 2px 0;
  }
  .page--home .section--family .list--menu a:hover {
    opacity: 0.4;
  }
  .page--home .section--family .txt {
    font-size: 16px;
  }
  .page--home .section--links {
    padding-bottom: 100px;
  }
  .page--home .section--links .list--horizontal li {
    flex: 1;
    display: inline-block;
    width: auto;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--home .section--links .list--horizontal li:not(:last-child) {
    margin-right: 5px;
  }
  .page--home .section--links .list--horizontal li:hover {
    opacity: 0.8;
  }
  .page--home .section--links .list--horizontal img {
    width: 100%;
  }
  body:not(.page--home) .section--list,
  body:not(.page--home) .section--detail {
    min-height: 100vh;
    padding: 70px 5.5vw;
  }
  body:not(.page--home) .section--list .no-data,
  body:not(.page--home) .section--detail .no-data {
    width: 100%;
    margin: 150px auto !important;
  }
  body:not(.page--home) .section--list .area--tit,
  body:not(.page--home) .section--detail .area--tit {
    position: absolute;
    top: -1.5em;
    padding: 0 10px;
  }
  body:not(.page--home) .section--list .section-tit,
  body:not(.page--home) .section--detail .section-tit {
    font-size: 36px;
  }
  body:not(.page--home) .section--list .section-tit .sub-tit,
  body:not(.page--home) .section--detail .section-tit .sub-tit {
    font-size: 13px;
    margin-top: 5px;
    display: block;
  }
  body:not(.page--home) .section--list .area--tit .badge,
  body:not(.page--home) .section--detail .area--tit .badge {
    margin-left: 20px;
    top: 0;
  }
  body:not(.page--home) .section--list .detail__btn svg,
  body:not(.page--home) .section--detail .detail__btn svg {
    margin: 0 15px 0 0;
  }
  body:not(.page--home) .section--list .list--info, body:not(.page--home) .section--list .list--contents, body:not(.page--home) .section--list .list--discography {
    margin-bottom: 70px;
  }
  .page--info.category-5 .section--list {
    padding-top: 95px;
  }
  .page--info.ticket .list--info li a {
    display: flex;
  }
  .page--info.ticket .list--info .txt-wrap {
    flex: 2;
    margin-right: 2%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--info.ticket .list--info .thumb {
    flex: 1;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--info.ticket .list--info li:hover {
    transform: none !important;
  }
  .page--info.ticket .list--info li:hover .txt-wrap {
    transform: translateX(10px);
  }
  .page--info.ticket .list--info li:hover .thumb {
    opacity: 0.8;
  }
  .page--info.ticket .section--detail .ph {
    margin-bottom: 2em;
  }
  .page--info.ticket .section--detail .ph img {
    width: clamp(20%, 380px, 45%);
    max-height: none;
  }
  .page--info.ticket .section--detail .ph img.info-thumb {
    display: block;
    margin: 0 auto;
  }
  .page--info.ticket.theater__event-end .list--horizontal li {
    width: 31%;
    margin-bottom: 70px;
  }
  .page--info.ticket.theater__event-end .list--horizontal li:nth-child(3n) {
    margin-right: 0 !important;
  }
  .page--info .section--list .list--info {
    margin-bottom: 40px;
  }
  .page--info .section--list .list--info .tit {
    margin-bottom: 5px;
  }
  .page--info .section--detail .tit {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .page--info .section--detail .new {
    font-size: 12px;
    margin-right: 3px;
  }
  .page--info .section--detail .date {
    font-size: 14px;
  }
  .page--info .section--detail .ph {
    margin-bottom: 2em;
  }
  .page--info .section--detail .ph img {
    height: 100%;
    width: 50%;
  }
  .page--info .section--detail .cat {
    padding: 2px 0;
    font-size: 11px;
    margin-right: 10px;
  }
  .page--info .section--detail .txt {
    margin-bottom: 50px;
    margin-top: 70px;
  }
  .page--info .section--detail .block--share {
    margin-bottom: 70px;
  }
  .page--info .section--detail .tag_list ul li:hover {
    opacity: 0.4;
  }
  .page--schedule .section--list {
    position: relative;
  }
  .page--schedule .cat {
    padding: 2px 1em;
  }
  .page--schedule .btn {
    position: absolute;
    right: 0;
    top: 6px;
  }
  .page--schedule .btn a {
    display: block;
    width: 38px;
    height: 38px;
    font-family: "Comfortaa";
    font-weight: 600;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    text-align: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    padding: 9px 10px 8px;
  }
  .page--schedule .header-calendar .block--month .month-pager {
    font-size: 14px;
  }
  .page--schedule .header-calendar .block--month .month-pager li a:hover {
    color: #F8B500;
  }
  .page--schedule .list--schedule li .cat {
    margin-bottom: 5px;
  }
  .page--schedule .list--schedule li .date {
    text-align: center;
    float: left;
    line-height: 1;
  }
  .page--schedule .list--schedule li .date .md {
    font-size: 32px;
  }
  .page--schedule .list--schedule li .date .week {
    font-size: 14px;
  }
  .page--schedule .list--schedule li .date span {
    display: block;
  }
  .page--schedule .list--schedule li .entry_box .entry {
    margin-bottom: 15px;
  }
  .page--schedule .list--schedule li .entry_box a {
    min-height: 0;
    margin-left: 60px;
  }
  /*  page--disco
  ------------------------------ */
  .page--disco .section--list {
    padding-top: 130px;
  }
  .page--disco .list--discography li {
    width: 31%;
    margin-bottom: 40px;
  }
  .page--disco .list--discography li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .page--disco .list--jacket li {
    margin-bottom: 50px;
    max-width: 40vw;
  }
  .page--disco .list--jacket li:not(:last-child) {
    margin-right: 24px;
  }
  .page--disco .list--jacket .ph {
    margin-bottom: 14px;
  }
  .page--disco .section--list .area--tit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 40px;
  }
  .page--disco .section--list .area--tit .section-tit {
    margin-bottom: 0;
  }
  .page--disco .section--detail {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--disco .section--detail .jacket {
    width: 35%;
    margin-right: 5%;
  }
  .page--disco .section--detail .detail__btn {
    width: 100%;
  }
  .page--disco .section--detail .block--disc-detail {
    width: 60%;
  }
  .page--disco .section--detail .block--disc-detail .tit {
    font-size: 24px;
    margin: 0 0 5px;
  }
  .page--disco .section--detail .block--disc-detail .date {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 60px;
  }
  .page--disco .section--detail .block--disc-detail .cat {
    font-size: 12px;
    display: inline-block;
    margin-right: 8px;
  }
  .page--disco .section--detail .block--disc-detail .link,
  .page--disco .section--detail .block--disc-detail .text {
    width: 100%;
    margin: 0;
  }
  .page--disco .section--detail .block--disc-detail .text .btn {
    text-align: left;
  }
  .page--disco .section--detail .block--disc-detail .text .btn a {
    text-align: center;
  }
  .page--disco.loaded .jacket {
    opacity: 1;
  }
  /*  page--wallpaper
  ------------------------------ */
  .page--wallpaper .list--contents li {
    width: 31%;
    margin-bottom: 40px;
  }
  .page--wallpaper .list--contents li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .page--wallpaper .list--wp-size a:hover {
    color: #F8B500;
  }
  .page--wallpaper .section--list .notes.download {
    margin-bottom: 50px;
  }
  .page--wallpaper .section--list .area--tit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 40px;
  }
  .page--wallpaper .section--list .area--tit .section-tit {
    margin-bottom: 0;
  }
  .page--wallpaper .section--detail .date {
    font-size: 14px;
  }
  .page--wallpaper .section--detail .tit {
    font-size: 20px;
  }
  .page--wallpaper .section--detail .ph {
    margin-bottom: 50px;
  }
  .page--wallpaper .section--detail .ph img {
    width: 100%;
    background-size: contain;
  }
  .page--wallpaper .section--detail .point-wrap {
    width: 50%;
    margin: 30px auto;
  }
  .page--wallpaper .section--detail .notes .tit {
    font-size: 14px;
    margin-bottom: 0;
  }
  .page--wallpaper .section--detail .notes dd {
    margin-bottom: 1em;
  }
  .page--blog .section--list.report .list--contents li {
    width: 49%;
    margin-bottom: 50px;
  }
  .page--blog .section--list.report .list--contents li:nth-child(odd) {
    margin-right: 2%;
  }
  .page--blog .section--list.memberblog .list--contents li {
    width: 23%;
    margin-bottom: 50px;
  }
  .page--blog .section--list.memberblog .list--contents li:not(:nth-child(4n)) {
    margin-right: 2%;
  }
  .page--blog .section--detail .tit {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .page--blog .section--detail .new {
    font-size: 12px;
    margin-right: 3px;
  }
  .page--blog .section--detail .date {
    font-size: 14px;
    display: inline-block;
  }
  .page--blog .section--detail .cat {
    display: inline-block;
  }
  .page--blog .section--detail .txt {
    margin: 50px 0;
  }
  .page--blog .section--detail .txt a {
    word-break: break-all;
  }
  .page--movie .section--list .list--contents li {
    width: 31%;
    margin-bottom: 40px;
  }
  .page--movie .section--list .list--contents li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .page--movie .section--detail .date {
    font-size: 14px;
  }
  .page--movie .section--detail .tit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .page--movie .section--detail .txt {
    margin-top: 50px;
  }
  .page--movie .section--detail .block--player {
    margin: 0 0 30px;
  }
  .page--movie .section--detail .block--player img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page--support .lead {
    margin-bottom: 1em;
  }
  .page--support .block--text {
    margin-bottom: 40px;
  }
  .page--support .block--text .block-tit {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .page--support .block--text .txt {
    padding-top: 0;
  }
  .page--support .block--text .txt:not(:last-of-type) {
    margin-bottom: 1em;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .list--support li,
  .page--support .list--support dd {
    margin-bottom: 1em;
  }
  .page--support .list--support li > ol li,
  .page--support .list--support li > ol li,
  .page--support .list--support dd > ol li,
  .page--support .list--support dd > ol li {
    margin-bottom: 0.75em;
  }
  .page--support .list--support li > p,
  .page--support .list--support dd > p {
    margin-bottom: 0.5em;
  }
  .page--support .list--support.terms {
    margin-top: 50px;
  }
  .page--support .cardAttList {
    background: #fff0ea;
    color: #e63a37;
    border: 1px solid #e63a37;
    padding: 3%;
    margin-bottom: 50px;
    font-size: 0.85em;
  }
  .page--support .cardAttList li:first-child {
    font-size: 16px;
    margin: 0 0 0.5em;
  }
  .page--support .cardAttList li a {
    transition: all 0.3s ease-out;
    text-decoration: underline;
    margin: 0px 0 1.25em;
    display: inline-block;
  }
  .page--support .cardAttList li a:hover {
    opacity: 0.7;
  }
  .page--support .section--detail.support .area--tit {
    position: absolute;
    top: -1em;
    background-color: #fff;
    padding: 0 10px;
  }
  .page--support .section--detail.support .area--tit .section-tit {
    font-size: 30px;
    color: #F8B500;
  }
  .page--support .section--detail.support .sub-txt-list {
    margin-top: 1em;
  }
  .page--support .section--detail.support .sub-txt-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--support.inquiry .list--horizontal {
    width: 90%;
    margin: 50px auto 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--support.inquiry .list--horizontal li {
    width: 48%;
    margin-bottom: 10px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--support.inquiry .list--horizontal li:hover {
    background: #F8B500;
    color: #fff;
  }
  .page--support.inquiry .list--horizontal li a {
    height: 100%;
    padding: 1em;
    transition: none;
  }
  .page--contact .block--attention {
    padding: 3%;
    margin-bottom: 50px;
  }
  .page--contact .block--form {
    margin: 30px 0 50px;
  }
  .page--contact .section--detail.complete .txt--basic {
    margin: 50px 0;
  }
  .page--whatsske48 .section--detail [class^=block--] {
    margin-bottom: 70px;
  }
  .page--whatsske48 .section--detail [class^=block--] .block-tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page--whatsske48 .list--horizontal li {
    width: 48%;
    margin-bottom: 70px;
  }
  .page--whatsske48 .list--horizontal li:not(:last-child) {
    margin-right: 2%;
  }
  .page--whatsske48 .block--intro .artist {
    margin: 50px auto 50px;
    width: 70%;
  }
  .page--whatsske48 .block--produce .area-tit {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page--whatsske48 .block--produce .area-tit .small {
    font-size: 14px;
  }
  .page--whatsske48 .block--produce .thumb {
    margin: 0 30px 0 0;
    width: 50%;
  }
  .page--profile .tab_nav {
    width: 80%;
    margin: 0 auto 100px;
    font-size: 18px;
  }
  .page--profile .tab_nav li {
    width: 24%;
    padding: 10px 2px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--profile .tab_nav li:not(:last-child) {
    margin-right: 1%;
  }
  .page--profile .block--team:not(:last-child) {
    margin-bottom: 70px;
  }
  .page--profile .list--horizontal > li {
    margin-bottom: 40px;
    width: 24%;
  }
  .page--profile .list--horizontal > li:not(:last-child) {
    margin-right: 1%;
  }
  .page--profile .list--horizontal figure {
    margin: 0 0 14px;
  }
  .page--profile .list--horizontal figcaption {
    margin-bottom: 20px;
  }
  .page--profile .list--horizontal figcaption span {
    font-size: 12px;
  }
  .page--profile .list--horizontal .item_link_nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--profile .list--horizontal .item_link_nav li {
    margin: 0;
    width: 49%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--profile .list--horizontal .item_link_nav li:not(:last-child) {
    margin-bottom: 8px;
  }
  .page--profile.page--member .block--inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--profile.page--member .block--inner .area-left {
    width: 45%;
    margin-right: 5%;
  }
  .page--profile.page--member .block--inner .area-left .thumb {
    margin: 0 0 30px;
  }
  .page--profile.page--member .block--inner .area-left .thumb > img {
    width: 100%;
  }
  .page--profile.page--member .block--inner .area-right {
    width: 50%;
  }
  .page--profile.page--member .block--inner .area-right dt {
    margin-bottom: 50px;
    font-size: 26px;
  }
  .page--profile.page--member .block--inner .area-right dt span {
    font-size: 12px;
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area {
    font-size: 22px;
    margin-bottom: 80px;
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area img {
    width: 80%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area a {
    display: block;
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area a:hover img {
    opacity: 0.8;
  }
  .page--profile.page--member .block--inner .list--sns > li {
    width: 26px;
    margin-right: 10px;
  }
  .page--profile.page--member .block--inner .list--sns > li i {
    font-size: 26px;
  }
  .page--profile.page--member .block--inner .list--sns > li a:hover {
    color: #F8B500;
  }
  .page--profile.page--member .block--inner .amebablog a:hover {
    color: #F8B500;
  }
  .page--akushu .block--content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 70px 0 50px;
  }
  .page--akushu .block--content > div {
    position: relative;
    width: 48%;
  }
  .page--akushu .block--zenkoku,
  .page--akushu .block--theater {
    padding: 30px 4%;
  }
  .page--akushu .block-tit_area {
    width: 100%;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page--akushu .block-tit_area .block-tit {
    font-size: 34px;
  }
  .page--akushu .block-tit_area .sub-tit {
    font-size: 22px;
  }
  .page--akushu .block-tit_area + .lead {
    margin-bottom: 40px;
    padding-top: 190px;
  }
  .page--akushu .step_area dt {
    font-size: 20px;
  }
  .page--akushu .step_area dd:not(:last-child) {
    margin-bottom: 30px;
  }
  .page--akushu .block--links {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--akushu .block--links li {
    width: 30%;
    font-size: 18px;
    margin: 0 1em;
  }
  .page--akushu .block--links a {
    padding: 10px 2%;
  }
  .page--setlist .tab_nav {
    width: 90%;
    margin: 0 auto 120px;
    display: flex;
  }
  .page--setlist .tab_nav li {
    width: 20%;
  }
  .page--setlist .tab_nav li:not(:last-child) {
    margin-right: 1%;
  }
  .page--setlist .tab_nav a {
    padding: 10px 2px;
  }
  .page--setlist .list--setlist {
    width: 97%;
    margin: 0 auto 70px;
  }
  .page--setlist .list--setlist .tit:hover {
    opacity: 0.4;
  }
  .page--setlist .list--setlist .year {
    font-size: 14px;
  }
  .page--entry_sp .section--detail [class^=block--] {
    margin-bottom: 100px;
  }
  .page--entry_sp .section--detail [class^=block--] table {
    width: 700px;
    margin: 0 auto 30px;
  }
  .page--entry_sp .section--detail [class^=block--] table th {
    width: 20%;
    font-size: 14px;
  }
  .page--entry_sp .section--detail [class^=block--] table.list--payment .credit {
    margin-bottom: 20px;
  }
  .page--entry_sp .section--detail [class^=block--] .block-tit {
    font-size: 24px;
    text-align: center;
  }
  .page--entry_sp .section--detail [class^=block--] .block-tit span {
    font-size: 13px;
  }
  .page--entry_sp .section--detail .block--firstlogin {
    margin-bottom: 50px;
  }
  .page--entry_sp .section--detail .block--firstlogin .btn.first_login {
    max-width: 700px;
    margin: 0 auto;
  }
  .page--entry_sp .section--detail .block--top {
    margin-bottom: 100px;
  }
  .page--entry_sp .section--detail .block--top .logo {
    width: 20%;
    margin: 0 auto;
    margin-bottom: 30px;
    display: block;
  }
  .page--entry_sp .section--detail .block--top .logo img {
    display: block;
    margin: 0 auto 10px;
  }
  .page--entry_sp .section--detail .block--top .lead {
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
  }
  .page--entry_sp .section--detail .block--contents .block-tit {
    font-size: 30px;
  }
  .page--entry_sp .section--detail .list--contents {
    flex-wrap: wrap;
  }
  .page--entry_sp .section--detail .list--contents li {
    padding: 24px 2.5%;
    margin-right: 2%;
    width: 48%;
    min-height: 270px;
  }
  .page--entry_sp .section--detail .list--contents li:nth-child(even) {
    margin-right: 0;
  }
  .page--entry_sp .section--detail .list--contents li .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page--entry_sp .section--detail .list--payment {
    margin: 0 auto 100px;
  }
  .page--links .list--horizontal li {
    width: 22%;
    margin: 0 0 20px 0;
  }
  .page--links .list--horizontal li:not(:last-child) {
    margin-right: 2%;
  }
  .page--goods .list--horizontal {
    justify-content: space-around;
  }
  .page--goods .list--horizontal li {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .page--goods .list--horizontal li:not(:last-child) {
    margin-right: 0;
  }
  .page--aboutblog .list--horizontal,
  .page--aboutmovie .list--horizontal,
  .page--fancommunity .list--horizontal {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--aboutblog .list--horizontal li,
  .page--aboutmovie .list--horizontal li,
  .page--fancommunity .list--horizontal li {
    min-height: 12vw;
    width: 48%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--aboutblog .list--horizontal li:hover,
  .page--aboutmovie .list--horizontal li:hover,
  .page--fancommunity .list--horizontal li:hover {
    opacity: 0.8;
  }
  .page--aboutblog .list--horizontal li a,
  .page--aboutmovie .list--horizontal li a,
  .page--fancommunity .list--horizontal li a {
    height: 100%;
    line-height: 12vw;
    padding: 2%;
    transition: none;
  }
  .page--aboutblog .list--horizontal li:not(:nth-child(3n)),
  .page--aboutmovie .list--horizontal li:not(:nth-child(3n)) {
    margin: 0 1% 10px 0;
  }
  .page--aboutblog .list--horizontal li:nth-child(3n),
  .page--aboutmovie .list--horizontal li:nth-child(3n) {
    margin: 0 0 10px 0;
  }
  .page--fancommunity .list--horizontal li {
    margin-bottom: 10px;
  }
  .page--fancommunity .list--horizontal li:nth-child(odd) {
    margin-right: 1%;
  }
  .page--fanclub .block--tit_logo {
    width: 50%;
    margin: 0 auto 50px;
  }
  .page--fanclub .block--tokuten {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--fanclub .block--tokuten .thumb {
    width: 50%;
    margin: 0 2% 0;
  }
  .page--fanclub .block--tokuten .list--about {
    width: 48%;
  }
  .page--fanclub .list--about dt {
    margin-bottom: 0.25em;
  }
  .page--fanclub .list--about dd {
    margin-bottom: 1em;
  }
  .page--mail .block-tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page--mail .txt--basic.bold {
    text-align: center;
  }
  .page--mail .section--inner {
    margin: 30px 0 50px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--mail .section--inner .block--appli, .page--mail .section--inner .block--web {
    width: 48%;
    margin-bottom: 30px !important;
  }
  .page--mail .section--inner .block--appli .thumb, .page--mail .section--inner .block--web .thumb {
    margin-bottom: 50px;
  }
  .page--mail .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--mail .app_info_area {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--mail .app_info_area .show_item {
    width: 49%;
  }
  .page--mail .table--hikaku {
    width: 80%;
    margin-bottom: 50px;
  }
  .page--mail .table--hikaku th {
    font-size: 15px;
  }
  .page--theater .section--detail [class^=block--] {
    margin-bottom: 70px;
  }
  .page--theater .section--detail [class^=block--] .block-tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page--theater .area--link {
    margin-bottom: 70px;
  }
  .page--theater .area--link .list--link {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--theater .area--link .list--link li {
    min-width: 22%;
    min-height: 36px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 5px 0.5em;
  }
  .page--theater .area--link .list--link li:hover {
    opacity: 0.4;
  }
  .page--theater .area--link .list--link a {
    line-height: 36px;
  }
  .page--theater .block--rule {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--theater .block--rule .block_inner {
    width: 48%;
  }
  .page--theater .block--access .block_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--theater .block--access .iframe_box {
    width: 600px;
    height: 400px;
    margin-right: 3%;
  }
  .page--theater .block--access .iframe_box iframe {
    height: 400px;
  }
  .page--theater .block--setlist .list--team {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--theater .block--setlist .list--team li {
    width: 48%;
    margin-bottom: 40px;
  }
  .page--theater .block--setlist .list--team li:hover .thumb:before {
    transform: translate(-50%, -50%) scale(1);
  }
  .page--theater .block--setlist .list--team li:hover .thumb img {
    transform: scale(1.1);
  }
  .page--theater .block--setlist .list--team .list-tit {
    font-size: 22px;
  }
  .page--theater .block--setlist .list--team .thumb {
    margin: 10px 0 14px;
    position: relative;
  }
  .page--theater .block--setlist .list--team .thumb::before {
    content: "";
    display: block;
    width: 40vw;
    height: 40vw;
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(248, 181, 0, 0.4);
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    border-radius: 50%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--theater .block--setlist .list--team .thumb > img {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--theater.join .list--ticket li {
    width: 48%;
    margin-bottom: 20px;
  }
  .page--theater.join .list--ticket li:nth-child(odd) {
    margin-right: 2%;
  }
  .page--appli .block-tit {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page--appli .section--inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli .section--inner .block--appli {
    width: 48%;
  }
  .page--appli .app_info_area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli .app_info_area dt.show_item {
    max-width: 130px;
    margin-right: 1em;
  }
  .page--appli .app_info_area dd.show_item {
    width: 46%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--appli .app_info_area dd.show_item a {
    display: block;
    margin: 0 5px;
  }
  .page--appli .list__more {
    margin: 50px 0 0;
  }
  .page--error .section--detail .area--tit {
    top: -1em;
  }
  /* .page--first_login
  ------------------------------ */
  .page--first_login .section--detail.first_login .section-tit {
    line-height: 1.6em;
    margin-bottom: 80px;
    font-size: 30px;
  }
  .page--first_login .area--link {
    margin-bottom: 70px;
  }
  .page--first_login .area--link .list--link {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--first_login .area--link .list--link li {
    min-width: 22%;
    height: 50px;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 5px 0.5em;
  }
  .page--first_login .area--link .list--link li:hover {
    opacity: 0.4;
  }
  .page--first_login .area--link .list--link a {
    line-height: 50px;
  }
  .page--first_login .block--pid {
    padding: 30px 3%;
    margin-bottom: 50px;
  }
  .page--first_login .block--pid > .txt--basic:first-child {
    font-size: 18px;
  }
  .page--first_login .block-tit {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .page--first_login .block--lead {
    margin-bottom: 60px;
  }
  .page--first_login .btn.entry {
    width: 60%;
    margin: 0 auto;
  }
  .page--first_login .block--step.already {
    margin-bottom: 130px;
  }
  .page--first_login .block--step .list-tit {
    font-size: 18px;
  }
  .page--first_login .block--step .list-tit > span {
    font-size: 12px;
  }
  .page--first_login .block--step .list--step > li .thumb {
    width: 60%;
  }
  .page--first_login .block--step .list--step > li .thumb.isao {
    width: 30%;
  }
  .page--faq.page--detail .wrap--main {
    padding-top: 70px !important;
  }
  .page--faq .section--list.faq .section-tit,
  .page--faq .section--detail.faq .section-tit {
    font-size: 30px;
  }
  .page--faq .tit--category {
    margin-bottom: 10px;
  }
  .page--faq .searchBox {
    margin: 0 auto 80px;
  }
  .page--faq .list--faq {
    margin: 0 0 50px;
  }
  .page--faq .list--faq li:hover a {
    transform: translateX(10px);
  }
  .page--faq .list--faq li:hover a:after {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--faq .list--faq li .tit {
    font-size: 16px;
  }
  .page--faq .list--faq li a {
    padding: 10px 2em 10px 2%;
  }
  .page--faq .block--faq-detail {
    font-size: 16px;
    padding: 30px 20px;
    margin: 10px 0 50px;
  }
  .page--faq .block--faq-detail .txt * {
    font-size: 0.95em;
  }
  .page--questionnaire .detail__btn {
    margin-top: 30px;
  }
  .page--questionnaire .ph {
    margin-bottom: 50px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .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 .btn + .btn {
    margin-top: 1em;
  }
  footer {
    padding: 100px 5.5vw 36px;
  }
  footer .footer-logo {
    margin-bottom: 25px;
  }
  footer .footer--sns {
    margin-bottom: 76px;
  }
  footer .footer--sns li {
    margin-right: 20px;
  }
  footer .footer--sns li:hover i, footer .footer--sns li:hover svg {
    opacity: 0.4;
  }
  footer .footer--sns i, footer .footer--sns svg {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  footer .footer--sns i {
    font-size: 18px;
  }
  footer .block--support {
    margin-bottom: 14px;
  }
  footer .block--support li {
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
  }
  footer .block--support li:not(:last-of-type) {
    margin-right: 12px;
  }
  footer .block--support li:hover {
    opacity: 0.4;
  }
  footer .nav__page-top {
    position: absolute;
    bottom: 58px;
    right: 5.5vw;
    height: 37px;
    cursor: pointer;
  }
  footer .nav__page-top:hover {
    transform: translateY(-5px);
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .drawer {
    padding: 10vw 5.5vw !important;
  }
  .drawer .g-nav > li {
    font-size: 3.5vw !important;
    margin-bottom: 0.5em !important;
  }
  .drawer .g-nav > li span {
    font-size: 2vw !important;
  }
  .drawer .menu-official {
    padding: 6vw 0 7.5vw !important;
  }
  .drawer .menu-fanclub {
    padding: 0 0 6vw !important;
  }
  .drawer .label_nav {
    font-size: 2vw !important;
  }
  .block--category {
    width: 60% !important;
  }
  .detail__btn, .list__more {
    font-size: 18px;
  }
  .detail__btn a, .list__more a {
    padding: 8px 0 8px 18px;
  }
  .block--category li a {
    font-size: 2vw !important;
  }
  .block--pager {
    font-size: 20px !important;
  }
  .block--pager .pager__item--top {
    font-size: 18px !important;
  }
  .list--contents li.new:before {
    top: -3%;
    left: -1%;
  }
  .section-tit {
    font-size: 4vw !important;
  }
  .section-tit .sub-tit {
    font-size: 2vw !important;
  }
  .btn--main {
    min-width: 50%;
  }
  .btn--sub {
    min-width: 50%;
  }
  .page--home .section--info, .page--home .section--fcinfo {
    padding-top: 9vw;
  }
  .page--home .section--movie .list--contents li {
    width: 32%;
  }
  .page--home .section--movie .list--contents li:nth-child(2) {
    margin: 0 2%;
  }
  .page--home .section--report .list--contents li {
    width: 32%;
  }
  .page--home .section--report .list--contents li:nth-child(2) {
    margin: 0 2%;
  }
  .page--home .section--family {
    display: flex;
  }
  .page--home .section--family .logo {
    width: 50% !important;
    flex: 1;
    margin: 0 5% 0 0 !important;
  }
  .page--home .section--family .block--menu {
    flex: 2;
  }
  .page--home .section--links .list--horizontal li {
    flex: 1;
  }
  .page--home .section--links .list--horizontal li:not(:last-child) {
    margin-right: 8px !important;
  }
  .page--schedule .header-calendar .block--month .month {
    font-size: 10vw !important;
  }
  .page--schedule .list--category li {
    margin-right: 1%;
  }
  .page--theater .block--access .iframe_box {
    height: 60vw !important;
  }
  .page--theater .block--access .iframe_box iframe {
    height: 100% !important;
  }
  .page--whatsske48 .block--produce .area-tit .small {
    font-size: inherit !important;
  }
  .page--whatsske48 .block--produce .thumb {
    width: 50% !important;
  }
  .page--aboutblog .list--horizontal, .page--aboutmovie .list--horizontal, .page--fancommunity .list--horizontal, .page--support.inquiry .list--horizontal {
    justify-content: space-between;
  }
  .page--aboutblog .list--horizontal li, .page--aboutmovie .list--horizontal li, .page--fancommunity .list--horizontal li, .page--support.inquiry .list--horizontal li {
    width: 49% !important;
  }
  .page--support .section-tit {
    font-size: 4vw !important;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  /* common.scss
  ============================== */
  .pc {
    display: none !important;
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
  }
  .header h1.sitename {
    margin: 0;
    width: 56px;
    margin-left: 5.5vw;
  }
  .header h1.sitename a {
    display: block;
  }
  .header .drawer__btn {
    display: block;
    width: 45px;
    height: 45px;
    position: fixed;
    right: 4vw;
    top: 20px;
    background: #F8B500;
  }
  .header .drawer__btn span {
    display: block;
    background: #fff;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20px;
    height: 3px;
    position: absolute;
    right: 12px;
    border-radius: 3px;
  }
  .header .drawer__btn span:first-child {
    top: 19px;
  }
  .header .drawer__btn span:last-of-type {
    top: 25px;
  }
  .drawer {
    padding: 16vw 5.5vw 5vw;
  }
  .drawer .nav-fc {
    font-size: 4vw;
    margin-top: 5vw;
  }
  .drawer .nav-fc .join, .drawer .nav-fc .login, .drawer .nav-fc .mypage {
    transform: translateY(20px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .drawer .nav-fc .join {
    margin-right: 2em;
    position: relative;
  }
  .drawer .nav-fc .join:before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    position: absolute;
    background-color: #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: -1.5em;
  }
  .drawer .nav-fc a {
    padding: 5px 0;
  }
  .drawer .nav-family {
    font-size: 4vw;
    margin-top: 5vw;
  }
  .drawer .nav-family .join, .drawer .nav-family .login, .drawer .nav-family .mypage {
    transform: translateY(20px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .drawer .nav-family .join {
    margin-right: 2em;
    position: relative;
  }
  .drawer .nav-family .join:before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    position: absolute;
    background-color: #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: -1.5em;
  }
  .drawer .nav-family a {
    padding: 5px 0;
  }
  .drawer .block--menu.menu-official {
    margin: 0 0 8vw;
  }
  .drawer .block--menu.menu-official .g-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .drawer .block--menu.menu-official .g-nav > li {
    font-size: 4.5vw;
  }
  .drawer .block--menu.menu-fanclub .g-nav > li {
    font-size: 5vw;
  }
  .drawer .block--menu .label_fanclub {
    font-size: 2vw;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.4;
  }
  .drawer .block--menu.menu-family {
    padding: 8vw 0 6vw;
    margin-top: 8vw;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .drawer .block--menu.menu-family .g-nav > li {
    font-size: 5vw;
  }
  .drawer .block--menu.menu-family .label_nav {
    color: #fc9cc1;
  }
  .drawer .block--menu .label_family {
    font-size: 2vw;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.4;
  }
  .drawer .block--menu .label_nav {
    transform: translateY(20px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
    font-size: 3vw;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0;
    background: #fff;
    display: inline-block;
    padding: 2px 4px;
    color: #F8B500;
    letter-spacing: 0.01em;
    border-radius: 2px;
  }
  .drawer .block--menu .g-nav > li {
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
    width: 48%;
    color: #fff;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .drawer .block--menu .g-nav > li a {
    padding: 5px 0;
  }
  .drawer .block--menu .g-nav > li span {
    display: block;
    margin-top: 5px;
    font-size: 3vw;
    font-weight: normal;
  }
  .drawer .drawer--sns {
    transform: translateY(20px);
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 1em;
    margin-top: 1em;
    text-align: right;
  }
  .drawer .drawer--sns i {
    font-size: 18px;
  }
  .drawer .drawer--sns svg.line_ico {
    transform: translateY(2px);
    display: inline-block;
    fill: #fff;
    width: 18px;
    height: 18px;
    transform: translateY(2px);
  }
  .drawer .drawer--sns li {
    display: inline-block;
  }
  .drawer .drawer--sns li:not(:last-child) {
    margin-right: 20px;
  }
  .drawer .drawer--sns li a {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 5px 0;
  }
  footer {
    padding: 55px 4vw 35px 4vw;
  }
  footer .footer-logo {
    width: 65%;
    margin-bottom: 15px;
  }
  footer .footer-logo img {
    width: 100%;
    height: auto;
  }
  footer .footer--sns {
    margin-bottom: 60px;
  }
  footer .footer--sns li {
    margin-right: 20px;
  }
  footer .footer--sns i {
    font-size: 18px;
  }
  footer .footer--sns svg.line_ico {
    transform: translateY(2px);
    display: inline-block;
  }
  footer .block--support {
    font-size: 11px;
    margin-bottom: 46px;
  }
  footer .block--support li {
    margin-bottom: 11px;
    padding-right: 0.5em;
  }
  footer .block--support li:before {
    height: 12px;
  }
  footer .nav__page-top {
    height: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  footer .nav__page-top a {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
  }
  footer .nav__page-top a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 2px;
  }
  .date, .cat {
    display: inline-block;
  }
  .tit {
    line-height: 1.5;
  }
  .list--info li:not(:last-child) {
    margin-bottom: 15px;
  }
  .list--info li a {
    padding: 5px 0;
  }
  .list--info li .tit {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .list--info li .date {
    font-size: 12px;
  }
  .list--info li .cat {
    line-height: 1;
    padding: 3px 6px;
    margin-right: 8px;
  }
  .list--info .new {
    font-size: 10px;
    margin-left: 5px;
  }
  .list--contents li.new:before {
    top: -7px;
    left: -7px;
    width: 44px;
    height: 44px;
  }
  .list--discography .cat {
    margin-right: 8px;
  }
  .list--contents, .list--discography {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .list--contents .date, .list--discography .date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .list--contents li, .list--discography li {
    width: 100%;
  }
  .list--contents li:not(:last-of-type), .list--discography li:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .list--contents .thumb, .list--discography .thumb {
    margin-bottom: 14px;
  }
  .block--category {
    width: 80%;
    margin: 0 auto 40px;
  }
  .block--category.ticket .list--status-ticket {
    text-align: center;
  }
  .block--category.ticket .list--status-ticket .current {
    font-size: 18px;
    margin-bottom: 5px;
  }
  li.no-data {
    padding: 2em 0;
  }
  .detail__btn, .list__more {
    margin: 40px 0 0;
    font-size: 15px;
  }
  .detail__btn a, .list__more a {
    padding: 5px 0;
  }
  .detail__btn .allow, .list__more .allow {
    width: 30px;
    height: 8px;
  }
  .list__more .allow {
    margin-left: 15px;
  }
  .detail__btn .allow {
    margin-right: 15px;
  }
  .block--pager .allow {
    height: 20px !important;
    width: 30px !important;
    margin: 0 auto;
  }
  .wrap {
    position: relative;
    padding-top: 130px;
  }
  .wrap .section--list, .wrap .section--detail {
    min-height: 80vh;
    padding: 70px 5.5vw 70px;
  }
  .wrap .section--list .area--tit, .wrap .section--detail .area--tit {
    margin-bottom: 32px;
  }
  .wrap .section--list .section-tit, .wrap .section--detail .section-tit {
    font-size: 8vw;
    display: inline-block;
  }
  .wrap .section--list .section-tit .sub-tit, .wrap .section--detail .section-tit .sub-tit {
    font-size: 3vw;
    display: block;
    margin-top: 5px;
  }
  .section--list .list--info, .section--list .list--contents, .section--list .list--discography {
    margin-bottom: 60px;
  }
  .swiper-wrapper {
    margin: 0 0 14px 5.5vw;
  }
  .swiper-container {
    padding-bottom: 14px;
  }
  .swiper-pagination-fraction {
    bottom: 0;
  }
  .swiper-pagination-fraction span.line {
    width: 20px;
    margin: 0 5px;
  }
  .swiper-button-prev, .swiper-button-next {
    display: none;
  }
  .page--home {
    /*section--banner */
    /* section--info */
    /* section--video */
    /* section--blog */
    /* section--movie */
  }
  .page--home .header {
    height: 126px;
  }
  .page--home .content--body {
    margin-top: 126px;
  }
  .page--home .wrap {
    padding-bottom: 0;
    padding-top: 0;
  }
  .page--home .area-tit {
    font-size: 8vw;
  }
  .page--home .badge {
    margin-left: 16px;
  }
  .page--home .section--keyvisual,
  .page--home .section--blog,
  .page--home .section--movie,
  .page--home .section--report,
  .page--home .section--family,
  .page--home .section--links {
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
  .page--home [class^=section--] {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
  }
  .page--home [class^=section--] .area--tit {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
  }
  .page--home [class^=section--] .section-tit {
    font-size: 8vw;
    line-height: 1;
  }
  .page--home .section--keyvisual {
    padding-top: 0;
    position: relative;
    margin-bottom: 0;
  }
  .page--home .section--keyvisual .block--favmember {
    margin-bottom: 70px;
  }
  .page--home .section--keyvisual .block--favmember .thumb {
    margin-bottom: 3px;
  }
  .page--home .section--keyvisual .block--favmember .block-tit {
    font-size: 12px;
  }
  .page--home .section--keyvisual .block--schedule {
    padding: 30px 3vw 40px;
    margin-bottom: 50px;
  }
  .page--home .section--keyvisual .block--schedule .block-tit {
    font-size: 12px;
  }
  .page--home .section--keyvisual .block--schedule .block-tit:before {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    position: absolute;
    top: 3px;
  }
  .page--home .section--keyvisual .block--schedule .area--tit {
    transform: translateX(-3vw);
  }
  .page--home .section--keyvisual .block--schedule .area--tit .date {
    font-size: 31px;
  }
  .page--home .section--keyvisual .block--schedule .list--info .tit {
    margin-bottom: 0;
  }
  .page--home .section--keyvisual .block--schedule .cat {
    width: 68px;
    margin-bottom: 3px;
  }
  .page--home .section--keyvisual .block--nextlive, .page--home .section--keyvisual .block--topics {
    box-shadow: 0 0 0 5px #F8B500 inset, 0 0 0 7px #fff inset;
  }
  .page--home .section--keyvisual .block--nextlive .block-tit, .page--home .section--keyvisual .block--topics .block-tit {
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 2px 8px;
    margin-bottom: 15px;
    color: #F8B500;
    background: #fff;
  }
  .page--home .section--keyvisual .block--nextlive a, .page--home .section--keyvisual .block--topics a {
    display: block;
    padding: 5px 0;
  }
  .page--home .section--keyvisual .block--nextlive {
    padding: 20px 5vw;
    margin-bottom: 40px;
  }
  .page--home .section--keyvisual .block--nextlive .date {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
  }
  .page--home .section--keyvisual .block--nextlive .date .week {
    font-size: 10px;
    margin-left: 6px;
  }
  .page--home .section--keyvisual .block--nextlive .tit {
    font-size: 14px;
  }
  .page--home .section--keyvisual .block--topics {
    padding: 25px 5vw 40px;
  }
  .page--home .section--keyvisual .block--topics .date {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    margin-bottom: 3px;
  }
  .page--home .section--keyvisual .block--topics .date .week {
    font-size: 10px;
    margin-left: 6px;
  }
  .page--home .section--keyvisual .block--topics .tit {
    font-size: 14px;
  }
  .page--home .section--keyvisual .block--topics .list__more {
    margin-top: 20px;
  }
  .page--home .section--keyvisual .block--topics + .list__more {
    margin: 15px 0 0;
  }
  .page--home .section--keyvisual .block--topics + .list__more a {
    padding: 5px 0 5px 0;
  }
  .page--home .section--banner,
  .page--home .section--fcbanner {
    position: relative;
    margin: 0 0 70px;
    padding: 0;
  }
  .page--home .section--fcbanner {
    padding-top: 70px;
  }
  .page--home .section--info,
  .page--home .section--fcinfo {
    padding-top: 50px;
  }
  .page--home .section--info .area--tit,
  .page--home .section--fcinfo .area--tit {
    position: absolute;
    top: -1.5em;
    left: 5.5vw;
    background-color: #fff;
    padding: 0 10px;
  }
  .page--home .section--info .area--tit .section-tit,
  .page--home .section--fcinfo .area--tit .section-tit {
    color: #F8B500;
    margin: 0;
  }
  .page--home .section--info .list--info,
  .page--home .section--fcinfo .list--info {
    margin: 0 5.5vw;
  }
  .page--home .section--info .list__more,
  .page--home .section--fcinfo .list__more {
    margin-right: 5.5vw;
  }
  .page--home .section--video .area--tit {
    margin-left: 5.5vw;
  }
  .page--home .section--video .list__more {
    margin-right: 5.5vw;
  }
  .page--home .section--video .ex-link {
    margin-left: 22px;
    font-size: 12px;
  }
  .page--home .section--video .swiper-container {
    padding: 0;
  }
  .page--home .section--video .list--youtube .video {
    margin-bottom: 8px;
  }
  .page--home .section--video .list--youtube .tit {
    font-size: 12px;
  }
  .page--home .section--blog .list--contents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--home .section--blog .list--contents li {
    margin-bottom: 30px;
    width: 48%;
  }
  .page--home .section--blog .list--contents li:nth-child(odd) {
    margin-right: 4%;
  }
  .page--home .section--blog .list--contents li.new:before {
    top: -7px;
    left: -7px;
  }
  .page--home .section--blog .list--contents li.new:after {
    top: -6px;
    left: -6px;
  }
  .page--home .section--blog .list--contents .date {
    margin-bottom: 5px;
  }
  .page--home .section--report li.new:before {
    top: -7px;
    left: -7px;
  }
  .page--home .section--report li.new:after {
    top: -6px;
    left: -6px;
  }
  .page--home .section--movie li.new:before {
    top: -7px;
    left: -7px;
  }
  .page--home .section--movie li.new:after {
    top: -6px;
    left: -6px;
  }
  .page--home .section--family .logo {
    width: 70%;
    margin: 0 auto 20px auto;
  }
  .page--home .section--family .list--menu {
    margin-bottom: 10px;
  }
  .page--home .section--family .txt {
    font-size: 12px;
  }
  .page--home .section--links {
    padding-bottom: 60px;
  }
  .page--home .section--links .list--horizontal {
    justify-content: flex-start;
  }
  .page--home .section--links .list--horizontal li {
    width: 15%;
    margin-bottom: 5px;
  }
  .page--home .section--links .list--horizontal li:not(:last-child) {
    margin-right: 5px;
  }
  body:not(.page--home) .section--list .no-data,
  body:not(.page--home) .section--detail .no-data {
    width: 100%;
    margin: 150px auto !important;
  }
  body:not(.page--home) .section--list .area--tit,
  body:not(.page--home) .section--detail .area--tit {
    position: absolute;
    top: -1.5em;
    left: 5.5vw;
    padding: 0 10px;
    color: #F8B500;
  }
  body:not(.page--home) .section--list .area--tit .badge,
  body:not(.page--home) .section--detail .area--tit .badge {
    margin-left: 16px;
  }
  .page--info .section--detail {
    padding: 130px 5.5vw 70px;
  }
  .page--info .section--detail .block--share {
    margin: 10px 0 50px;
  }
  .page--info .section--detail .new {
    margin-right: 8px;
    font-size: 10px;
  }
  .page--info .section--detail .date {
    font-size: 12px;
  }
  .page--info .section--detail .cat {
    font-size: 10px;
    padding: 3px 6px;
    margin-right: 8px;
  }
  .page--info .section--detail .tit {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .page--info .section--detail .txt {
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .page--info.ticket .list--info li a {
    display: flex;
    flex-direction: column-reverse;
  }
  .page--info.ticket .list--info li a .thumb {
    margin-bottom: 14px;
  }
  .page--info.ticket.theater__event-end .list--info li:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .page--schedule .header-calendar {
    margin-bottom: 12px;
  }
  .page--schedule .header-calendar .block--month .month {
    font-size: 12vw;
    margin-bottom: 30px;
  }
  .page--schedule .header-calendar .block--month .year {
    font-size: 4.5vw;
  }
  .page--schedule .list--category {
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .page--schedule .list--category .form__checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .page--schedule .list--category li {
    line-height: 0;
  }
  .page--schedule .list--schedule li .date {
    text-align: center;
    float: left;
    line-height: 1;
    width: 10%;
  }
  .page--schedule .list--schedule li .date .md {
    font-size: 30px;
  }
  .page--schedule .list--schedule li .date .week {
    font-size: 12px;
  }
  .page--schedule .list--schedule li .date span {
    display: block;
  }
  .page--schedule .list--schedule li .entry_box {
    padding-left: 10px;
  }
  .page--schedule .list--schedule li .entry_box .entry {
    margin-bottom: 15px;
  }
  .page--schedule .list--schedule li .entry_box a {
    display: block;
    padding: 0;
    min-height: 0;
    margin-left: 13vw;
  }
  .page--schedule .cat {
    margin-bottom: 2px;
    border-color: #F8B500;
  }
  .page--disco .section--list {
    padding-top: 50px;
  }
  .page--disco .section--detail {
    padding: 130px 0 70px;
  }
  .page--disco .section--detail .tit {
    margin: 0 0 5px;
    font-size: 18px;
  }
  .page--disco .section--detail .detail__btn {
    margin: 4em 5.5vw 0;
  }
  .page--disco .list-tit {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page--disco .list--jacket li:not(:last-of-type) {
    margin-right: 15px;
  }
  .page--disco .list--jacket .ph {
    margin: 0 auto 10px;
  }
  .page--disco .jacket .ph.one {
    width: auto;
    margin: 0 5.5vw;
  }
  .page--disco .block--disc-detail {
    margin: 0 5.5vw;
    padding-top: 30px;
  }
  .page--disco .block--disc-detail .cat {
    font-size: 12px;
    min-width: 80px;
  }
  .page--disco .block--disc-detail .date {
    margin-bottom: 40px;
  }
  .page--wallpaper .section--detail {
    padding: 130px 5.5vw 70px;
  }
  .page--wallpaper .section--detail .tit {
    margin: 0 0 5px;
    font-size: 18px;
  }
  .page--wallpaper .section--detail .ph {
    width: 100%;
    margin-bottom: 30px;
  }
  .page--wallpaper .section--detail .ph img {
    width: 100%;
  }
  .page--wallpaper .section--detail .point-wrap {
    padding: 20px 10%;
    width: 100%;
    margin: 30px auto;
  }
  .page--wallpaper .section--detail .point-wrap ul {
    text-align: center;
  }
  .page--wallpaper .list-tit {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page--wallpaper.page--download .wpImg {
    margin-bottom: 30px;
  }
  .page--wallpaper.page--download .wpImg img {
    width: 100%;
  }
  .page--wallpaper.page--download .center.txt--sub {
    margin-bottom: 1em;
  }
  .page--blog .section--list.memberblog .list--contents li {
    width: 48%;
  }
  .page--blog .section--list.memberblog .list--contents li:nth-child(odd) {
    margin-right: 4%;
  }
  .page--blog .section--detail {
    padding: 130px 5.5vw 70px;
  }
  .page--blog .section--detail .tit {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .page--blog .section--detail .txt {
    margin: 50px 0;
  }
  .page--blog .section--detail .pager__item--top {
    font-size: 12px;
    height: 40px;
    padding: 0;
  }
  .page--blog .section--detail .pager__item--top a {
    line-height: 40px;
  }
  .page--blog .section--detail .video-wrap {
    margin-bottom: 1em;
    padding-top: 56.25%;
    display: block;
  }
  .page--blog .section--detail .video-wrap video {
    width: 100%;
    height: 100%;
  }
  .page--movie .section--detail {
    padding: 130px 5.5vw 70px;
  }
  .page--movie .section--detail .tit {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .page--movie .section--detail .date {
    font-size: 12px;
  }
  .page--movie .section--detail .block--player {
    margin: 0 0 30px;
  }
  .page--movie .section--detail .txt {
    margin: 50px 0 10px;
  }
  .page--movie .section--detail .txt--sub {
    margin-top: 10px;
  }
  .page--movie.new-movie .section--list .list--contents {
    margin-bottom: 20px;
  }
  .page--movie.new-movie .section--list .block--latest-list, .page--movie.new-movie .section--list .block--category-list {
    margin-bottom: 40px;
  }
  .page--movie.new-movie #new_movie.section--detail {
    padding: 130px 5.5vw 70px;
  }
  .page--movie.new-movie #new_movie.section--detail .block--player {
    position: relative;
    top: 0;
  }
  .page--movie.new-movie #new_movie.section--detail .area--movie .video-js .vjs-play-control {
    top: -19vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .page--support .area--tit {
    top: -1em !important;
  }
  .page--support .area--tit .section-tit {
    font-size: 20px !important;
  }
  .page--support .lead {
    margin-bottom: 30px;
  }
  .page--support .block--text {
    margin-bottom: 30px;
  }
  .page--support .block--text .txt {
    padding-top: 0;
  }
  .page--support .block--text .txt:not(:last-of-type) {
    margin-bottom: 1em;
  }
  .page--support .block--text .block-tit {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: bold;
  }
  .page--support .tit {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 0 1em;
    font-weight: normal;
  }
  .page--support .list--support {
    font-size: 14px;
  }
  .page--support .list--support dd, .page--support .list--support li {
    margin-bottom: 1em;
  }
  .page--support .list--support dd > ol li, .page--support .list--support li > ol li {
    margin-bottom: 0.5em;
  }
  .page--support .list--support.terms {
    margin-top: 30px;
  }
  .page--support .section--detail .sub-txt-list {
    margin-top: 1em;
  }
  .page--support .section--detail .sub-txt-list li {
    margin: 0 0 10px -1em;
    text-indent: -1em;
    padding-left: 3em;
  }
  .page--support.inquiry .list--horizontal li {
    width: 100%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0 10px 0;
  }
  .page--support.inquiry .list--horizontal li a {
    padding: 15px 2%;
    transition: none;
  }
  .page--contact .section--detail.support .section-tit {
    font-size: 6vw;
  }
  .page--contact .block--attention {
    margin-bottom: 30px;
    padding: 4% 6%;
  }
  .page--contact .block--form {
    margin: 30px 0 50px;
  }
  .page--faq .section--list.faq .section-tit,
  .page--faq .section--detail.faq .section-tit {
    font-size: 6vw;
  }
  .page--faq .searchBox {
    margin: 0 auto 40px;
  }
  .page--faq .searchBox input::-moz-placeholder {
    font-size: 0.85em;
  }
  .page--faq .searchBox input::placeholder {
    font-size: 0.85em;
  }
  .page--faq .list--faq {
    margin: 0 0 50px;
  }
  .page--faq .list--faq .icon--q {
    font-size: 14px;
  }
  .page--faq .list--faq li a {
    padding: 5px 1em 5px 2%;
    align-items: baseline;
  }
  .page--faq .block--faq-detail {
    padding: 20px 5%;
    margin: 10px 0 50px;
  }
  .page--faq .block--faq-detail .txt * {
    font-size: 0.95em;
  }
  .page--faq .block--contact {
    font-size: 14px;
  }
  .page--questionnaire .section--detail.questionnaire .section-tit {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
  .page--questionnaire .ph {
    margin-bottom: 30px;
  }
  .page--questionnaire .ph img {
    display: block;
    margin: 0 auto;
  }
  .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 .btn + .btn {
    margin-top: 10px;
  }
  .page--questionnaire .section--detail .form .input--half {
    width: 100% !important;
  }
  .page--questionnaire .section--detail .form .input--quarter {
    width: 50% !important;
  }
  .page--questionnaire .section--detail .form--comfirm dd {
    padding: 20px 4.5vw;
  }
  .page--questionnaire.complete .area--tit {
    top: -1em !important;
  }
  .page--questionnaire.complete .area--tit .section-tit {
    font-size: 20px !important;
  }
  .list--support li,
  .list--support dd {
    margin-bottom: 1em;
  }
  .list--support li > ol li,
  .list--support li > ol li,
  .list--support dd > ol li,
  .list--support dd > ol li {
    margin-bottom: 0.75em;
  }
  .list--support li > p,
  .list--support dd > p {
    margin-bottom: 0.5em;
  }
  .list--support.terms {
    margin-top: 50px;
  }
  .cardAttList {
    background: #fff0ea;
    color: #e63a37;
    border: 1px solid #e63a37;
    font-size: 0.85em;
    margin-bottom: 30px;
    padding: 4% 6%;
  }
  .cardAttList li:first-child {
    font-size: 14px;
    margin: 0 0 0.5em;
  }
  .cardAttList li a {
    text-decoration: underline;
    margin: 0px 0 1.25em;
    display: inline-block;
  }
  .page--whatsske48 .section--detail [class^=block--] {
    margin-bottom: 40px;
  }
  .page--whatsske48 .section--detail [class^=block--] .block-tit {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page--whatsske48 .list--horizontal li {
    width: 100%;
    margin-bottom: 40px;
  }
  .page--whatsske48 .list--horizontal li:not(:last-child) {
    margin-right: 0;
  }
  .page--whatsske48 .block--intro .artist {
    margin: 0 auto 30px;
  }
  .page--whatsske48 .block--produce .area-tit {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page--whatsske48 .block--produce .area-tit .small {
    font-size: 3vw;
  }
  .page--whatsske48 .block--produce .block--inner {
    flex-direction: column;
  }
  .page--whatsske48 .block--produce .thumb {
    margin: 0 auto 14px;
    width: 60%;
  }
  .page--profile .tab_nav {
    margin: 0 auto 50px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page--profile .tab_nav .slick-track {
    display: flex;
    flex-wrap: wrap;
  }
  .page--profile .tab_nav li {
    margin-bottom: 6px;
    padding: 8px 2px;
    width: 48% !important;
  }
  .page--profile .tab_nav li:nth-child(odd) {
    margin-right: 1%;
  }
  .page--profile .block--team:not(:last-child) {
    margin-bottom: 70px;
  }
  .page--profile .list--horizontal > li {
    margin-bottom: 40px;
    width: 48%;
    margin: 0 0 40px 0;
  }
  .page--profile .list--horizontal > li:nth-child(odd) {
    margin-right: 3%;
  }
  .page--profile .list--horizontal figure {
    margin: 0 0 14px;
  }
  .page--profile .list--horizontal figcaption {
    margin-bottom: 20px;
  }
  .page--profile .list--horizontal figcaption span {
    font-size: 12px;
  }
  .page--profile .list--horizontal .item_link_nav li {
    margin: 0;
  }
  .page--profile .list--horizontal .item_link_nav li:not(:last-child) {
    margin-bottom: 6px;
  }
  .page--profile.page--member .block--inner .area-left {
    margin-bottom: 40px;
  }
  .page--profile.page--member .block--inner .area-left .thumb {
    margin: 0 0 18px;
  }
  .page--profile.page--member .block--inner .area-right {
    position: relative;
  }
  .page--profile.page--member .block--inner .area-right dt {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    float: left;
  }
  .page--profile.page--member .block--inner .area-right dt::after {
    content: "";
    display: block;
    clear: both;
  }
  .page--profile.page--member .block--inner .area-right dt span {
    font-size: 10px;
  }
  .page--profile.page--member .block--inner .area-right dd {
    padding-top: 60px;
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area {
    margin-bottom: 50px;
    width: 55%;
    margin: 0 auto 50px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area img {
    width: 100%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area a {
    display: block;
  }
  .page--profile.page--member .block--inner .area-right .unit_logo_area a:hover img {
    transform: translateY(-10px);
  }
  .page--profile.page--member .block--inner .list--sns {
    float: left;
  }
  .page--profile.page--member .block--inner .list--sns > li {
    width: 24px;
    margin-right: 8px;
  }
  .page--profile.page--member .block--inner .list--sns > li i {
    font-size: 22px;
  }
  .page--profile.page--member .block--inner .amebablog {
    float: right;
  }
  .page--profile.page--member .block--inner .list--data {
    padding-top: 50px;
  }
  .page--profile.page--member .block--inner .list--data li {
    padding-left: 8.5em;
    font-size: 12px;
  }
  .page--profile.page--member .block--inner .list--data li .data {
    font-size: 10px;
  }
  .page--akushu .attention {
    padding: 3%;
  }
  .page--akushu .block--content {
    margin: 40px 0 30px;
  }
  .page--akushu .block--zenkoku,
  .page--akushu .block--theater {
    padding: 40px 4%;
  }
  .page--akushu .block--zenkoku {
    margin-bottom: 40px;
  }
  .page--akushu .block-tit_area {
    margin-bottom: 20px;
  }
  .page--akushu .block-tit_area .block-tit {
    font-size: 26px;
  }
  .page--akushu .block-tit_area .sub-tit {
    font-size: 18px;
  }
  .page--akushu .block-tit_area + .lead {
    margin: 40px 0 30px;
  }
  .page--akushu .step_area dt {
    font-size: 16px;
  }
  .page--akushu .step_area dd:not(:last-child) {
    margin-bottom: 20px;
  }
  .page--akushu .step_area .flow:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .page--akushu .step_area .flow:not(:last-child)::after {
    border-width: 0.75em 0.75em 0 0.75em;
    bottom: -0.75em;
  }
  .page--akushu .block--links li:first-child {
    margin-bottom: 10px;
  }
  .page--setlist .tab_nav {
    margin: 0 auto 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--setlist .tab_nav li {
    width: 48%;
    margin-bottom: 10px;
  }
  .page--setlist .tab_nav li:not(:last-child) {
    margin-right: 1%;
  }
  .page--setlist .tab_nav a {
    padding: 10px 2px;
  }
  .page--setlist .block-tit {
    margin-bottom: 10px;
  }
  .page--setlist .list--setlist {
    margin: 0 auto 40px;
  }
  .page--setlist .list--setlist .tit {
    margin-bottom: 1.5em !important;
  }
  .page--setlist .list--setlist .year {
    margin-bottom: 1em;
    font-size: 12px;
  }
  .page--entry_sp .section--detail [class^=block--] {
    margin-bottom: 50px;
  }
  .page--entry_sp .section--detail [class^=block--] table {
    width: 100%;
    margin: 0 auto 30px;
  }
  .page--entry_sp .section--detail [class^=block--] table th {
    width: 100px;
    font-size: 12px;
  }
  .page--entry_sp .section--detail [class^=block--] table td {
    font-size: 12px;
  }
  .page--entry_sp .section--detail [class^=block--] .block-tit {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page--entry_sp .section--detail [class^=block--] .block-tit span {
    font-size: 11px;
  }
  .page--entry_sp .section--detail .block--top {
    margin-bottom: 50px;
  }
  .page--entry_sp .section--detail .block--top .logo {
    text-align: center;
    margin-bottom: 20px;
    width: 30%;
    margin: 0 auto 10px;
  }
  .page--entry_sp .section--detail .block--top .logo img {
    display: block;
    margin: 0 auto 10px;
  }
  .page--entry_sp .section--detail .block--top .name {
    white-space: nowrap;
  }
  .page--entry_sp .section--detail .block--top .lead {
    font-size: 14px;
  }
  .page--entry_sp .section--detail .block--contents .block-tit {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page--entry_sp .section--detail .area--btn .first_login a {
    width: auto;
  }
  .page--entry_sp .section--detail .list--contents {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--entry_sp .section--detail .list--contents li {
    padding: 20px 4.5vw;
  }
  .page--entry_sp .section--detail .list--contents li .tit {
    margin-bottom: 10px;
  }
  .page--entry_sp .section--detail .list--contents li .tit span {
    font-size: 10px;
  }
  .page--entry_sp .note {
    font-size: 15px;
  }
  .page--links .area--tit {
    position: absolute;
    top: -1em;
    left: 5.5vw;
    background-color: #fff;
    padding: 0 10px;
  }
  .page--links .area--tit .section-tit {
    color: #F8B500;
    margin: 0;
  }
  .page--links .list--horizontal li {
    width: 48%;
    margin: 0 0 20px 0;
  }
  .page--links .list--horizontal li:nth-child(odd) {
    margin-right: 4%;
  }
  .page--goods .area--tit {
    position: absolute;
    top: -1em;
    left: 5.5vw;
    background-color: #fff;
    padding: 0 10px;
  }
  .page--goods .area--tit .section-tit {
    color: #F8B500;
    margin: 0;
  }
  .page--goods .list--horizontal li {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .page--goods .list--horizontal li:nth-child(odd) {
    margin-right: 0;
  }
  .page--aboutblog .list--horizontal li,
  .page--aboutmovie .list--horizontal li,
  .page--fancommunity .list--horizontal li {
    width: 100%;
    transition: all 0.6s 0s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0 10px 0;
  }
  .page--aboutblog .list--horizontal li a,
  .page--aboutmovie .list--horizontal li a,
  .page--fancommunity .list--horizontal li a {
    padding: 30px 2%;
    transition: none;
  }
  .page--fanclub .block--tit_logo {
    margin: 0 auto 40px;
  }
  .page--fanclub .block--tokuten {
    margin-bottom: 40px;
  }
  .page--fanclub .list--about dt {
    margin-bottom: 0.25em;
  }
  .page--fanclub .list--about dd {
    margin-bottom: 1em;
  }
  .page--mail .block-tit {
    margin-bottom: 1em;
  }
  .page--mail .download {
    width: 80%;
    margin: 0 auto;
  }
  .page--mail .section--inner {
    margin-bottom: 30px;
  }
  .page--mail .section--inner .block--appli {
    margin-bottom: 1em;
  }
  .page--mail .section--inner .block--web {
    margin-bottom: 0 !important;
  }
  .page--mail .section--inner .thumb {
    margin-bottom: 50px;
  }
  .page--mail .section--detail [class^=block--] {
    margin-bottom: 30px;
  }
  .page--mail .app_info_area a img {
    width: 100%;
  }
  .page--mail .app_info_area img:not(.qr) {
    display: block;
    margin: 0 auto;
    width: auto;
  }
  .page--mail .table--hikaku {
    margin-bottom: 30px;
  }
  .page--mail .table--hikaku th {
    font-size: 12px;
  }
  .page--mail .table--hikaku td {
    vertical-align: middle;
    font-size: 13px;
  }
  .page--mail .table--hikaku .item_tit {
    max-width: 40%;
  }
  .page--theater .section--detail [class^=block--] {
    margin-bottom: 40px;
  }
  .page--theater .section--detail [class^=block--] .block-tit {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .page--theater .area--link {
    margin-bottom: 40px;
    padding: 3%;
  }
  .page--theater .area--link .list--link {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--theater .area--link .list--link li {
    font-size: 12px;
    padding: 0px 5%;
    height: 30px;
    margin-bottom: 5px;
  }
  .page--theater .area--link .list--link li:not(:last-child) {
    margin-right: 1%;
  }
  .page--theater .area--link .list--link a {
    line-height: 30px;
  }
  .page--theater .block--rule .list--support {
    margin: 0 auto 40px;
    padding: 3% 3% 10px;
  }
  .page--theater .block--access .iframe_box {
    width: 100%;
    height: 200px;
    margin-bottom: 14px;
  }
  .page--theater .block--access .iframe_box iframe {
    height: 200px;
  }
  .page--theater .block--setlist .list--team li {
    margin-bottom: 20px;
    padding: 20px 6% 3%;
  }
  .page--theater .block--setlist .list--team .list-tit {
    font-size: 16px;
  }
  .page--theater .block--setlist .list--team .thumb {
    margin: 10px 0 14px;
  }
  .page--theater.join .area--tit {
    top: -1em !important;
  }
  .page--theater.join .section-tit {
    font-size: 20px;
  }
  .page--theater.join .list--ticket li {
    width: 100%;
    margin-bottom: 10px;
  }
  /* .page--first_login
  ------------------------------ */
  .page--first_login .wrap {
    padding-top: 0;
  }
  .page--first_login .section--detail {
    padding-top: 130px;
  }
  .page--first_login .section--detail.first_login .section-tit {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .page--first_login .section--detail.first_login .section-tit .sitename {
    font-size: 12px;
    margin-bottom: 0.5em;
  }
  .page--first_login .section--detail.first_login .section-tit span.attention {
    font-size: 14px;
    border-bottom: 1px solid #e63a37;
    width: 11em;
    margin: 0 auto 30px;
  }
  .page--first_login .block--pid {
    padding: 20px 3% 10px;
    margin-bottom: 30px;
  }
  .page--first_login .block--pid > .txt--basic:first-child {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 0.5em;
  }
  .page--first_login .area--link {
    margin-bottom: 40px;
    padding: 3%;
  }
  .page--first_login .area--link .list--link {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page--first_login .area--link .list--link li {
    font-size: 12px;
    padding: 0px 5%;
    height: 30px;
    margin-bottom: 5px;
  }
  .page--first_login .area--link .list--link li:not(:last-child) {
    margin-right: 1%;
  }
  .page--first_login .area--link .list--link a {
    line-height: 30px;
  }
  .page--first_login .block-tit {
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
  }
  .page--first_login .txt--link a {
    line-height: 1.4;
  }
  .page--first_login .block--lead {
    margin: 0 0 40px;
  }
  .page--first_login .block--lead .txt {
    line-height: 1.4;
    margin-bottom: 1em;
  }
  .page--first_login .block--attention {
    padding: 16px;
    margin: 1.5em 0;
  }
  .page--first_login .block--attention .tit {
    font-size: 14px;
  }
  .page--first_login .block--step .block > .tit {
    font-size: 14px;
  }
  .page--first_login .block--step .list--step > li {
    padding: 5%;
  }
  .page--first_login .block--step .list-tit > span {
    font-size: 12px;
  }
  .page--appli .block-tit {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 4px 2em;
  }
  .page--appli .block--appli:first-child {
    margin-bottom: 70px;
  }
  .page--appli .app_info_area {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .page--appli .app_info_area dt.show_item {
    max-width: 130px;
    margin-right: 1em;
  }
  .page--appli .app_info_area dd.show_item {
    width: 46%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page--appli .app_info_area dd.show_item a {
    display: block;
    margin: 0 5px;
  }
  .page--appli .list__more {
    display: block;
  }
  .page--contact.section--detail .input--half {
    width: 100% !important;
  }
  .page--contact.section--detail .form--post dt {
    margin: 2em 0 0.5em;
  }
}