@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%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

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

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

a {
  background-color: transparent;
}

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

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

[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;
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  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;
     -moz-appearance: textfield;
          appearance: textfield;
  outline-offset: -2px;
}

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  overflow-wrap: break-word;
}

section, main {
  display: block;
}

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

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

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

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

/* ==============================
// Layout & Responsive (レイアウト・レスポンシブ)
// ============================== */
/* ==============================
// Design Tokens (デザイン・トークン)
// ============================== */
/* ==============================
// Typography (タイポグラフィ)
// ============================== */
/* ==============================
// Utilities (ユーティリティ)
// ============================== */
/* ==============================
// Decorations (装飾パーツ)
// ============================== */
/* ==============================
// Animations (アニメーション)
// ============================== */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes walk {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes heart {
  0%, 100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.8);
  }
}
@keyframes heart_2 {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes btnPop {
  0%, 10% {
    transform: scale(1);
  }
  4% {
    transform: scale(1.1);
  }
  7% {
    transform: scale(0.97);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nyoki {
  0% {
    opacity: 1;
    transform: translate(-50%, 150%) rotate(5deg) scaleY(1);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -55%) rotate(-5deg) scaleY(1.1);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scaleY(0.95);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scaleY(1);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -55%) rotate(-5deg) scaleY(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 150%) rotate(5deg) scaleY(0.8);
  }
}
@keyframes fadeInBox {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==============================================================
*  contents
* ============================================================ */
/* ==============================================================
*  contents common integration
* ============================================================ */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body:not([class^=page--], [class*=" page--"]):has(> .wrap),
body[class*=page--] {
  color: #000;
  background: transparent;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-kin-std, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap),
  body[class*=page--] {
    font-size: 14px;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap):has(#page-loading),
body[class*=page--]:has(#page-loading) {
  opacity: 0;
  transition: opacity 0.2s ease;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap):has(#page-loading).is-visible-body,
body[class*=page--]:has(#page-loading).is-visible-body {
  opacity: 1;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer__visible, body:not([class^=page--], [class*=" page--"]):has(> .wrap).is-loading,
body[class*=page--].drawer__visible,
body[class*=page--].is-loading {
  overflow: hidden;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap,
body[class*=page--] .wrap {
  overflow: hidden;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap):not(.page--home) .wrap,
body[class*=page--]:not(.page--home) .wrap {
  visibility: hidden;
  opacity: 0;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap):not(.page--home) .wrap.is-ready,
body[class*=page--]:not(.page--home) .wrap.is-ready {
  visibility: visible;
  opacity: 1;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) a,
body[class*=page--] a {
  color: inherit;
  text-decoration: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) img,
body[class*=page--] img {
  display: block;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .clearfix::after,
body[class*=page--] .clearfix::after {
  clear: both;
  display: block;
  content: "";
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) ::-moz-selection, body[class*=page--] ::-moz-selection {
  color: #fff;
  background: #000;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) ::selection,
body[class*=page--] ::selection {
  color: #fff;
  background: #000;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .svg-parts,
body[class*=page--] .svg-parts {
  display: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) input[type=text],
body:not([class^=page--], [class*=" page--"]):has(> .wrap) input[type=tel],
body:not([class^=page--], [class*=" page--"]):has(> .wrap) input[type=email],
body:not([class^=page--], [class*=" page--"]):has(> .wrap) input[type=password],
body:not([class^=page--], [class*=" page--"]):has(> .wrap) input[type=number],
body[class*=page--] input[type=text],
body[class*=page--] input[type=tel],
body[class*=page--] input[type=email],
body[class*=page--] input[type=password],
body[class*=page--] input[type=number] {
  background: #fff;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .searchBox input[type=text],
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .cmnty_serch input[type=text],
body[class*=page--] .searchBox input[type=text],
body[class*=page--] .cmnty_serch input[type=text] {
  background: rgba(23, 68, 198, 0.1);
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .searchBox input[type=submit],
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .cmnty_serch input[type=submit],
body[class*=page--] .searchBox input[type=submit],
body[class*=page--] .cmnty_serch input[type=submit] {
  color: #1744c6;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .searchBox input[type=submit]:hover,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .cmnty_serch input[type=submit]:hover,
  body[class*=page--] .searchBox input[type=submit]:hover,
  body[class*=page--] .cmnty_serch input[type=submit]:hover {
    opacity: 0.8;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch,
body[class*=page--] .block--cmnty_serch {
  width: 15em;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch,
body[class*=page--] .block--cmnty_serch .cmnty_serch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 1.0416666667vw;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch i,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch .btn,
body[class*=page--] .block--cmnty_serch .cmnty_serch i,
body[class*=page--] .block--cmnty_serch .cmnty_serch .btn {
  position: relative;
  inset: unset;
  z-index: inherit;
  line-height: 2;
  transform: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch i,
body[class*=page--] .block--cmnty_serch .cmnty_serch i {
  color: #1744c6;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch .btn,
body[class*=page--] .block--cmnty_serch .cmnty_serch .btn {
  height: auto;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch .btn--main,
body[class*=page--] .block--cmnty_serch .cmnty_serch .btn--main {
  display: block;
  color: #fff;
  background: #1744c6;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch input[type=text],
body[class*=page--] .block--cmnty_serch .cmnty_serch input[type=text] {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  text-indent: 1.4em;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .block--cmnty_serch .cmnty_serch .datepicker,
body[class*=page--] .block--cmnty_serch .cmnty_serch .datepicker {
  padding: 0.5208333333vw 1.0416666667vw;
  font-size: clamp(0.7875rem, 0.9375vw, 1.2375rem);
  color: #000;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) #ui-datepicker-div .ui-datepicker-buttonpane button,
body[class*=page--] #ui-datepicker-div .ui-datepicker-buttonpane button {
  background: #1744c6;
}
body .wrap .date,
body .wrap .category,
body .wrap .section-tit,
body .wrap .tit,
body .wrap .list__more a,
body .wrap .block--date,
body .wrap .block--month,
body .wrap .block--category li,
body .wrap .block--share .share,
body .wrap .g-nav .g-nav--item a,
body .wrap .block--login {
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-kin-std, sans-serif;
}
body .wrap .detail__btn a,
body .wrap .block--pager li {
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-kin-std, sans-serif;
}
body .wrap #area--fc .date,
body .wrap #area--fc .category,
body .wrap #area--fc .section-tit,
body .wrap #area--fc .tit,
body .wrap #area--fc .list__more a,
body .wrap #area--fc .block--date,
body .wrap #area--fc .block--month,
body .wrap #area--fc .block--category li,
body .wrap #area--fc .block--share .share,
body .wrap #area--fc .g-nav .g-nav--item a,
body .wrap #area--fc .block--login,
body .wrap .drawer-inner--fc .date,
body .wrap .drawer-inner--fc .category,
body .wrap .drawer-inner--fc .section-tit,
body .wrap .drawer-inner--fc .tit,
body .wrap .drawer-inner--fc .list__more a,
body .wrap .drawer-inner--fc .block--date,
body .wrap .drawer-inner--fc .block--month,
body .wrap .drawer-inner--fc .block--category li,
body .wrap .drawer-inner--fc .block--share .share,
body .wrap .drawer-inner--fc .g-nav .g-nav--item a,
body .wrap .drawer-inner--fc .block--login {
  font-family: din-condensed, a-otf-ud-shin-go-con80-pr6n, sans-serif;
}
body .wrap .date {
  opacity: 1;
}
body.page--blog .wrap .date,
body.page--blog .wrap .category,
body.page--blog .wrap .section-tit,
body.page--blog .wrap .tit,
body.page--blog .wrap .list__more a,
body.page--blog .wrap .block--date,
body.page--blog .wrap .block--month,
body.page--blog .wrap .block--category li,
body.page--blog .wrap .block--share .share,
body.page--blog .wrap .g-nav .g-nav--item a,
body.page--blog .wrap .block--login, body.page--photo .wrap .date,
body.page--photo .wrap .category,
body.page--photo .wrap .section-tit,
body.page--photo .wrap .tit,
body.page--photo .wrap .list__more a,
body.page--photo .wrap .block--date,
body.page--photo .wrap .block--month,
body.page--photo .wrap .block--category li,
body.page--photo .wrap .block--share .share,
body.page--photo .wrap .g-nav .g-nav--item a,
body.page--photo .wrap .block--login, body.page--movie .wrap .date,
body.page--movie .wrap .category,
body.page--movie .wrap .section-tit,
body.page--movie .wrap .tit,
body.page--movie .wrap .list__more a,
body.page--movie .wrap .block--date,
body.page--movie .wrap .block--month,
body.page--movie .wrap .block--category li,
body.page--movie .wrap .block--share .share,
body.page--movie .wrap .g-nav .g-nav--item a,
body.page--movie .wrap .block--login, body.page--chat-community .wrap .date,
body.page--chat-community .wrap .category,
body.page--chat-community .wrap .section-tit,
body.page--chat-community .wrap .tit,
body.page--chat-community .wrap .list__more a,
body.page--chat-community .wrap .block--date,
body.page--chat-community .wrap .block--month,
body.page--chat-community .wrap .block--category li,
body.page--chat-community .wrap .block--share .share,
body.page--chat-community .wrap .g-nav .g-nav--item a,
body.page--chat-community .wrap .block--login, body.page--feature .wrap .date,
body.page--feature .wrap .category,
body.page--feature .wrap .section-tit,
body.page--feature .wrap .tit,
body.page--feature .wrap .list__more a,
body.page--feature .wrap .block--date,
body.page--feature .wrap .block--month,
body.page--feature .wrap .block--category li,
body.page--feature .wrap .block--share .share,
body.page--feature .wrap .g-nav .g-nav--item a,
body.page--feature .wrap .block--login {
  font-family: din-condensed, a-otf-ud-shin-go-con80-pr6n, sans-serif;
  font-weight: 400;
}
body.page--blog .wrap .drawer-inner--official .date,
body.page--blog .wrap .drawer-inner--official .category,
body.page--blog .wrap .drawer-inner--official .section-tit,
body.page--blog .wrap .drawer-inner--official .tit,
body.page--blog .wrap .drawer-inner--official .list__more a,
body.page--blog .wrap .drawer-inner--official .block--date,
body.page--blog .wrap .drawer-inner--official .block--month,
body.page--blog .wrap .drawer-inner--official .block--category li,
body.page--blog .wrap .drawer-inner--official .block--share .share,
body.page--blog .wrap .drawer-inner--official .g-nav .g-nav--item a,
body.page--blog .wrap .drawer-inner--official .block--login, body.page--photo .wrap .drawer-inner--official .date,
body.page--photo .wrap .drawer-inner--official .category,
body.page--photo .wrap .drawer-inner--official .section-tit,
body.page--photo .wrap .drawer-inner--official .tit,
body.page--photo .wrap .drawer-inner--official .list__more a,
body.page--photo .wrap .drawer-inner--official .block--date,
body.page--photo .wrap .drawer-inner--official .block--month,
body.page--photo .wrap .drawer-inner--official .block--category li,
body.page--photo .wrap .drawer-inner--official .block--share .share,
body.page--photo .wrap .drawer-inner--official .g-nav .g-nav--item a,
body.page--photo .wrap .drawer-inner--official .block--login, body.page--movie .wrap .drawer-inner--official .date,
body.page--movie .wrap .drawer-inner--official .category,
body.page--movie .wrap .drawer-inner--official .section-tit,
body.page--movie .wrap .drawer-inner--official .tit,
body.page--movie .wrap .drawer-inner--official .list__more a,
body.page--movie .wrap .drawer-inner--official .block--date,
body.page--movie .wrap .drawer-inner--official .block--month,
body.page--movie .wrap .drawer-inner--official .block--category li,
body.page--movie .wrap .drawer-inner--official .block--share .share,
body.page--movie .wrap .drawer-inner--official .g-nav .g-nav--item a,
body.page--movie .wrap .drawer-inner--official .block--login, body.page--chat-community .wrap .drawer-inner--official .date,
body.page--chat-community .wrap .drawer-inner--official .category,
body.page--chat-community .wrap .drawer-inner--official .section-tit,
body.page--chat-community .wrap .drawer-inner--official .tit,
body.page--chat-community .wrap .drawer-inner--official .list__more a,
body.page--chat-community .wrap .drawer-inner--official .block--date,
body.page--chat-community .wrap .drawer-inner--official .block--month,
body.page--chat-community .wrap .drawer-inner--official .block--category li,
body.page--chat-community .wrap .drawer-inner--official .block--share .share,
body.page--chat-community .wrap .drawer-inner--official .g-nav .g-nav--item a,
body.page--chat-community .wrap .drawer-inner--official .block--login, body.page--feature .wrap .drawer-inner--official .date,
body.page--feature .wrap .drawer-inner--official .category,
body.page--feature .wrap .drawer-inner--official .section-tit,
body.page--feature .wrap .drawer-inner--official .tit,
body.page--feature .wrap .drawer-inner--official .list__more a,
body.page--feature .wrap .drawer-inner--official .block--date,
body.page--feature .wrap .drawer-inner--official .block--month,
body.page--feature .wrap .drawer-inner--official .block--category li,
body.page--feature .wrap .drawer-inner--official .block--share .share,
body.page--feature .wrap .drawer-inner--official .g-nav .g-nav--item a,
body.page--feature .wrap .drawer-inner--official .block--login {
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-kin-std, sans-serif;
}
body.page--blog.page--contact .wrap .date,
body.page--blog.page--contact .wrap .category,
body.page--blog.page--contact .wrap .section-tit,
body.page--blog.page--contact .wrap .tit,
body.page--blog.page--contact .wrap .list__more a,
body.page--blog.page--contact .wrap .block--date,
body.page--blog.page--contact .wrap .block--month,
body.page--blog.page--contact .wrap .block--category li,
body.page--blog.page--contact .wrap .block--share .share,
body.page--blog.page--contact .wrap .g-nav .g-nav--item a,
body.page--blog.page--contact .wrap .block--login, body.page--photo.page--contact .wrap .date,
body.page--photo.page--contact .wrap .category,
body.page--photo.page--contact .wrap .section-tit,
body.page--photo.page--contact .wrap .tit,
body.page--photo.page--contact .wrap .list__more a,
body.page--photo.page--contact .wrap .block--date,
body.page--photo.page--contact .wrap .block--month,
body.page--photo.page--contact .wrap .block--category li,
body.page--photo.page--contact .wrap .block--share .share,
body.page--photo.page--contact .wrap .g-nav .g-nav--item a,
body.page--photo.page--contact .wrap .block--login, body.page--movie.page--contact .wrap .date,
body.page--movie.page--contact .wrap .category,
body.page--movie.page--contact .wrap .section-tit,
body.page--movie.page--contact .wrap .tit,
body.page--movie.page--contact .wrap .list__more a,
body.page--movie.page--contact .wrap .block--date,
body.page--movie.page--contact .wrap .block--month,
body.page--movie.page--contact .wrap .block--category li,
body.page--movie.page--contact .wrap .block--share .share,
body.page--movie.page--contact .wrap .g-nav .g-nav--item a,
body.page--movie.page--contact .wrap .block--login, body.page--chat-community.page--contact .wrap .date,
body.page--chat-community.page--contact .wrap .category,
body.page--chat-community.page--contact .wrap .section-tit,
body.page--chat-community.page--contact .wrap .tit,
body.page--chat-community.page--contact .wrap .list__more a,
body.page--chat-community.page--contact .wrap .block--date,
body.page--chat-community.page--contact .wrap .block--month,
body.page--chat-community.page--contact .wrap .block--category li,
body.page--chat-community.page--contact .wrap .block--share .share,
body.page--chat-community.page--contact .wrap .g-nav .g-nav--item a,
body.page--chat-community.page--contact .wrap .block--login, body.page--feature.page--contact .wrap .date,
body.page--feature.page--contact .wrap .category,
body.page--feature.page--contact .wrap .section-tit,
body.page--feature.page--contact .wrap .tit,
body.page--feature.page--contact .wrap .list__more a,
body.page--feature.page--contact .wrap .block--date,
body.page--feature.page--contact .wrap .block--month,
body.page--feature.page--contact .wrap .block--category li,
body.page--feature.page--contact .wrap .block--share .share,
body.page--feature.page--contact .wrap .g-nav .g-nav--item a,
body.page--feature.page--contact .wrap .block--login {
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-kin-std, sans-serif;
}

.txt--basic {
  margin: 0 0 3em;
}
.txt--basic + .txt--basic {
  margin: 1.2em 0 0;
}

.txt--sub {
  font-size: 0.85em;
  line-height: 1.8em;
}

.txt--link {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.red {
  color: #d00;
}

.br {
  display: inline-block;
}

body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .section-tit,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .list__more a,
[class^=page--] .wrap .section-tit,
[class^=page--] .wrap .list__more a {
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .list .tit,
[class^=page--] .wrap .list .tit {
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}

.section-tit {
  margin-bottom: 0;
}

#area--fc .section-tit,
#area--fc .list__more a {
  font-size: clamp(1.70625rem, 2.03125vw, 2.68125rem);
  color: #f2eab6;
}

body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .drawer__btn,
[class^=page--] .wrap .drawer__btn {
  position: static;
  top: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .drawer__btn,
  [class^=page--] .wrap .drawer__btn {
    width: auto;
    height: auto;
    mix-blend-mode: initial;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .drawer__btn span,
[class^=page--] .wrap .drawer__btn span {
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .drawer__btn span,
  [class^=page--] .wrap .drawer__btn span {
    position: static;
    width: auto;
    height: auto;
    background: none;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .drawer__btn span::before,
[class^=page--] .wrap .drawer__btn span::before {
  white-space: nowrap;
  content: "MENU";
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .drawer__btn:hover,
  [class^=page--] .wrap .drawer__btn:hover {
    color: #1744c6;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header,
[class^=page--] .wrap .header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 1.5vw;
  color: #fff;
  pointer-events: none;
  background: none;
  transition: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo,
[class^=page--] .wrap .header h1.logo {
  position: static;
  width: 13.0208333333vw;
  height: auto;
  padding: 0;
  margin: 0;
  pointer-events: auto;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo,
  [class^=page--] .wrap .header h1.logo {
    display: block;
    width: 24vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo a,
[class^=page--] .wrap .header h1.logo a {
  display: block;
  padding: 0;
  transition: fill 0 0s ease;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo a svg,
[class^=page--] .wrap .header h1.logo a svg {
  fill: currentcolor;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo a:hover,
  [class^=page--] .wrap .header h1.logo a:hover {
    color: #1744c6;
    opacity: 1;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo a::after,
[class^=page--] .wrap .header h1.logo a::after {
  display: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header .inner,
[class^=page--] .wrap .header .inner {
  display: none;
  pointer-events: auto;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header.scrolled,
[class^=page--] .wrap .header.scrolled {
  color: #000;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header.scrolled-fc,
[class^=page--] .wrap .header.scrolled-fc {
  color: #00ff00;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).window-scroll #header-nav:not(:has(> .inner .block--login.pc)),
[class^=page--].window-scroll #header-nav:not(:has(> .inner .block--login.pc)) {
  padding: 1.5vw;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).window-scroll .header,
[class^=page--].window-scroll .header {
  background: transparent;
  box-shadow: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible,
[class^=page--].drawer-visible {
  overflow: hidden;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header h1.logo,
[class^=page--].drawer-visible .header h1.logo {
  display: block;
  color: #000;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner,
[class^=page--].drawer-visible .header .inner {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer,
[class^=page--].drawer-visible .header .inner .drawer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer,
  [class^=page--].drawer-visible .header .inner .drawer {
    flex-direction: column;
    padding: 0;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official,
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc {
  width: 100%;
  height: 100%;
  padding: 1.5625vw;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc {
    padding: 4vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav .nav,
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav .nav,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav .nav,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav .nav {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav .nav li a::after,
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav .nav li a::after,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav .nav li a::after,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav .nav li a::after {
  display: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li,
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li {
  display: block;
  text-align: left;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li {
    width: auto;
    margin: 0;
  }
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li a,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li a,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a {
    white-space: nowrap;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li a::after,
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a::after,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav li a::after,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a::after {
  display: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official {
  background: #fff;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official {
    display: flex;
    gap: 5.3333333333vw;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 33.3333333333vw;
    padding-bottom: 8vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav {
  width: 50%;
  padding: 0;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav {
    width: calc((100% - 5.3333333333vw) / 2);
    margin: 0;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item {
  margin-right: 0;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item {
    margin-bottom: 0;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item a,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item a {
  position: relative;
  padding: 0 0 0.01em 1.4em;
  color: #000;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item a::before,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item a::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: block;
  width: 0.85em;
  height: 0.85em;
  content: "";
  border: 1.5px solid currentcolor;
  border-radius: 1000px;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item a:hover::before,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item a:hover::before {
    background: currentcolor;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item:nth-child(1),
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item:nth-child(1) {
  margin-bottom: 1.5625vw;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item:nth-child(1),
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .nav .g-nav--item:nth-child(1) {
    margin-bottom: 4vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns {
  margin-top: 2.0833333333vw;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  text-align: left;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns {
    margin: 0 0 -4vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns .nav,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns .nav {
  flex-direction: row;
  gap: 16px;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns .nav,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns .nav {
    justify-content: flex-end;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li {
  margin: 0;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li a,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li a {
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  color: #000;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li a,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li a {
    padding: 0;
  }
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li a:hover,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--official .g-nav--sns li a:hover {
    color: #1744c6;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc {
  background: #357baf;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc {
    display: flex;
    flex-wrap: wrap;
    gap: 5.3333333333vw;
    padding-top: 8vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo {
  display: flex;
  gap: 0.5208333333vw;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1.5625vw;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo svg,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo svg {
  width: auto;
  height: 2.6041666667vw;
  fill: #f2eab6;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo:hover svg,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo:hover svg {
    fill: #c1272d;
  }
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo {
    width: 60vw;
    margin-bottom: 6.6666666667vw;
  }
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo svg,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .fc-logo svg {
    height: 9.3333333333vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav {
  width: 50%;
  padding: 0;
  margin: 0 auto 3.125vw 0;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav {
    width: calc((100% - 5.3333333333vw) / 5 * 3);
    margin: 0;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a {
  position: relative;
  padding: 0 0 0 1.3em;
  font-size: clamp(1.70625rem, 2.03125vw, 2.68125rem);
  line-height: 0.8;
  color: #f2eab6;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a {
    padding: 0 0 0 1.05em;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a::before,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a::before {
  position: absolute;
  left: 0;
  display: block;
  width: 0.75em;
  height: 0.8em;
  content: "";
  background-color: currentcolor;
  border: none;
  border-radius: unset;
  -webkit-mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02_line.svg") no-repeat center center;
          mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02_line.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a:hover::before,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li a:hover::before {
    background-color: currentcolor;
    -webkit-mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02.svg") no-repeat center center;
            mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02.svg") no-repeat center center;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li.txt--ja a,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li.txt--ja a {
  padding-left: 1.7em;
  font-size: clamp(1.26875rem, 1.5104166667vw, 1.99375rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li.txt--ja a,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li.txt--ja a {
    padding-left: 1.4em;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li.txt--ja a::before,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .g-nav li.txt--ja a::before {
  width: 1.01em;
  height: 1.08em;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .block--login,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .block--login {
    width: calc((100% - 5.3333333333vw) / 5 * 2);
  }
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav__list--login,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav__list--login {
    padding: 0;
    margin: 0;
    border: none;
  }
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav__list--login li,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav__list--login li {
    width: 100%;
    margin: 0;
  }
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav__list--login li a,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav__list--login li a {
    width: 100%;
    text-align: center;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav li a,
[class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav li a {
  color: #f2eab6;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav li a:hover::before,
  [class^=page--].drawer-visible .header .inner .drawer .drawer-inner--fc .block--login .nav li a:hover::before {
    color: #c1272d;
  }
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .drawer__btn:hover span,
  [class^=page--].drawer-visible .header .drawer__btn:hover span {
    color: #1744c6;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .drawer__btn span,
[class^=page--].drawer-visible .header .drawer__btn span {
  color: #fff;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .drawer__btn span,
  [class^=page--].drawer-visible .header .drawer__btn span {
    color: #000;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header .drawer__btn span::before,
[class^=page--].drawer-visible .header .drawer__btn span::before {
  content: "CLOSE";
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header.scrolled, body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header.scrolled-fc,
[class^=page--].drawer-visible .header.scrolled,
[class^=page--].drawer-visible .header.scrolled-fc {
  color: #000;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header.scrolled .drawer__btn:hover span, body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .header.scrolled-fc .drawer__btn:hover span,
  [class^=page--].drawer-visible .header.scrolled .drawer__btn:hover span,
  [class^=page--].drawer-visible .header.scrolled-fc .drawer__btn:hover span {
    color: #1744c6;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .drawer__btn span,
[class^=page--].drawer-visible .drawer__btn span {
  transform: none;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap).drawer-visible .wrap .section--hero-img .g-nav--sns,
[class^=page--].drawer-visible .wrap .section--hero-img .g-nav--sns {
  display: none;
}

body:not(.page--home) .wrap .header {
  color: #000;
}

body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer,
[class^=page--] .wrap footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 4.1666666667vw 1.5vw;
  background-color: #357baf;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer,
  [class^=page--] .wrap footer {
    padding-top: 16vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .footer__inner,
[class^=page--] .wrap footer .footer__inner {
  display: unset;
  height: auto;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .footer__inner,
  [class^=page--] .wrap footer .footer__inner {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer a,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .copyright,
[class^=page--] .wrap footer a,
[class^=page--] .wrap footer .copyright {
  color: #f2eab6 !important;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .copyright,
[class^=page--] .wrap footer .copyright {
  position: static;
  width: auto;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .nav__list--sns,
[class^=page--] .wrap footer .nav__list--sns {
  display: none;
  width: auto;
  margin: 0 auto;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .list-tit,
[class^=page--] .wrap footer .list-tit {
  color: #f2eab6;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .list-tit::before, body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap footer .list-tit::after,
[class^=page--] .wrap footer .list-tit::before,
[class^=page--] .wrap footer .list-tit::after {
  background: currentcolor;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap):not(.page--home) .wrap footer,
  [class^=page--]:not(.page--home) .wrap footer {
    padding-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap):not(.page--home) .wrap footer .footer__inner,
  [class^=page--]:not(.page--home) .wrap footer .footer__inner {
    margin-bottom: 0;
  }
}

body .wrap .block--pager {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  height: auto;
  padding-inline: 3em;
  font-size: initial;
}
@media screen and (max-width: 960px) {
  body .wrap .block--pager {
    margin: 5em auto 0;
  }
}
body .wrap .block--pager .pager__item--older, body .wrap .block--pager .pager__item--current, body .wrap .block--pager .pager__item--other, body .wrap .block--pager .pager__item--newer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
  margin: 0;
  color: #000;
  border-radius: 1000px;
}
body .wrap .block--pager .pager__item--older::before, body .wrap .block--pager .pager__item--current::before, body .wrap .block--pager .pager__item--other::before, body .wrap .block--pager .pager__item--newer::before {
  display: none;
}
body .wrap .block--pager .pager__item--older a,
body .wrap .block--pager .pager__item--older span, body .wrap .block--pager .pager__item--current a,
body .wrap .block--pager .pager__item--current span, body .wrap .block--pager .pager__item--other a,
body .wrap .block--pager .pager__item--other span, body .wrap .block--pager .pager__item--newer a,
body .wrap .block--pager .pager__item--newer span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
  line-height: 1;
  opacity: 1;
}
body .wrap .block--pager .pager__item--older a::after,
body .wrap .block--pager .pager__item--older span::after, body .wrap .block--pager .pager__item--current a::after,
body .wrap .block--pager .pager__item--current span::after, body .wrap .block--pager .pager__item--other a::after,
body .wrap .block--pager .pager__item--other span::after, body .wrap .block--pager .pager__item--newer a::after,
body .wrap .block--pager .pager__item--newer span::after {
  display: none;
}
@media (any-hover: hover) {
  body .wrap .block--pager .pager__item--older:hover, body .wrap .block--pager .pager__item--current:hover, body .wrap .block--pager .pager__item--other:hover, body .wrap .block--pager .pager__item--newer:hover {
    color: #fff;
    background: #1744c6;
  }
}
body .wrap .block--pager .pager__item--older:has(span), body .wrap .block--pager .pager__item--newer:has(span) {
  opacity: 0.2;
}
body .wrap .block--pager .pager__item--older .fa-solid, body .wrap .block--pager .pager__item--newer .fa-solid {
  font-size: 1em;
}
body .wrap .block--pager .pager__item--older {
  position: absolute;
  top: 0;
  left: 0;
}
body .wrap .block--pager .pager__item--newer {
  position: absolute;
  top: 0;
  right: 0;
}
body .wrap .block--pager .pager__item--current, body .wrap .block--pager .pager__item--other {
  width: 2em;
  height: 2em;
}
body .wrap .block--pager .pager__item--current {
  color: #fff;
  pointer-events: none;
  background: #000;
}

.page--blog .wrap .block--pager .pager__item--older, .page--blog .wrap .block--pager .pager__item--current, .page--blog .wrap .block--pager .pager__item--other, .page--blog .wrap .block--pager .pager__item--newer,
.page--photo .wrap .block--pager .pager__item--older,
.page--photo .wrap .block--pager .pager__item--current,
.page--photo .wrap .block--pager .pager__item--other,
.page--photo .wrap .block--pager .pager__item--newer,
.page--movie .wrap .block--pager .pager__item--older,
.page--movie .wrap .block--pager .pager__item--current,
.page--movie .wrap .block--pager .pager__item--other,
.page--movie .wrap .block--pager .pager__item--newer,
.page--chat-community .wrap .block--pager .pager__item--older,
.page--chat-community .wrap .block--pager .pager__item--current,
.page--chat-community .wrap .block--pager .pager__item--other,
.page--chat-community .wrap .block--pager .pager__item--newer,
.page--feature .wrap .block--pager .pager__item--older,
.page--feature .wrap .block--pager .pager__item--current,
.page--feature .wrap .block--pager .pager__item--other,
.page--feature .wrap .block--pager .pager__item--newer {
  color: #f2eab6;
  border: 1px solid #f2eab6;
}
.page--blog .wrap .block--pager .pager__item--current,
.page--photo .wrap .block--pager .pager__item--current,
.page--movie .wrap .block--pager .pager__item--current,
.page--chat-community .wrap .block--pager .pager__item--current,
.page--feature .wrap .block--pager .pager__item--current {
  color: #357baf;
  background: #f2eab6;
}

body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__join a,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__login a,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__mypage a,
[class^=page--] .wrap .g-nav--item__join a,
[class^=page--] .wrap .g-nav--item__login a,
[class^=page--] .wrap .g-nav--item__mypage a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6666666667vw 3.75vw;
  font-family: din-condensed, sans-serif;
  font-size: clamp(2.625rem, 3.125vw, 4.125rem);
  line-height: 1;
  color: #f2eab6;
  text-transform: uppercase;
  background: transparent;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__join a,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__login a,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__mypage a,
  [class^=page--] .wrap .g-nav--item__join a,
  [class^=page--] .wrap .g-nav--item__login a,
  [class^=page--] .wrap .g-nav--item__mypage a {
    padding: 4.2666666667vw 9.6vw;
    font-size: clamp(2rem, 5.3333333333vw, 3rem);
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__join a::before,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__login a::before,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__mypage a::before,
[class^=page--] .wrap .g-nav--item__join a::before,
[class^=page--] .wrap .g-nav--item__login a::before,
[class^=page--] .wrap .g-nav--item__mypage a::before {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__join a::before,
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__mypage a::before,
[class^=page--] .wrap .g-nav--item__join a::before,
[class^=page--] .wrap .g-nav--item__mypage a::before {
  box-sizing: border-box;
  background-clip: padding-box;
  border: 0.5208333333vw solid transparent;
  border-image-source: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/border-01.png");
  border-image-slice: 33.3333333333%;
  border-image-repeat: round;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__join a::before,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__mypage a::before,
  [class^=page--] .wrap .g-nav--item__join a::before,
  [class^=page--] .wrap .g-nav--item__mypage a::before {
    border: 1.5625vw solid transparent;
    border-image-source: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/border-01.png");
    border-image-slice: 33.3333333333%;
    border-image-repeat: round;
  }
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__join a:hover::before,
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__mypage a:hover::before,
  [class^=page--] .wrap .g-nav--item__join a:hover::before,
  [class^=page--] .wrap .g-nav--item__mypage a:hover::before {
    filter: brightness(0) saturate(100%) invert(20%) sepia(85%) saturate(3065%) hue-rotate(345deg) brightness(81%) contrast(97%);
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__login a::before,
[class^=page--] .wrap .g-nav--item__login a::before {
  box-sizing: border-box;
  background-clip: padding-box;
  border: 0.5208333333vw solid transparent;
  border-image-source: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/border-02.png");
  border-image-slice: 25%;
  border-image-repeat: round;
}
@media screen and (max-width: 960px) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__login a::before,
  [class^=page--] .wrap .g-nav--item__login a::before {
    border: 1.5625vw solid transparent;
    border-image-source: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/border-02.png");
    border-image-slice: 25%;
    border-image-repeat: round;
  }
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .g-nav--item__login a:hover::before,
  [class^=page--] .wrap .g-nav--item__login a:hover::before {
    filter: brightness(0) saturate(100%) invert(20%) sepia(85%) saturate(3065%) hue-rotate(345deg) brightness(81%) contrast(97%);
  }
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .block--login,
[class^=page--] .wrap .block--login {
  position: static;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .block--login .nav__list--login,
[class^=page--] .wrap .block--login .nav__list--login {
  display: flex;
  gap: 2.0833333333vw;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .btn--main,
[class^=page--] .wrap .btn--main {
  background: #1744c6;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .detail__btn a,
[class^=page--] .wrap .detail__btn a {
  --btn-color: #000; /* 通常時の文字色・枠線の色・ホバー時の背景色 */
  --btn-text-hover: #fff; /* ホバー時の文字色 */
  padding: 0.2em 0.5em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 1000px;
}
body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .detail__btn a::after,
[class^=page--] .wrap .detail__btn a::after {
  display: none;
}
@media (any-hover: hover) {
  body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .detail__btn a:hover,
  [class^=page--] .wrap .detail__btn a:hover {
    color: var(--btn-text-hover);
    background: var(--btn-color);
    opacity: 1;
  }
}

.wrap .list .tit-wrapper,
.wrap .list--thumbnail .tit-wrapper,
.wrap .list--photo .tit-wrapper,
.wrap .list--movie .tit-wrapper,
.wrap .list--schedule .tit-wrapper,
.wrap .list--discography .tit-wrapper {
  display: inline-flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wrap .list .tit-wrapper .new--icon,
.wrap .list--thumbnail .tit-wrapper .new--icon,
.wrap .list--photo .tit-wrapper .new--icon,
.wrap .list--movie .tit-wrapper .new--icon,
.wrap .list--schedule .tit-wrapper .new--icon,
.wrap .list--discography .tit-wrapper .new--icon {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 3px 5px 2px;
  font-size: max(50%, 12px);
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #1744c6;
}
@media screen and (max-width: 960px) {
  .wrap .list .tit-wrapper .new--icon,
  .wrap .list--thumbnail .tit-wrapper .new--icon,
  .wrap .list--photo .tit-wrapper .new--icon,
  .wrap .list--movie .tit-wrapper .new--icon,
  .wrap .list--schedule .tit-wrapper .new--icon,
  .wrap .list--discography .tit-wrapper .new--icon {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list .list__item,
.wrap .list .sys-schedule,
.wrap .list--thumbnail .list__item,
.wrap .list--thumbnail .sys-schedule,
.wrap .list--photo .list__item,
.wrap .list--photo .sys-schedule,
.wrap .list--movie .list__item,
.wrap .list--movie .sys-schedule,
.wrap .list--schedule .list__item,
.wrap .list--schedule .sys-schedule,
.wrap .list--discography .list__item,
.wrap .list--discography .sys-schedule {
  border-bottom: 1px solid #ccc;
}
.wrap .list .list__item a,
.wrap .list .sys-schedule a,
.wrap .list--thumbnail .list__item a,
.wrap .list--thumbnail .sys-schedule a,
.wrap .list--photo .list__item a,
.wrap .list--photo .sys-schedule a,
.wrap .list--movie .list__item a,
.wrap .list--movie .sys-schedule a,
.wrap .list--schedule .list__item a,
.wrap .list--schedule .sys-schedule a,
.wrap .list--discography .list__item a,
.wrap .list--discography .sys-schedule a {
  padding: 1.0416666667vw 0;
  color: #000;
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item a,
  .wrap .list .sys-schedule a,
  .wrap .list--thumbnail .list__item a,
  .wrap .list--thumbnail .sys-schedule a,
  .wrap .list--photo .list__item a,
  .wrap .list--photo .sys-schedule a,
  .wrap .list--movie .list__item a,
  .wrap .list--movie .sys-schedule a,
  .wrap .list--schedule .list__item a,
  .wrap .list--schedule .sys-schedule a,
  .wrap .list--discography .list__item a,
  .wrap .list--discography .sys-schedule a {
    padding: 2.6666666667vw 0;
  }
}
@media (any-hover: hover) {
  .wrap .list .list__item a:hover,
  .wrap .list .sys-schedule a:hover,
  .wrap .list--thumbnail .list__item a:hover,
  .wrap .list--thumbnail .sys-schedule a:hover,
  .wrap .list--photo .list__item a:hover,
  .wrap .list--photo .sys-schedule a:hover,
  .wrap .list--movie .list__item a:hover,
  .wrap .list--movie .sys-schedule a:hover,
  .wrap .list--schedule .list__item a:hover,
  .wrap .list--schedule .sys-schedule a:hover,
  .wrap .list--discography .list__item a:hover,
  .wrap .list--discography .sys-schedule a:hover {
    opacity: 1;
  }
  .wrap .list .list__item a:hover .tit::before,
  .wrap .list .sys-schedule a:hover .tit::before,
  .wrap .list--thumbnail .list__item a:hover .tit::before,
  .wrap .list--thumbnail .sys-schedule a:hover .tit::before,
  .wrap .list--photo .list__item a:hover .tit::before,
  .wrap .list--photo .sys-schedule a:hover .tit::before,
  .wrap .list--movie .list__item a:hover .tit::before,
  .wrap .list--movie .sys-schedule a:hover .tit::before,
  .wrap .list--schedule .list__item a:hover .tit::before,
  .wrap .list--schedule .sys-schedule a:hover .tit::before,
  .wrap .list--discography .list__item a:hover .tit::before,
  .wrap .list--discography .sys-schedule a:hover .tit::before {
    background: currentcolor;
  }
}
.wrap .list .list__item .block--txt,
.wrap .list .sys-schedule .block--txt,
.wrap .list--thumbnail .list__item .block--txt,
.wrap .list--thumbnail .sys-schedule .block--txt,
.wrap .list--photo .list__item .block--txt,
.wrap .list--photo .sys-schedule .block--txt,
.wrap .list--movie .list__item .block--txt,
.wrap .list--movie .sys-schedule .block--txt,
.wrap .list--schedule .list__item .block--txt,
.wrap .list--schedule .sys-schedule .block--txt,
.wrap .list--discography .list__item .block--txt,
.wrap .list--discography .sys-schedule .block--txt {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.wrap .list .list__item .date,
.wrap .list .sys-schedule .date,
.wrap .list--thumbnail .list__item .date,
.wrap .list--thumbnail .sys-schedule .date,
.wrap .list--photo .list__item .date,
.wrap .list--photo .sys-schedule .date,
.wrap .list--movie .list__item .date,
.wrap .list--movie .sys-schedule .date,
.wrap .list--schedule .list__item .date,
.wrap .list--schedule .sys-schedule .date,
.wrap .list--discography .list__item .date,
.wrap .list--discography .sys-schedule .date {
  margin: 0 0 0 1.8em;
  font-size: clamp(1.05rem, 1.25vw, 1.65rem);
  opacity: 1;
}
.wrap .list .list__item .category,
.wrap .list .sys-schedule .category,
.wrap .list--thumbnail .list__item .category,
.wrap .list--thumbnail .sys-schedule .category,
.wrap .list--photo .list__item .category,
.wrap .list--photo .sys-schedule .category,
.wrap .list--movie .list__item .category,
.wrap .list--movie .sys-schedule .category,
.wrap .list--schedule .list__item .category,
.wrap .list--schedule .sys-schedule .category,
.wrap .list--discography .list__item .category,
.wrap .list--discography .sys-schedule .category {
  font-size: clamp(0.7875rem, 0.9375vw, 1.2375rem);
}
.wrap .list .list__item .wrap--icon,
.wrap .list .sys-schedule .wrap--icon,
.wrap .list--thumbnail .list__item .wrap--icon,
.wrap .list--thumbnail .sys-schedule .wrap--icon,
.wrap .list--photo .list__item .wrap--icon,
.wrap .list--photo .sys-schedule .wrap--icon,
.wrap .list--movie .list__item .wrap--icon,
.wrap .list--movie .sys-schedule .wrap--icon,
.wrap .list--schedule .list__item .wrap--icon,
.wrap .list--schedule .sys-schedule .wrap--icon,
.wrap .list--discography .list__item .wrap--icon,
.wrap .list--discography .sys-schedule .wrap--icon {
  display: none;
}
.wrap .list .list__item .tit,
.wrap .list .sys-schedule .tit,
.wrap .list--thumbnail .list__item .tit,
.wrap .list--thumbnail .sys-schedule .tit,
.wrap .list--photo .list__item .tit,
.wrap .list--photo .sys-schedule .tit,
.wrap .list--movie .list__item .tit,
.wrap .list--movie .sys-schedule .tit,
.wrap .list--schedule .list__item .tit,
.wrap .list--schedule .sys-schedule .tit,
.wrap .list--discography .list__item .tit,
.wrap .list--discography .sys-schedule .tit {
  position: relative;
  display: flex;
  padding-left: 0;
  margin: 0;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  line-height: 1;
  white-space: nowrap;
}
.wrap .list .list__item .tit::before,
.wrap .list .sys-schedule .tit::before,
.wrap .list--thumbnail .list__item .tit::before,
.wrap .list--thumbnail .sys-schedule .tit::before,
.wrap .list--photo .list__item .tit::before,
.wrap .list--photo .sys-schedule .tit::before,
.wrap .list--movie .list__item .tit::before,
.wrap .list--movie .sys-schedule .tit::before,
.wrap .list--schedule .list__item .tit::before,
.wrap .list--schedule .sys-schedule .tit::before,
.wrap .list--discography .list__item .tit::before,
.wrap .list--discography .sys-schedule .tit::before {
  position: relative;
  z-index: 2;
  display: block;
  flex-shrink: 0;
  width: 0.85em;
  height: 0.85em;
  margin-right: 0.5em;
  content: "";
  border: 1.5px solid currentcolor;
  border-radius: 1000px;
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item .tit::before,
  .wrap .list .sys-schedule .tit::before,
  .wrap .list--thumbnail .list__item .tit::before,
  .wrap .list--thumbnail .sys-schedule .tit::before,
  .wrap .list--photo .list__item .tit::before,
  .wrap .list--photo .sys-schedule .tit::before,
  .wrap .list--movie .list__item .tit::before,
  .wrap .list--movie .sys-schedule .tit::before,
  .wrap .list--schedule .list__item .tit::before,
  .wrap .list--schedule .sys-schedule .tit::before,
  .wrap .list--discography .list__item .tit::before,
  .wrap .list--discography .sys-schedule .tit::before {
    margin-top: 0;
  }
}
.wrap .list .list__item .tit::after,
.wrap .list .sys-schedule .tit::after,
.wrap .list--thumbnail .list__item .tit::after,
.wrap .list--thumbnail .sys-schedule .tit::after,
.wrap .list--photo .list__item .tit::after,
.wrap .list--photo .sys-schedule .tit::after,
.wrap .list--movie .list__item .tit::after,
.wrap .list--movie .sys-schedule .tit::after,
.wrap .list--schedule .list__item .tit::after,
.wrap .list--schedule .sys-schedule .tit::after,
.wrap .list--discography .list__item .tit::after,
.wrap .list--discography .sys-schedule .tit::after {
  margin-top: auto;
}
.wrap .list .list__item .tit:has(.marquee__track),
.wrap .list .sys-schedule .tit:has(.marquee__track),
.wrap .list--thumbnail .list__item .tit:has(.marquee__track),
.wrap .list--thumbnail .sys-schedule .tit:has(.marquee__track),
.wrap .list--photo .list__item .tit:has(.marquee__track),
.wrap .list--photo .sys-schedule .tit:has(.marquee__track),
.wrap .list--movie .list__item .tit:has(.marquee__track),
.wrap .list--movie .sys-schedule .tit:has(.marquee__track),
.wrap .list--schedule .list__item .tit:has(.marquee__track),
.wrap .list--schedule .sys-schedule .tit:has(.marquee__track),
.wrap .list--discography .list__item .tit:has(.marquee__track),
.wrap .list--discography .sys-schedule .tit:has(.marquee__track) {
  position: relative;
  overflow: hidden;
}
.wrap .list .list__item .tit:has(.marquee__track) .new--icon,
.wrap .list .sys-schedule .tit:has(.marquee__track) .new--icon,
.wrap .list--thumbnail .list__item .tit:has(.marquee__track) .new--icon,
.wrap .list--thumbnail .sys-schedule .tit:has(.marquee__track) .new--icon,
.wrap .list--photo .list__item .tit:has(.marquee__track) .new--icon,
.wrap .list--photo .sys-schedule .tit:has(.marquee__track) .new--icon,
.wrap .list--movie .list__item .tit:has(.marquee__track) .new--icon,
.wrap .list--movie .sys-schedule .tit:has(.marquee__track) .new--icon,
.wrap .list--schedule .list__item .tit:has(.marquee__track) .new--icon,
.wrap .list--schedule .sys-schedule .tit:has(.marquee__track) .new--icon,
.wrap .list--discography .list__item .tit:has(.marquee__track) .new--icon,
.wrap .list--discography .sys-schedule .tit:has(.marquee__track) .new--icon {
  display: none;
}
.wrap .list .list__item .tit:has(.marquee__track)::after,
.wrap .list .sys-schedule .tit:has(.marquee__track)::after,
.wrap .list--thumbnail .list__item .tit:has(.marquee__track)::after,
.wrap .list--thumbnail .sys-schedule .tit:has(.marquee__track)::after,
.wrap .list--photo .list__item .tit:has(.marquee__track)::after,
.wrap .list--photo .sys-schedule .tit:has(.marquee__track)::after,
.wrap .list--movie .list__item .tit:has(.marquee__track)::after,
.wrap .list--movie .sys-schedule .tit:has(.marquee__track)::after,
.wrap .list--schedule .list__item .tit:has(.marquee__track)::after,
.wrap .list--schedule .sys-schedule .tit:has(.marquee__track)::after,
.wrap .list--discography .list__item .tit:has(.marquee__track)::after,
.wrap .list--discography .sys-schedule .tit:has(.marquee__track)::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 2.4rem;
  height: 100%;
  padding: 0;
  margin: 0;
  content: "";
  background: linear-gradient(to left, transparent, #fff 40%);
  border: none;
  border-radius: 0;
}
.wrap .list .list__item .tit:has(.marquee__track) .marquee__track,
.wrap .list .sys-schedule .tit:has(.marquee__track) .marquee__track,
.wrap .list--thumbnail .list__item .tit:has(.marquee__track) .marquee__track,
.wrap .list--thumbnail .sys-schedule .tit:has(.marquee__track) .marquee__track,
.wrap .list--photo .list__item .tit:has(.marquee__track) .marquee__track,
.wrap .list--photo .sys-schedule .tit:has(.marquee__track) .marquee__track,
.wrap .list--movie .list__item .tit:has(.marquee__track) .marquee__track,
.wrap .list--movie .sys-schedule .tit:has(.marquee__track) .marquee__track,
.wrap .list--schedule .list__item .tit:has(.marquee__track) .marquee__track,
.wrap .list--schedule .sys-schedule .tit:has(.marquee__track) .marquee__track,
.wrap .list--discography .list__item .tit:has(.marquee__track) .marquee__track,
.wrap .list--discography .sys-schedule .tit:has(.marquee__track) .marquee__track {
  position: relative;
  display: inline-flex;
  gap: 2rem;
  padding-left: 1.4em;
  animation: marquee linear infinite;
  will-change: transform;
}
.wrap .list .list__item .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list .sys-schedule .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--thumbnail .list__item .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--thumbnail .sys-schedule .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--photo .list__item .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--photo .sys-schedule .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--movie .list__item .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--movie .sys-schedule .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--schedule .list__item .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--schedule .sys-schedule .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--discography .list__item .tit:has(.marquee__track) .marquee__track .marquee,
.wrap .list--discography .sys-schedule .tit:has(.marquee__track) .marquee__track .marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.wrap .list .list__item .tit .limited::after,
.wrap .list .sys-schedule .tit .limited::after,
.wrap .list--thumbnail .list__item .tit .limited::after,
.wrap .list--thumbnail .sys-schedule .tit .limited::after,
.wrap .list--photo .list__item .tit .limited::after,
.wrap .list--photo .sys-schedule .tit .limited::after,
.wrap .list--movie .list__item .tit .limited::after,
.wrap .list--movie .sys-schedule .tit .limited::after,
.wrap .list--schedule .list__item .tit .limited::after,
.wrap .list--schedule .sys-schedule .tit .limited::after,
.wrap .list--discography .list__item .tit .limited::after,
.wrap .list--discography .sys-schedule .tit .limited::after {
  display: inline-block;
  padding: 0;
  margin: -0.1em 0 0 0.5em;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 0.5em;
  vertical-align: middle;
  color: #1744c6;
  letter-spacing: 0.05em;
  content: " MEMBERS";
  background: none;
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item .tit .limited::after,
  .wrap .list .sys-schedule .tit .limited::after,
  .wrap .list--thumbnail .list__item .tit .limited::after,
  .wrap .list--thumbnail .sys-schedule .tit .limited::after,
  .wrap .list--photo .list__item .tit .limited::after,
  .wrap .list--photo .sys-schedule .tit .limited::after,
  .wrap .list--movie .list__item .tit .limited::after,
  .wrap .list--movie .sys-schedule .tit .limited::after,
  .wrap .list--schedule .list__item .tit .limited::after,
  .wrap .list--schedule .sys-schedule .tit .limited::after,
  .wrap .list--discography .list__item .tit .limited::after,
  .wrap .list--discography .sys-schedule .tit .limited::after {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item.new .date,
  .wrap .list .sys-schedule.new .date,
  .wrap .list--thumbnail .list__item.new .date,
  .wrap .list--thumbnail .sys-schedule.new .date,
  .wrap .list--photo .list__item.new .date,
  .wrap .list--photo .sys-schedule.new .date,
  .wrap .list--movie .list__item.new .date,
  .wrap .list--movie .sys-schedule.new .date,
  .wrap .list--schedule .list__item.new .date,
  .wrap .list--schedule .sys-schedule.new .date,
  .wrap .list--discography .list__item.new .date,
  .wrap .list--discography .sys-schedule.new .date {
    display: flex;
    align-items: flex-start;
  }
  .wrap .list .list__item.new .date::after,
  .wrap .list .sys-schedule.new .date::after,
  .wrap .list--thumbnail .list__item.new .date::after,
  .wrap .list--thumbnail .sys-schedule.new .date::after,
  .wrap .list--photo .list__item.new .date::after,
  .wrap .list--photo .sys-schedule.new .date::after,
  .wrap .list--movie .list__item.new .date::after,
  .wrap .list--movie .sys-schedule.new .date::after,
  .wrap .list--schedule .list__item.new .date::after,
  .wrap .list--schedule .sys-schedule.new .date::after,
  .wrap .list--discography .list__item.new .date::after,
  .wrap .list--discography .sys-schedule.new .date::after {
    display: inline-block;
    flex-shrink: 0;
    margin: 0 0 0 0.5em;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    content: "NEW";
    border: 1px solid currentcolor;
    border-radius: 100px;
    padding: 3px 5px 2px;
    font-size: max(50%, 12px);
    font-family: neue-haas-grotesk-display, sans-serif;
    color: #1744c6;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .wrap .list .list__item.new .date::after,
  .wrap .list .sys-schedule.new .date::after,
  .wrap .list--thumbnail .list__item.new .date::after,
  .wrap .list--thumbnail .sys-schedule.new .date::after,
  .wrap .list--photo .list__item.new .date::after,
  .wrap .list--photo .sys-schedule.new .date::after,
  .wrap .list--movie .list__item.new .date::after,
  .wrap .list--movie .sys-schedule.new .date::after,
  .wrap .list--schedule .list__item.new .date::after,
  .wrap .list--schedule .sys-schedule.new .date::after,
  .wrap .list--discography .list__item.new .date::after,
  .wrap .list--discography .sys-schedule.new .date::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list .list__item.new .tit:not(:has(.marquee__track))::after,
.wrap .list .sys-schedule.new .tit:not(:has(.marquee__track))::after,
.wrap .list--thumbnail .list__item.new .tit:not(:has(.marquee__track))::after,
.wrap .list--thumbnail .sys-schedule.new .tit:not(:has(.marquee__track))::after,
.wrap .list--photo .list__item.new .tit:not(:has(.marquee__track))::after,
.wrap .list--photo .sys-schedule.new .tit:not(:has(.marquee__track))::after,
.wrap .list--movie .list__item.new .tit:not(:has(.marquee__track))::after,
.wrap .list--movie .sys-schedule.new .tit:not(:has(.marquee__track))::after,
.wrap .list--schedule .list__item.new .tit:not(:has(.marquee__track))::after,
.wrap .list--schedule .sys-schedule.new .tit:not(:has(.marquee__track))::after,
.wrap .list--discography .list__item.new .tit:not(:has(.marquee__track))::after,
.wrap .list--discography .sys-schedule.new .tit:not(:has(.marquee__track))::after {
  display: none;
}
.wrap .list .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--thumbnail .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--thumbnail .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--photo .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--photo .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--movie .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--movie .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--schedule .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--schedule .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--discography .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--discography .sys-schedule.new .tit:has(.marquee__track) .marquee::after {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 3px 5px 2px;
  font-size: max(50%, 12px);
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #1744c6;
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--thumbnail .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--thumbnail .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--photo .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--photo .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--movie .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--movie .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--schedule .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--schedule .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--discography .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--discography .sys-schedule.new .tit:has(.marquee__track) .marquee::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--thumbnail .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--thumbnail .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--photo .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--photo .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--movie .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--movie .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--schedule .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--schedule .sys-schedule.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--discography .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--discography .sys-schedule.new .tit:has(.marquee__track) .marquee::after {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .wrap .list .list__item.new .tit-wrapper .new--icon,
  .wrap .list .sys-schedule.new .tit-wrapper .new--icon,
  .wrap .list--thumbnail .list__item.new .tit-wrapper .new--icon,
  .wrap .list--thumbnail .sys-schedule.new .tit-wrapper .new--icon,
  .wrap .list--photo .list__item.new .tit-wrapper .new--icon,
  .wrap .list--photo .sys-schedule.new .tit-wrapper .new--icon,
  .wrap .list--movie .list__item.new .tit-wrapper .new--icon,
  .wrap .list--movie .sys-schedule.new .tit-wrapper .new--icon,
  .wrap .list--schedule .list__item.new .tit-wrapper .new--icon,
  .wrap .list--schedule .sys-schedule.new .tit-wrapper .new--icon,
  .wrap .list--discography .list__item.new .tit-wrapper .new--icon,
  .wrap .list--discography .sys-schedule.new .tit-wrapper .new--icon {
    display: none;
  }
}
.wrap .list .list__item:has(+ .no-data), .wrap .list .list__item:has(a[style*="display: none"]),
.wrap .list .sys-schedule:has(+ .no-data),
.wrap .list .sys-schedule:has(a[style*="display: none"]),
.wrap .list--thumbnail .list__item:has(+ .no-data),
.wrap .list--thumbnail .list__item:has(a[style*="display: none"]),
.wrap .list--thumbnail .sys-schedule:has(+ .no-data),
.wrap .list--thumbnail .sys-schedule:has(a[style*="display: none"]),
.wrap .list--photo .list__item:has(+ .no-data),
.wrap .list--photo .list__item:has(a[style*="display: none"]),
.wrap .list--photo .sys-schedule:has(+ .no-data),
.wrap .list--photo .sys-schedule:has(a[style*="display: none"]),
.wrap .list--movie .list__item:has(+ .no-data),
.wrap .list--movie .list__item:has(a[style*="display: none"]),
.wrap .list--movie .sys-schedule:has(+ .no-data),
.wrap .list--movie .sys-schedule:has(a[style*="display: none"]),
.wrap .list--schedule .list__item:has(+ .no-data),
.wrap .list--schedule .list__item:has(a[style*="display: none"]),
.wrap .list--schedule .sys-schedule:has(+ .no-data),
.wrap .list--schedule .sys-schedule:has(a[style*="display: none"]),
.wrap .list--discography .list__item:has(+ .no-data),
.wrap .list--discography .list__item:has(a[style*="display: none"]),
.wrap .list--discography .sys-schedule:has(+ .no-data),
.wrap .list--discography .sys-schedule:has(a[style*="display: none"]) {
  border-bottom: none;
}
.wrap .list--schedule {
  margin-bottom: 0;
}
.wrap .list--schedule .list__item a,
.wrap .list--schedule .sys-schedule a {
  display: flex;
  gap: 1.0416666667vw;
  align-items: center;
  justify-content: space-between;
}
.wrap .list--schedule .list__item .block--txt,
.wrap .list--schedule .sys-schedule .block--txt {
  display: flex;
  flex-shrink: 1;
  gap: 8px;
  order: 1;
  width: 37.5vw;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .wrap .list--schedule .list__item .block--txt,
  .wrap .list--schedule .sys-schedule .block--txt {
    width: 66.6666666667vw;
  }
}
.wrap .list--schedule .list__item .block--date,
.wrap .list--schedule .sys-schedule .block--date {
  position: static;
  flex-shrink: 0;
  order: 2;
  min-width: calc(100% - 37.5vw - 1.0416666667vw);
}
@media screen and (max-width: 960px) {
  .wrap .list--schedule .list__item .block--date,
  .wrap .list--schedule .sys-schedule .block--date {
    width: calc(100% - 66.6666666667vw - 1.0416666667vw);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 0;
  }
  .wrap .list--schedule .list__item .block--date .block--date__youbi,
  .wrap .list--schedule .sys-schedule .block--date .block--date__youbi {
    margin: 0 0 0 0.5em;
  }
}
.wrap .list--schedule .list__item .block--date__start,
.wrap .list--schedule .sys-schedule .block--date__start {
  display: flex;
  gap: 0.2604166667vw;
  align-items: center;
  justify-content: space-between;
}
.wrap .list--schedule .list__item .block--date__date, .wrap .list--schedule .list__item .block--date__month,
.wrap .list--schedule .sys-schedule .block--date__date,
.wrap .list--schedule .sys-schedule .block--date__month {
  position: static;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  white-space: nowrap;
}
.wrap .list--schedule .list__item .block--date__month::after,
.wrap .list--schedule .sys-schedule .block--date__month::after {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  content: ".";
  background: none;
  transform: none;
}
.wrap .list--schedule .list__item .block--date__youbi,
.wrap .list--schedule .sys-schedule .block--date__youbi {
  position: static;
  margin-left: auto;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  white-space: nowrap;
}
.wrap .list--schedule .list__item .block--date:has(+ .block--txt.new),
.wrap .list--schedule .sys-schedule .block--date:has(+ .block--txt.new) {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 960px) {
  .wrap .list--schedule .list__item .block--date:has(+ .block--txt.new),
  .wrap .list--schedule .sys-schedule .block--date:has(+ .block--txt.new) {
    flex-direction: row;
  }
}
.wrap .list--schedule .list__item .block--date:has(+ .block--txt.new)::before,
.wrap .list--schedule .sys-schedule .block--date:has(+ .block--txt.new)::before {
  display: inline-block;
  flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 5px 2px;
  margin: 0 0 0 auto;
  font-size: clamp(0.7875rem, 0.9375vw, 1.2375rem);
  line-height: 1;
  color: #1744c6;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
}
.wrap .list--schedule .list__item .tit,
.wrap .list--schedule .sys-schedule .tit {
  display: flex;
  align-items: flex-start;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .wrap .list--schedule .list__item.new a,
  .wrap .list--schedule .sys-schedule.new a {
    align-items: flex-start;
  }
  .wrap .list--schedule .list__item.new .block--date,
  .wrap .list--schedule .sys-schedule.new .block--date {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .wrap .list--schedule .list__item.new .block--date::after,
  .wrap .list--schedule .sys-schedule.new .block--date::after {
    display: inline-block;
    flex-shrink: 0;
    margin: 0 0 0 0.5em;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    content: "NEW";
    border: 1px solid currentcolor;
    border-radius: 100px;
    padding: 3px 5px 2px;
    font-size: max(50%, 12px);
    font-family: neue-haas-grotesk-display, sans-serif;
    color: #1744c6;
    margin: 0.25em 0 0 auto;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .wrap .list--schedule .list__item.new .block--date::after,
  .wrap .list--schedule .sys-schedule.new .block--date::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list--thumbnail .list__item,
.wrap .list--thumbnali .list__item {
  margin: 0;
  border-bottom: none;
}
.wrap .list--thumbnail .list__item a,
.wrap .list--thumbnali .list__item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.wrap .list--thumbnail .list__item .thumb,
.wrap .list--thumbnali .list__item .thumb {
  margin: 0;
  transition: none;
}
.wrap .list--thumbnail .list__item .thumb::after,
.wrap .list--thumbnali .list__item .thumb::after {
  transition: none;
}
.wrap .list--thumbnail .list__item .thumb .limited-thumb span,
.wrap .list--thumbnali .list__item .thumb .limited-thumb span {
  display: none;
}
.wrap .list--thumbnail .list__item .block-txt,
.wrap .list--thumbnali .list__item .block-txt {
  display: flex;
  flex-wrap: wrap;
  gap: 1.0416666667vw 0.5208333333vw;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.wrap .list--thumbnail .list__item .tit,
.wrap .list--thumbnali .list__item .tit {
  align-items: flex-start;
  width: 100%;
  padding: 0;
}
.wrap .list--thumbnail .list__item .tit::after,
.wrap .list--thumbnali .list__item .tit::after {
  display: none;
}
.wrap .list--thumbnail .list__item.new .tit,
.wrap .list--thumbnali .list__item.new .tit {
  display: flex;
  padding: 0;
}
.wrap .list--thumbnail .list__item.new .tit::before,
.wrap .list--thumbnali .list__item.new .tit::before {
  position: static;
}
.wrap .list--thumbnail .list__item.new .tit::after,
.wrap .list--thumbnali .list__item.new .tit::after {
  display: none;
}
.wrap .list--thumbnail .list__item.new .tit .new--icon,
.wrap .list--thumbnali .list__item.new .tit .new--icon {
  display: none;
}
.wrap .list--thumbnail .list__item.new .date,
.wrap .list--thumbnali .list__item.new .date {
  display: flex;
  gap: 8px;
  align-items: center;
}
.wrap .list--thumbnail .list__item.new .date::after,
.wrap .list--thumbnali .list__item.new .date::after {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 3px 5px 2px;
  font-size: max(50%, 12px);
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #1744c6;
}
@media screen and (max-width: 960px) {
  .wrap .list--thumbnail .list__item.new .date::after,
  .wrap .list--thumbnali .list__item.new .date::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list--discography .list__item .block-txt .category,
.wrap .list--discography .list__item .block-txt .date {
  max-width: calc((100% - 1em) / 2);
  margin: 0;
  font-size: clamp(0.7rem, 0.8333333333vw, 1.1rem);
}
.wrap .list--discography .list__item .block-txt .category {
  order: 2;
  margin: 0;
  opacity: 0.54;
}
.wrap .list--discography .list__item .block-txt .date {
  flex-shrink: 0;
  order: 3;
  white-space: nowrap;
}
.wrap .list--blog .tit-wrapper .new--icon,
.wrap .list--photo .tit-wrapper .new--icon,
.wrap .list--movie .tit-wrapper .new--icon,
.wrap .list--fc-contents .tit-wrapper .new--icon {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 4px 7px 2px;
  font-family: din-condensed, sans-serif;
  font-size: max(50%, 14px);
  color: #f2eab6;
}
@media screen and (max-width: 960px) {
  .wrap .list--blog .tit-wrapper .new--icon,
  .wrap .list--photo .tit-wrapper .new--icon,
  .wrap .list--movie .tit-wrapper .new--icon,
  .wrap .list--fc-contents .tit-wrapper .new--icon {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list--blog .list__item .block--txt .tit::before,
.wrap .list--photo .list__item .block--txt .tit::before,
.wrap .list--movie .list__item .block--txt .tit::before,
.wrap .list--fc-contents .list__item .block--txt .tit::before {
  z-index: 2;
  display: block;
  width: 0.85em;
  height: 0.85em;
  content: "";
  background-color: currentcolor;
  border: none;
  border-radius: unset;
  -webkit-mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02_line.svg") no-repeat center center;
          mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02_line.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.wrap .list--blog .list__item .block--txt .tit:has(.marquee__track)::after,
.wrap .list--photo .list__item .block--txt .tit:has(.marquee__track)::after,
.wrap .list--movie .list__item .block--txt .tit:has(.marquee__track)::after,
.wrap .list--fc-contents .list__item .block--txt .tit:has(.marquee__track)::after {
  display: block;
  background: linear-gradient(to left, transparent, #357baf 40%);
}
@media (any-hover: hover) {
  .wrap .list--blog .list__item a:hover .block--txt .tit::before,
  .wrap .list--photo .list__item a:hover .block--txt .tit::before,
  .wrap .list--movie .list__item a:hover .block--txt .tit::before,
  .wrap .list--fc-contents .list__item a:hover .block--txt .tit::before {
    background-color: currentcolor;
    -webkit-mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02.svg") no-repeat center center;
            mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02.svg") no-repeat center center;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
.wrap .list--blog .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--photo .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--movie .list__item.new .tit:has(.marquee__track) .marquee::after,
.wrap .list--fc-contents .list__item.new .tit:has(.marquee__track) .marquee::after {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 4px 7px 2px;
  font-family: din-condensed, sans-serif;
  font-size: max(50%, 14px);
  color: #f2eab6;
}
@media screen and (max-width: 960px) {
  .wrap .list--blog .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--photo .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--movie .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--fc-contents .list__item.new .tit:has(.marquee__track) .marquee::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
@media screen and (max-width: 960px) {
  .wrap .list--blog .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--photo .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--movie .list__item.new .tit:has(.marquee__track) .marquee::after,
  .wrap .list--fc-contents .list__item.new .tit:has(.marquee__track) .marquee::after {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .wrap .list--blog .list__item.new .date::after,
  .wrap .list--photo .list__item.new .date::after,
  .wrap .list--movie .list__item.new .date::after,
  .wrap .list--fc-contents .list__item.new .date::after {
    display: inline-block;
    flex-shrink: 0;
    margin: 0 0 0 0.5em;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    content: "NEW";
    border: 1px solid currentcolor;
    border-radius: 100px;
    padding: 4px 7px 2px;
    font-family: din-condensed, sans-serif;
    font-size: max(50%, 14px);
    color: #f2eab6;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .wrap .list--blog .list__item.new .date::after,
  .wrap .list--photo .list__item.new .date::after,
  .wrap .list--movie .list__item.new .date::after,
  .wrap .list--fc-contents .list__item.new .date::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list--thumbnail .list__item.new .date::after {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 4px 7px 2px;
  font-family: din-condensed, sans-serif;
  font-size: max(50%, 14px);
  color: #f2eab6;
}
@media screen and (max-width: 960px) {
  .wrap .list--thumbnail .list__item.new .date::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.wrap .list--fc-contents {
  display: flex;
  flex-flow: row wrap;
  gap: 6.25vw 1.5vw;
}
.wrap .list--fc-contents .list__item {
  width: calc((100% - 1.5vw) / 2 - 1px);
}
@media screen and (max-width: 960px) {
  .wrap .list--fc-contents .list__item {
    width: 100%;
  }
}
body:not(.page--home) .wrap .list .list__item .tit,
body:not(.page--home) .wrap .list .sys-schedule .tit,
body:not(.page--home) .wrap .list--thumbnali .list__item .tit,
body:not(.page--home) .wrap .list--thumbnali .sys-schedule .tit,
body:not(.page--home) .wrap .list--discography .list__item .tit,
body:not(.page--home) .wrap .list--discography .sys-schedule .tit,
body:not(.page--home) .wrap .list--video .list__item .tit,
body:not(.page--home) .wrap .list--video .sys-schedule .tit,
body:not(.page--home) .wrap .list--blog .list__item .tit,
body:not(.page--home) .wrap .list--blog .sys-schedule .tit,
body:not(.page--home) .wrap .list--schedule .list__item .tit,
body:not(.page--home) .wrap .list--schedule .sys-schedule .tit,
body:not(.page--home) .wrap .list--thumbnail .list__item .tit,
body:not(.page--home) .wrap .list--thumbnail .sys-schedule .tit,
body:not(.page--home) .wrap .list--photo .list__item .tit,
body:not(.page--home) .wrap .list--photo .sys-schedule .tit {
  line-height: 1.4;
  white-space: wrap;
}
body:not(.page--home) .wrap .list .list__item .tit::before,
body:not(.page--home) .wrap .list .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--thumbnali .list__item .tit::before,
body:not(.page--home) .wrap .list--thumbnali .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--discography .list__item .tit::before,
body:not(.page--home) .wrap .list--discography .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--video .list__item .tit::before,
body:not(.page--home) .wrap .list--video .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--blog .list__item .tit::before,
body:not(.page--home) .wrap .list--blog .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--schedule .list__item .tit::before,
body:not(.page--home) .wrap .list--schedule .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--thumbnail .list__item .tit::before,
body:not(.page--home) .wrap .list--thumbnail .sys-schedule .tit::before,
body:not(.page--home) .wrap .list--photo .list__item .tit::before,
body:not(.page--home) .wrap .list--photo .sys-schedule .tit::before {
  margin-top: 0.35em;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list .list__item .tit::before,
  body:not(.page--home) .wrap .list .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--thumbnali .list__item .tit::before,
  body:not(.page--home) .wrap .list--thumbnali .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--discography .list__item .tit::before,
  body:not(.page--home) .wrap .list--discography .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--video .list__item .tit::before,
  body:not(.page--home) .wrap .list--video .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--blog .list__item .tit::before,
  body:not(.page--home) .wrap .list--blog .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--schedule .list__item .tit::before,
  body:not(.page--home) .wrap .list--schedule .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--thumbnail .list__item .tit::before,
  body:not(.page--home) .wrap .list--thumbnail .sys-schedule .tit::before,
  body:not(.page--home) .wrap .list--photo .list__item .tit::before,
  body:not(.page--home) .wrap .list--photo .sys-schedule .tit::before {
    margin-top: 0.25em;
  }
}
body:not(.page--home) .wrap .list--thumbnail {
  display: flex;
  flex-flow: row wrap;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list--thumbnail {
    gap: 5.3333333333vw;
  }
}
body:not(.page--home) .wrap .list--thumbnail .list__item {
  width: calc((100% - 4.1666666667vw) / 3 - 1px);
  margin: 0;
  border-bottom: none;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list--thumbnail .list__item {
    width: 100%;
  }
}
body:not(.page--home) .wrap .list--thumbnail .list__item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
body:not(.page--home) .wrap .list--thumbnail .list__item .thumb {
  margin: 0;
  transition: none;
}
body:not(.page--home) .wrap .list--thumbnail .list__item .thumb::after {
  transition: none;
}
body:not(.page--home) .wrap .list--thumbnail .list__item .block--txt {
  margin-bottom: 0;
}
body:not(.page--home) .wrap .list--video .list__item {
  width: calc((100% - 2.0833333333vw) / 2 - 1px);
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list--video .list__item {
    width: 100%;
  }
}
body:not(.page--home) .wrap .list--schedule {
  margin-bottom: 4.1666666667vw;
}
body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap,
body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap {
  display: flex;
  gap: 2.0833333333vw;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap,
  body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}
body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap .block--txt,
body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap .block--txt {
  width: auto;
}
body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap .block--txt.new .tit::after,
body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap .block--txt.new .tit::after {
  display: none;
}
body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap .block--date,
body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap .block--date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 0;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap .block--date,
  body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap .block--date {
    margin: 0 0 0 auto;
  }
}
body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap .block--date span,
body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap .block--date span {
  display: block;
}
body:not(.page--home) .wrap .list--schedule .list__item .block--sys-schedule-wrap .block--date__youbi,
body:not(.page--home) .wrap .list--schedule .sys-schedule .block--sys-schedule-wrap .block--date__youbi {
  margin-left: 0;
}
body:not(.page--home) .wrap .list--schedule .list__item a + a,
body:not(.page--home) .wrap .list--schedule .sys-schedule a + a {
  border-top: 1px solid #ccc;
}
body:not(.page--home) .wrap .list--schedule + .list--schedule {
  position: relative;
  padding-top: 4.1666666667vw;
}
body:not(.page--home) .wrap .list--schedule + .list--schedule::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: #ccc;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .list--schedule + .list--schedule::before {
    left: -1.5vw;
    width: calc(100% + 3vw);
  }
}
.page--discography .wrap .list--discography {
  display: flex;
  flex-flow: row wrap;
  gap: 3.125vw 2.0833333333vw;
}
@media screen and (max-width: 960px) {
  .page--discography .wrap .list--discography {
    gap: 8vw;
  }
}
.page--discography .wrap .list--discography .list__item {
  width: calc((100% - 4.1666666667vw) / 3 - 1px);
  margin: 0;
}
@media screen and (max-width: 960px) {
  .page--discography .wrap .list--discography .list__item {
    width: 100%;
  }
}
.page--discography .wrap .list--discography .list__item a {
  height: 100%;
}
.page--discography .wrap .list--discography .list__item .thumb {
  flex-shrink: 0;
}
.page--discography .wrap .list--discography .list__item .thumb .blur {
  display: none;
}
.page--discography .wrap .list--discography .list__item .block-txt {
  gap: 1em;
  align-items: flex-start;
  height: 100%;
}
.page--discography .wrap .list--discography .list__item .block-txt .date,
.page--discography .wrap .list--discography .list__item .block-txt .category {
  margin-top: auto;
  margin-bottom: 0;
  white-space: nowrap;
}
.page--discography .wrap .list--discography .list__item:nth-child(n+4) {
  position: relative;
  padding-top: 3.125vw;
}
.page--discography .wrap .list--discography .list__item:nth-child(n+4)::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #ccc;
}
@media screen and (max-width: 960px) {
  .page--discography .wrap .list--discography .list__item:nth-child(n+4) {
    padding-top: 0;
  }
  .page--discography .wrap .list--discography .list__item:nth-child(n+4)::before {
    display: none;
  }
}
.page--discography .wrap .list--discography .list__item:nth-child(3n+1)::before {
  width: calc(100% + 2.0833333333vw);
}
.page--discography .wrap .list--discography .list__item:nth-child(3n+3)::before {
  right: 0;
  left: auto;
  width: calc(100% + 2.0833333333vw);
}
.page--information .wrap ul:not(.list--support) .list__item:first-child,
.page--information .wrap ul:not(.list--support) .sys-schedule:first-child, .page--schedule .wrap ul:not(.list--support) .list__item:first-child,
.page--schedule .wrap ul:not(.list--support) .sys-schedule:first-child {
  border-top: 1px solid #ccc;
}
.page--information .wrap .list .list__item.new .tit, .page--information .wrap .list .list__item.limited .tit,
.page--information .wrap .list--information .list__item.new .tit,
.page--information .wrap .list--information .list__item.limited .tit, .page--blog .wrap .list .list__item.new .tit, .page--blog .wrap .list .list__item.limited .tit,
.page--blog .wrap .list--information .list__item.new .tit,
.page--blog .wrap .list--information .list__item.limited .tit {
  display: block;
  padding-left: 1.4em;
}
.page--information .wrap .list .list__item.new .tit::before, .page--information .wrap .list .list__item.limited .tit::before,
.page--information .wrap .list--information .list__item.new .tit::before,
.page--information .wrap .list--information .list__item.limited .tit::before, .page--blog .wrap .list .list__item.new .tit::before, .page--blog .wrap .list .list__item.limited .tit::before,
.page--blog .wrap .list--information .list__item.new .tit::before,
.page--blog .wrap .list--information .list__item.limited .tit::before {
  position: absolute;
  top: 0;
  left: 0;
}
.page--information .wrap .list .list__item.new .tit::after, .page--information .wrap .list .list__item.limited .tit::after,
.page--information .wrap .list--information .list__item.new .tit::after,
.page--information .wrap .list--information .list__item.limited .tit::after, .page--blog .wrap .list .list__item.new .tit::after, .page--blog .wrap .list .list__item.limited .tit::after,
.page--blog .wrap .list--information .list__item.new .tit::after,
.page--blog .wrap .list--information .list__item.limited .tit::after {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 3px 5px 2px;
  font-size: max(50%, 12px);
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #1744c6;
}
@media screen and (max-width: 960px) {
  .page--information .wrap .list .list__item.new .tit::after, .page--information .wrap .list .list__item.limited .tit::after,
  .page--information .wrap .list--information .list__item.new .tit::after,
  .page--information .wrap .list--information .list__item.limited .tit::after, .page--blog .wrap .list .list__item.new .tit::after, .page--blog .wrap .list .list__item.limited .tit::after,
  .page--blog .wrap .list--information .list__item.new .tit::after,
  .page--blog .wrap .list--information .list__item.limited .tit::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.page--information .wrap .list .list__item.new .tit::after, .page--information .wrap .list .list__item.limited .tit::after,
.page--information .wrap .list--information .list__item.new .tit::after,
.page--information .wrap .list--information .list__item.limited .tit::after, .page--blog .wrap .list .list__item.new .tit::after, .page--blog .wrap .list .list__item.limited .tit::after,
.page--blog .wrap .list--information .list__item.new .tit::after,
.page--blog .wrap .list--information .list__item.limited .tit::after {
  margin-top: -0.25em;
}
@media screen and (max-width: 960px) {
  .page--information .wrap .list .list__item.new .tit::after, .page--information .wrap .list .list__item.limited .tit::after,
  .page--information .wrap .list--information .list__item.new .tit::after,
  .page--information .wrap .list--information .list__item.limited .tit::after, .page--blog .wrap .list .list__item.new .tit::after, .page--blog .wrap .list .list__item.limited .tit::after,
  .page--blog .wrap .list--information .list__item.new .tit::after,
  .page--blog .wrap .list--information .list__item.limited .tit::after {
    display: none;
  }
}
.page--blog .wrap .list .list__item:first-child::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--blog .wrap .list .list__item:first-child::before {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}
.page--blog .wrap .list .list__item:first-child::before {
  top: -0.5208333333vw;
  bottom: auto;
}
@media screen and (max-width: 960px) {
  .page--blog .wrap .list .list__item:first-child::before {
    top: -1.5625vw;
    bottom: auto;
  }
}
.page--blog .wrap .list .list__item.new .date::after {
  display: none;
}
@media screen and (max-width: 960px) {
  .page--blog .wrap .list .list__item.new .date::after {
    display: inline-block;
    flex-shrink: 0;
    margin: 0 0 0 0.5em;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    content: "NEW";
    border: 1px solid currentcolor;
    border-radius: 100px;
    padding: 4px 7px 2px;
    font-family: din-condensed, sans-serif;
    font-size: max(50%, 14px);
    color: #f2eab6;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .page--blog .wrap .list .list__item.new .date::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.page--blog .wrap .list .list__item.new .tit::after {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 4px 7px 2px;
  font-family: din-condensed, sans-serif;
  font-size: max(50%, 14px);
  color: #f2eab6;
}
@media screen and (max-width: 960px) {
  .page--blog .wrap .list .list__item.new .tit::after {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.page--blog .wrap .list .list__item.new .tit::after {
  margin-top: -0.25em;
}
@media screen and (max-width: 960px) {
  .page--blog .wrap .list .list__item.new .tit::after {
    display: none;
  }
}

.nonlogin .list--thumbnail .list__item .thumb .limited-thumb {
  z-index: 1;
}

.page--home .wrap {
  padding-bottom: 0;
}
.page--home .wrap .section--hero-img {
  position: relative;
  margin: 0 0 5.2083333333vw;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .section--hero-img {
    height: auto;
    aspect-ratio: 1;
  }
}
.page--home .wrap .section--hero-img .block--hero-img {
  width: 100%;
  height: 100%;
  max-height: none;
}
.page--home .wrap .section--hero-img .block--hero-img img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.page--home .wrap .section--hero-img .block--login {
  display: none;
}
.page--home .wrap .section--hero-img .g-nav--sns {
  position: fixed;
  right: 1.5625vw;
  bottom: 1.5625vw;
  z-index: 1000;
  color: #fff;
}
.page--home .wrap .section--hero-img .g-nav--sns.scrolled {
  color: #000;
}
.page--home .wrap .section--hero-img .g-nav--sns.scrolled-fc {
  color: #00ff00;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .section--hero-img .g-nav--sns {
    display: none;
  }
}
.page--home .wrap .section--hero-img .g-nav--sns ul {
  display: flex;
  gap: 1.0416666667vw;
  align-items: center;
}
.page--home .wrap .section--hero-img .g-nav--sns ul .g-nav--item__sns {
  margin: 0;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}
.page--home .wrap .section--hero-img .g-nav--sns ul .g-nav--item__sns a {
  color: currentcolor;
}
@media (any-hover: hover) {
  .page--home .wrap .section--hero-img .g-nav--sns ul .g-nav--item__sns a:hover {
    color: #1744c6;
  }
}
.page--home .wrap .block--content-wrap {
  gap: 6.25vw 1.5vw;
  padding: 0 1.5vw;
  background: none;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap {
    display: flex;
    flex-direction: column;
    gap: 13.3333333333vw 1.5vw;
  }
}
.page--home .wrap .block--content-wrap .block--contents {
  width: calc((100% - 1.5vw) / 2 - 1px);
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap .block--contents {
    width: 100%;
  }
}
.page--home .wrap .block--content-wrap .block--contents .block--title {
  display: flex;
  gap: 2.6041666667vw;
  justify-content: space-between;
  padding: 0 0 16px;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.page--home .wrap .block--content-wrap .block--contents .block--title .section-tit {
  padding: 0;
}
.page--home .wrap .block--content-wrap .block--contents .block--title .list__more {
  position: static;
  margin: 0;
}
.page--home .wrap .block--content-wrap .block--contents .block--title .list__more a {
  color: #ccc;
}
@media (any-hover: hover) {
  .page--home .wrap .block--content-wrap .block--contents .block--title .list__more a:hover {
    color: #1744c6;
  }
}
.page--home .wrap .block--content-wrap .block--contents .block--title .list__more a::after {
  display: none;
}
.page--home .wrap .block--content-wrap #block--media-live {
  display: flex;
  flex-direction: column;
  gap: 6.25vw 1.5vw;
  width: calc((100% - 1.5vw) / 2 - 1px);
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap #block--media-live {
    gap: 13.3333333333vw 1.5vw;
    width: 100%;
  }
}
.page--home .wrap .block--content-wrap #block--media-live .block--contents {
  width: 100%;
}
.page--home .wrap .block--content-wrap .section--banner {
  margin: 0;
}
.page--home .wrap .block--content-wrap .section--banner .list--bnr--noslide {
  margin-top: 0;
}
.page--home .wrap .block--content-wrap .section--banner.block--wide .list--bnr {
  margin-top: 0;
}
.page--home .wrap .block--content-wrap .section--banner.block--wide .list--bnr .list__item {
  width: 20.8333333333vw;
  margin-inline: 0.625vw;
}
.page--home .wrap .block--content-wrap .section--banner.block--wide .list--bnr .list__item a .thumb__wrap {
  overflow: hidden;
}
.page--home .wrap .block--content-wrap .section--information, .page--home .wrap .block--content-wrap .section--schedule {
  width: 100%;
}
.page--home .wrap .block--content-wrap .section--discography {
  color: #000;
}
.page--home .wrap .block--content-wrap .section--discography .block--title {
  margin-bottom: 24px;
}
.page--home .wrap .block--content-wrap .section--discography .block--discography__item {
  flex-direction: row-reverse;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap .section--discography .block--discography__item {
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
  }
}
.page--home .wrap .block--content-wrap .section--discography .block--discography__item.new .tit::after {
  display: none;
}
.page--home .wrap .block--content-wrap .section--discography .block--discography__item.new .new--icon {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 0.5em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  content: "NEW";
  border: 1px solid currentcolor;
  border-radius: 100px;
  padding: 3px 5px 2px;
  font-size: max(50%, 12px);
  font-family: neue-haas-grotesk-display, sans-serif;
  color: #1744c6;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap .section--discography .block--discography__item.new .new--icon {
    font-size: max(50%, 10px);
    padding: 2px 5px 1px;
  }
}
.page--home .wrap .block--content-wrap .section--discography .block--discography__item.new .new--icon {
  margin-top: -0.25em;
}
.page--home .wrap .block--content-wrap .section--discography .thumb {
  width: calc((100% - 2.0833333333vw) / 2 - 1px);
  margin: 0;
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap .section--discography .thumb {
    width: 100%;
  }
}
.page--home .wrap .block--content-wrap .section--discography .block--txt {
  width: calc((100% - 2.0833333333vw) / 2);
}
@media screen and (max-width: 960px) {
  .page--home .wrap .block--content-wrap .section--discography .block--txt {
    width: 100%;
  }
}
.page--home .wrap .block--content-wrap .section--discography .block--txt .block--txt__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.0833333333vw;
  justify-content: space-between;
  height: 100%;
}
.page--home .wrap .block--content-wrap .section--discography .block--txt .tit {
  position: relative;
  order: 1;
  width: 100%;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}
.page--home .wrap .block--content-wrap .section--discography .block--txt .tit::before {
  display: block;
  margin: 0 0 8px;
  font-size: clamp(0.525rem, 0.625vw, 0.825rem);
  letter-spacing: 0.05em;
  content: "LATEST RELEASE :";
}
.page--home .wrap .block--content-wrap .section--discography .block--txt .date {
  order: 2;
  width: auto;
  height: auto;
  margin: auto 0 0;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  line-height: 0.8em;
}
.page--home .wrap .block--content-wrap .section--discography .block--txt .category {
  order: 3;
  width: auto;
  height: auto;
  margin: auto 0 0;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  text-transform: uppercase;
  opacity: 1;
}
.page--home .wrap .block--content-wrap .section--discography .block--txt .list__more {
  display: none;
}
.page--home .wrap .block--content-wrap .section--discography a {
  color: currentcolor;
}
@media (any-hover: hover) {
  .page--home .wrap .block--content-wrap .section--discography a:hover {
    color: #1744c6;
  }
}
.page--home .wrap .block--content-wrap .section--video {
  width: 100%;
}
.page--home .wrap .block--content-wrap .section--video .list--thumnail--center {
  margin: 32px 0 0;
}
.page--home .wrap .block--content-wrap .section--video .list--thumnail--center .list__item {
  width: 100%;
  margin: 0;
}
.page--home .wrap .block--content-wrap .section--video .list--thumnail--horizontal .list__item {
  width: calc((100% - 1.5vw) / 2);
  margin: 0;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .list--thumbnail {
  width: 100%;
  margin: 0;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .list--thumbnail .list__item {
  margin: 0;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .slick-arrow {
  display: none !important;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .slick-dots {
  position: static;
  bottom: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .slick-dots li {
  width: 0.5em;
  height: 0.5em;
  margin: 0;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .slick-dots li.slick-active button::before {
  background: currentcolor;
  opacity: 1;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .slick-dots li button {
  padding: 0;
}
.page--home .wrap .block--content-wrap .section--video.block--wide .slick-dots li button::before {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid currentcolor;
  border-radius: 1000px;
  opacity: 1;
}
.page--home .wrap #site-logo {
  width: 100%;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform, filter;
}
.page--home .wrap #site-logo svg {
  width: 100%;
  height: auto;
  fill: #1744c6;
}
.page--home .limited .section-tit::after {
  content: none;
}
.page--home #area--fc {
  position: relative;
  width: calc(100% + 3vw);
  padding: 6.25vw 1.5vw 10.4166666667vw;
  margin: 0 -1.5vw;
  background-color: #357baf;
}
.page--home #area--fc::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc::after {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}
.page--home #area--fc::after {
  left: 1.5vw;
  width: calc(100% - 3vw);
}
.page--home #area--fc #block--fc-logo-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6041666667vw 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc #block--fc-logo-section {
    gap: 6.6666666667vw;
    align-items: flex-end;
  }
}
.page--home #area--fc #block--fc-logo-section .block--fc-logo-section__motif, .page--home #area--fc #block--fc-logo-section .block--fc-logo-section__title {
  flex-grow: 0;
  width: auto;
  height: 8.8541666667vw;
  font-size: 0;
}
.page--home #area--fc #block--fc-logo-section .block--fc-logo-section__motif img, .page--home #area--fc #block--fc-logo-section .block--fc-logo-section__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page--home #area--fc #block--fc-logo-section .block--fc-logo-section__motif {
  width: 10.9375vw;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc #block--fc-logo-section .block--fc-logo-section__motif {
    order: 3;
    width: calc((100% - 10.6666666667vw) / 3);
    height: auto;
  }
}
.page--home #area--fc #block--fc-logo-section .block--fc-logo-section__title {
  width: 82.5520833333vw;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc #block--fc-logo-section .block--fc-logo-section__title {
    order: 1;
    width: 100%;
    height: auto;
  }
}
.page--home #area--fc #block--fc-logo-section .block--login {
  position: static;
  z-index: initial;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc #block--fc-logo-section .block--login {
    order: 2;
    width: calc((100% - 10.6666666667vw) / 3 * 2);
    margin: 0;
  }
}
@media screen and (max-width: 960px) {
  .page--home #area--fc #block--fc-logo-section .block--login .nav__list--login {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .page--home #area--fc #block--fc-logo-section .block--login .nav__list--login li {
    margin: 0;
  }
}
.page--home #area--fc .block--contents a {
  color: #f2eab6;
}
.page--home #area--fc .block--contents .block--title {
  position: relative;
  padding-bottom: 20px;
  border-bottom: none;
}
.page--home #area--fc .block--contents .block--title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc .block--contents .block--title::after {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}
@media (any-hover: hover) {
  .page--home #area--fc .block--contents .block--title a:hover {
    color: #c1272d;
  }
}
.page--home #area--fc .block--contents.section--blog {
  width: 100%;
}
.page--home #area--fc .block--contents.section--blog .block--title {
  margin-bottom: 0;
}
.page--home #area--fc .block--contents.section--blog .list--blog .list__item {
  position: relative;
  border-bottom: none;
}
.page--home #area--fc .block--contents.section--blog .list--blog .list__item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc .block--contents.section--blog .list--blog .list__item::after {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}
.page--home #area--fc .block--contents.section--blog .list--blog .list__item a {
  padding: 1.0416666667vw 0 1.5625vw;
}
@media screen and (max-width: 960px) {
  .page--home #area--fc .block--contents.section--blog .list--blog .list__item a {
    padding: 2.6666666667vw 0 4vw;
  }
}
.page--home #area--fc .block--contents.section--blog .list--blog .list__item .category {
  display: none;
}
.page--home #area--fc .block--contents.section--blog .list--blog .list__item .tit {
  color: #a7001c;
}
.page--home #area--fc .section--fc-contents {
  width: 100%;
}
.page--home #area--fc .section--photo .block--title, .page--home #area--fc .section--movie .block--title, .page--home #area--fc .section--fc-contents .block--title {
  margin-bottom: 24px;
}

.gosanke-char-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100px;
  height: 80px;
  pointer-events: none;
  transition: transform 1s steps(10);
  will-change: transform;
}
@media screen and (max-width: 960px) {
  .gosanke-char-wrap {
    width: 60px;
    height: 48px;
  }
}
.gosanke-char-wrap img {
  width: 100%;
  height: 100%;
  animation: walk 0.6s infinite steps(2);
}

body:not(.page--home) .wrap {
  padding-bottom: 0;
}
body:not(.page--home) .wrap .container {
  margin: 0 auto 10.4166666667vw;
}
body:not(.page--home) .wrap .section--list, body:not(.page--home) .wrap .section--detail {
  width: 100%;
  padding: 0 1.5vw;
  margin-inline: auto;
}
body:not(.page--home) .wrap .section--list .block--title, body:not(.page--home) .wrap .section--list .block--category, body:not(.page--home) .wrap .section--list .block--refine, body:not(.page--home) .wrap .section--list .block--month, body:not(.page--home) .wrap .section--detail .block--title, body:not(.page--home) .wrap .section--detail .block--category, body:not(.page--home) .wrap .section--detail .block--refine, body:not(.page--home) .wrap .section--detail .block--month {
  display: flex;
  margin: 0 0 2.0833333333vw;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .section--list .block--title, body:not(.page--home) .wrap .section--list .block--category, body:not(.page--home) .wrap .section--list .block--refine, body:not(.page--home) .wrap .section--list .block--month, body:not(.page--home) .wrap .section--detail .block--title, body:not(.page--home) .wrap .section--detail .block--category, body:not(.page--home) .wrap .section--detail .block--refine, body:not(.page--home) .wrap .section--detail .block--month {
    margin-bottom: 10.6666666667vw;
  }
}
body:not(.page--home) .wrap .section--list .block--title, body:not(.page--home) .wrap .section--detail .block--title {
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-bottom: 1.0416666667vw;
  margin-top: 4.1666666667vw;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .section--list .block--title, body:not(.page--home) .wrap .section--detail .block--title {
    margin-top: 10.6666666667vw;
  }
}
body:not(.page--home) .wrap .section--list .block--title .tit,
body:not(.page--home) .wrap .section--list .block--title .date,
body:not(.page--home) .wrap .section--list .block--title .category, body:not(.page--home) .wrap .section--detail .block--title .tit,
body:not(.page--home) .wrap .section--detail .block--title .date,
body:not(.page--home) .wrap .section--detail .block--title .category {
  margin: 0;
}
body:not(.page--home) .wrap .section--list .block--title .tit, body:not(.page--home) .wrap .section--detail .block--title .tit {
  width: 100%;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}
body:not(.page--home) .wrap .section--list .block--title .date,
body:not(.page--home) .wrap .section--list .block--title .category, body:not(.page--home) .wrap .section--detail .block--title .date,
body:not(.page--home) .wrap .section--detail .block--title .category {
  max-width: calc((100% - 1em) / 2);
  font-size: clamp(0.7875rem, 0.9375vw, 1.2375rem);
  opacity: 1;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .section--list .block--title .date,
  body:not(.page--home) .wrap .section--list .block--title .category, body:not(.page--home) .wrap .section--detail .block--title .date,
  body:not(.page--home) .wrap .section--detail .block--title .category {
    white-space: nowrap;
  }
}
body:not(.page--home) .wrap .section--list .block--title .category, body:not(.page--home) .wrap .section--detail .block--title .category {
  margin: 0;
}
body:not(.page--home) .wrap .section--list .block--category, body:not(.page--home) .wrap .section--list .block--refine ul, body:not(.page--home) .wrap .section--detail .block--category, body:not(.page--home) .wrap .section--detail .block--refine ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.0416666667vw;
  align-items: center;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .section--list .block--category, body:not(.page--home) .wrap .section--list .block--refine ul, body:not(.page--home) .wrap .section--detail .block--category, body:not(.page--home) .wrap .section--detail .block--refine ul {
    gap: 2.6666666667vw;
  }
}
body:not(.page--home) .wrap .section--list .block--category li, body:not(.page--home) .wrap .section--list .block--refine ul li, body:not(.page--home) .wrap .section--detail .block--category li, body:not(.page--home) .wrap .section--detail .block--refine ul li {
  display: block;
  margin: 0;
}
body:not(.page--home) .wrap .section--list .block--category li a, body:not(.page--home) .wrap .section--list .block--refine ul li a, body:not(.page--home) .wrap .section--detail .block--category li a, body:not(.page--home) .wrap .section--detail .block--refine ul li a {
  padding: 0;
  font-size: 1rem;
  color: currentcolor;
}
body:not(.page--home) .wrap .section--list .block--category li a::after, body:not(.page--home) .wrap .section--list .block--refine ul li a::after, body:not(.page--home) .wrap .section--detail .block--category li a::after, body:not(.page--home) .wrap .section--detail .block--refine ul li a::after {
  display: none;
}
@media (any-hover: hover) {
  body:not(.page--home) .wrap .section--list .block--category li a:hover, body:not(.page--home) .wrap .section--list .block--refine ul li a:hover, body:not(.page--home) .wrap .section--detail .block--category li a:hover, body:not(.page--home) .wrap .section--detail .block--refine ul li a:hover {
    color: #1744c6;
  }
}
body:not(.page--home) .wrap .section--list .block--category li.current, body:not(.page--home) .wrap .section--list .block--refine ul li.current, body:not(.page--home) .wrap .section--detail .block--category li.current, body:not(.page--home) .wrap .section--detail .block--refine ul li.current {
  color: #1744c6;
}
body:not(.page--home) .wrap .section--list .block--category label p, body:not(.page--home) .wrap .section--list .block--refine ul label p, body:not(.page--home) .wrap .section--detail .block--category label p, body:not(.page--home) .wrap .section--detail .block--refine ul label p {
  width: auto;
  min-width: 0;
  padding: 0;
  font-size: 1rem;
}
body:not(.page--home) .wrap .section--list .block--refine ul, body:not(.page--home) .wrap .section--detail .block--refine ul {
  margin-bottom: 0;
}
body:not(.page--home) .wrap .section--list .block--month, body:not(.page--home) .wrap .section--detail .block--month {
  gap: 2.0833333333vw;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
body:not(.page--home) .wrap .section--list .block--month::after, body:not(.page--home) .wrap .section--detail .block--month::after {
  display: none;
}
body:not(.page--home) .wrap .section--list .block--month .tit, body:not(.page--home) .wrap .section--detail .block--month .tit {
  position: static;
  display: flex;
  align-items: flex-end;
  font-size: clamp(2.625rem, 3.125vw, 4.125rem);
  line-height: 1;
  white-space: nowrap;
}
body:not(.page--home) .wrap .section--list .block--month .tit span, body:not(.page--home) .wrap .section--detail .block--month .tit span {
  padding: 0 0 0.4em 24px;
  margin: 0;
  font-size: clamp(0.7875rem, 0.9375vw, 1.2375rem);
}
body:not(.page--home) .wrap .section--list .block--month ul, body:not(.page--home) .wrap .section--detail .block--month ul {
  gap: 0.5em;
  margin: 0;
}
body:not(.page--home) .wrap .section--list .block--month ul li, body:not(.page--home) .wrap .section--detail .block--month ul li {
  margin: 0;
}
body:not(.page--home) .wrap .section--list .block--month ul li a, body:not(.page--home) .wrap .section--detail .block--month ul li a {
  display: flex;
  gap: 0.5em;
  padding: 0.5em;
  font-size: 0.75rem;
}
body:not(.page--home) .wrap .section--list .block--month ul li a::after, body:not(.page--home) .wrap .section--detail .block--month ul li a::after {
  display: none;
}
@media (any-hover: hover) {
  body:not(.page--home) .wrap .section--list .block--month ul li a:hover, body:not(.page--home) .wrap .section--detail .block--month ul li a:hover {
    color: #fff;
    background: #1744c6;
  }
}
body:not(.page--home) .wrap .section--list .tit--category, body:not(.page--home) .wrap .section--detail .tit--category {
  margin-bottom: 2.0833333333vw;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  letter-spacing: 0.05em;
}
body:not(.page--home) .wrap .section--list .block--faq-detail, body:not(.page--home) .wrap .section--detail .block--faq-detail {
  padding: 2.0833333333vw;
  margin: 0 auto 4.1666666667vw;
  border-color: #1744c6;
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt,
body:not(.page--home) .wrap .section--list .block--faq-detail dd, body:not(.page--home) .wrap .section--detail .block--faq-detail dt,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd {
  display: flex;
  gap: 2.0833333333vw;
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt::after,
body:not(.page--home) .wrap .section--list .block--faq-detail dd::after, body:not(.page--home) .wrap .section--detail .block--faq-detail dt::after,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd::after {
  display: none;
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt .icon--q, body:not(.page--home) .wrap .section--list .block--faq-detail dt .icon--a,
body:not(.page--home) .wrap .section--list .block--faq-detail dd .icon--q,
body:not(.page--home) .wrap .section--list .block--faq-detail dd .icon--a, body:not(.page--home) .wrap .section--detail .block--faq-detail dt .icon--q, body:not(.page--home) .wrap .section--detail .block--faq-detail dt .icon--a,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd .icon--q,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd .icon--a {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  font-family: neue-haas-grotesk-display, dnp-shuei-gothic-kin-std, sans-serif;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  line-height: 1;
  vertical-align: middle;
  color: #1744c6;
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt .icon--q,
body:not(.page--home) .wrap .section--list .block--faq-detail dd .icon--q, body:not(.page--home) .wrap .section--detail .block--faq-detail dt .icon--q,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd .icon--q {
  border-color: currentcolor;
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt .icon--a,
body:not(.page--home) .wrap .section--list .block--faq-detail dd .icon--a, body:not(.page--home) .wrap .section--detail .block--faq-detail dt .icon--a,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd .icon--a {
  color: #fff;
  background-color: #1744c6;
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt .txt,
body:not(.page--home) .wrap .section--list .block--faq-detail dd .txt, body:not(.page--home) .wrap .section--detail .block--faq-detail dt .txt,
body:not(.page--home) .wrap .section--detail .block--faq-detail dd .txt {
  padding: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.65rem);
}
body:not(.page--home) .wrap .section--list .block--faq-detail dt, body:not(.page--home) .wrap .section--detail .block--faq-detail dt {
  padding-bottom: 2.0833333333vw;
  margin-bottom: 2.0833333333vw;
  border-color: #ccc;
}
body:not(.page--home) .wrap .section-tit {
  margin: 5.2083333333vw 0;
  font-size: clamp(2.1875rem, 2.6041666667vw, 3.4375rem);
  font-weight: 700;
}
body:not(.page--home) .wrap .block--editor {
  margin: 0;
}
body:not(.page--home) .wrap .block--editor p {
  margin: 0.5em 0;
}
body:not(.page--home) .wrap .block--editor p:first-child {
  margin-top: 0;
}
body:not(.page--home) .wrap .block--editor p:last-child {
  margin-bottom: 0;
}
body:not(.page--home) .wrap .block--editor a {
  color: currentcolor;
  text-decoration: underline;
}
@media (any-hover: hover) {
  body:not(.page--home) .wrap .block--editor a:hover {
    color: #1744c6;
    opacity: 1;
  }
}
body:not(.page--home) .wrap .block--share {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin: 6.25vw 0 0 auto;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .block--share {
    margin-top: 16vw;
  }
}
body:not(.page--home) .wrap .block--share li {
  margin: 0;
}
body:not(.page--home) .wrap .block--share li.share {
  letter-spacing: 0.01em;
}
body:not(.page--home) .wrap .block--share li.lineIco svg {
  fill: #000;
}
@media (any-hover: hover) {
  body:not(.page--home) .wrap .block--share li.lineIco a:hover svg {
    fill: #1744c6;
  }
}
@media (any-hover: hover) {
  body:not(.page--home) .wrap .block--share li a:hover {
    color: #1744c6;
    opacity: 1;
  }
}
body:not(.page--home) .wrap .detail__btn {
  margin: 6.25vw auto 0;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .detail__btn {
    margin-top: 16vw;
  }
}
body:not(.page--home) .wrap .wrap--disc-detail {
  gap: 5.2083333333vw;
}
body:not(.page--home) .wrap .wrap--disc-detail .jacket {
  width: calc((100% - 5.2083333333vw) / 5 * 2);
}
body:not(.page--home) .wrap .wrap--disc-detail .jacket .ph {
  box-shadow: 10px 20px 45px 2px rgba(0, 0, 0, 0.1);
}
body:not(.page--home) .wrap .wrap--disc-detail .jacket .txt--sub {
  font-size: clamp(0.7875rem, 0.9375vw, 1.2375rem);
  color: currentcolor;
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .wrap--disc-detail .jacket {
    width: 100%;
  }
}
body:not(.page--home) .wrap .wrap--disc-detail .block--disc-detail {
  width: calc((100% - 5.2083333333vw) / 5 * 3);
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .wrap--disc-detail .block--disc-detail .tit {
    text-align: left;
  }
}
@media screen and (max-width: 960px) {
  body:not(.page--home) .wrap .wrap--disc-detail .block--disc-detail {
    width: 100%;
  }
}
body:not(.page--home) .wrap .artist--photo {
  width: 100%;
  margin: 0 auto 2.6041666667vw;
}
body:not(.page--home) .wrap .artist--name {
  margin: 1.5625vw 0;
  font-size: clamp(2.625rem, 3.125vw, 4.125rem);
  line-height: 1.2;
  text-align: initial;
}

.page--blog:not(.page--home) .wrap,
.page--photo:not(.page--home) .wrap,
.page--movie:not(.page--home) .wrap,
.page--chat-community:not(.page--home) .wrap,
.page--anochan_shinbun:not(.page--home) .wrap {
  background: #357baf;
}
.page--blog:not(.page--home) .wrap .section-tit,
.page--photo:not(.page--home) .wrap .section-tit,
.page--movie:not(.page--home) .wrap .section-tit,
.page--chat-community:not(.page--home) .wrap .section-tit,
.page--anochan_shinbun:not(.page--home) .wrap .section-tit {
  font-size: clamp(2.1875rem, 2.6041666667vw, 3.4375rem);
  font-weight: 400;
  color: #f2eab6;
}
.page--blog:not(.page--home) .wrap .list:not(.list--support) .list__item,
.page--blog:not(.page--home) .wrap .list--thumbnail .list__item,
.page--photo:not(.page--home) .wrap .list:not(.list--support) .list__item,
.page--photo:not(.page--home) .wrap .list--thumbnail .list__item,
.page--movie:not(.page--home) .wrap .list:not(.list--support) .list__item,
.page--movie:not(.page--home) .wrap .list--thumbnail .list__item,
.page--chat-community:not(.page--home) .wrap .list:not(.list--support) .list__item,
.page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item,
.page--anochan_shinbun:not(.page--home) .wrap .list:not(.list--support) .list__item,
.page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item {
  position: relative;
  border-bottom: none;
}
.page--blog:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
.page--blog:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--photo:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
.page--photo:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--movie:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
.page--movie:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--chat-community:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
.page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--anochan_shinbun:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
.page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--blog:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
  .page--blog:not(.page--home) .wrap .list--thumbnail .list__item::after,
  .page--photo:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
  .page--photo:not(.page--home) .wrap .list--thumbnail .list__item::after,
  .page--movie:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
  .page--movie:not(.page--home) .wrap .list--thumbnail .list__item::after,
  .page--chat-community:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
  .page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item::after,
  .page--anochan_shinbun:not(.page--home) .wrap .list:not(.list--support) .list__item::after,
  .page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item::after {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}
.page--blog:not(.page--home) .wrap .list:not(.list--support) .list__item a,
.page--blog:not(.page--home) .wrap .list--thumbnail .list__item a,
.page--photo:not(.page--home) .wrap .list:not(.list--support) .list__item a,
.page--photo:not(.page--home) .wrap .list--thumbnail .list__item a,
.page--movie:not(.page--home) .wrap .list:not(.list--support) .list__item a,
.page--movie:not(.page--home) .wrap .list--thumbnail .list__item a,
.page--chat-community:not(.page--home) .wrap .list:not(.list--support) .list__item a,
.page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item a,
.page--anochan_shinbun:not(.page--home) .wrap .list:not(.list--support) .list__item a,
.page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item a {
  color: #f2eab6;
}
.page--blog:not(.page--home) .wrap .list:not(.list--support) .list__item .tit::before,
.page--blog:not(.page--home) .wrap .list--thumbnail .list__item .tit::before,
.page--photo:not(.page--home) .wrap .list:not(.list--support) .list__item .tit::before,
.page--photo:not(.page--home) .wrap .list--thumbnail .list__item .tit::before,
.page--movie:not(.page--home) .wrap .list:not(.list--support) .list__item .tit::before,
.page--movie:not(.page--home) .wrap .list--thumbnail .list__item .tit::before,
.page--chat-community:not(.page--home) .wrap .list:not(.list--support) .list__item .tit::before,
.page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item .tit::before,
.page--anochan_shinbun:not(.page--home) .wrap .list:not(.list--support) .list__item .tit::before,
.page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item .tit::before {
  z-index: 2;
  display: block;
  width: 0.85em;
  height: 0.85em;
  content: "";
  background-color: currentcolor;
  border: none;
  border-radius: unset;
  -webkit-mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02_line.svg") no-repeat center center;
          mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02_line.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (any-hover: hover) {
  .page--blog:not(.page--home) .wrap .list:not(.list--support) .list__item .tit:hover::before,
  .page--blog:not(.page--home) .wrap .list--thumbnail .list__item .tit:hover::before,
  .page--photo:not(.page--home) .wrap .list:not(.list--support) .list__item .tit:hover::before,
  .page--photo:not(.page--home) .wrap .list--thumbnail .list__item .tit:hover::before,
  .page--movie:not(.page--home) .wrap .list:not(.list--support) .list__item .tit:hover::before,
  .page--movie:not(.page--home) .wrap .list--thumbnail .list__item .tit:hover::before,
  .page--chat-community:not(.page--home) .wrap .list:not(.list--support) .list__item .tit:hover::before,
  .page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item .tit:hover::before,
  .page--anochan_shinbun:not(.page--home) .wrap .list:not(.list--support) .list__item .tit:hover::before,
  .page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item .tit:hover::before {
    background-color: currentcolor;
    -webkit-mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02.svg") no-repeat center center;
            mask: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-motif-02.svg") no-repeat center center;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
.page--blog:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--photo:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--movie:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--chat-community:not(.page--home) .wrap .list--thumbnail .list__item::after,
.page--anochan_shinbun:not(.page--home) .wrap .list--thumbnail .list__item::after {
  display: none;
}
.page--blog:not(.page--home) .wrap .section--detail .block--title, .page--blog:not(.page--home) .wrap .section--detail .block--tit, .page--blog:not(.page--home) .wrap .section--detail .block--txt, .page--blog:not(.page--home) .wrap .section--detail .block--editor,
.page--blog:not(.page--home) .wrap .section--list .block--title,
.page--blog:not(.page--home) .wrap .section--list .block--tit,
.page--blog:not(.page--home) .wrap .section--list .block--txt,
.page--blog:not(.page--home) .wrap .section--list .block--editor,
.page--photo:not(.page--home) .wrap .section--detail .block--title,
.page--photo:not(.page--home) .wrap .section--detail .block--tit,
.page--photo:not(.page--home) .wrap .section--detail .block--txt,
.page--photo:not(.page--home) .wrap .section--detail .block--editor,
.page--photo:not(.page--home) .wrap .section--list .block--title,
.page--photo:not(.page--home) .wrap .section--list .block--tit,
.page--photo:not(.page--home) .wrap .section--list .block--txt,
.page--photo:not(.page--home) .wrap .section--list .block--editor,
.page--movie:not(.page--home) .wrap .section--detail .block--title,
.page--movie:not(.page--home) .wrap .section--detail .block--tit,
.page--movie:not(.page--home) .wrap .section--detail .block--txt,
.page--movie:not(.page--home) .wrap .section--detail .block--editor,
.page--movie:not(.page--home) .wrap .section--list .block--title,
.page--movie:not(.page--home) .wrap .section--list .block--tit,
.page--movie:not(.page--home) .wrap .section--list .block--txt,
.page--movie:not(.page--home) .wrap .section--list .block--editor,
.page--chat-community:not(.page--home) .wrap .section--detail .block--title,
.page--chat-community:not(.page--home) .wrap .section--detail .block--tit,
.page--chat-community:not(.page--home) .wrap .section--detail .block--txt,
.page--chat-community:not(.page--home) .wrap .section--detail .block--editor,
.page--chat-community:not(.page--home) .wrap .section--list .block--title,
.page--chat-community:not(.page--home) .wrap .section--list .block--tit,
.page--chat-community:not(.page--home) .wrap .section--list .block--txt,
.page--chat-community:not(.page--home) .wrap .section--list .block--editor,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--title,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--txt,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--editor,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--title,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--txt,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--editor {
  color: #f2eab6;
}
.page--blog:not(.page--home) .wrap .section--detail .block--title .tit, .page--blog:not(.page--home) .wrap .section--detail .block--tit .tit, .page--blog:not(.page--home) .wrap .section--detail .block--txt .tit, .page--blog:not(.page--home) .wrap .section--detail .block--editor .tit,
.page--blog:not(.page--home) .wrap .section--list .block--title .tit,
.page--blog:not(.page--home) .wrap .section--list .block--tit .tit,
.page--blog:not(.page--home) .wrap .section--list .block--txt .tit,
.page--blog:not(.page--home) .wrap .section--list .block--editor .tit,
.page--photo:not(.page--home) .wrap .section--detail .block--title .tit,
.page--photo:not(.page--home) .wrap .section--detail .block--tit .tit,
.page--photo:not(.page--home) .wrap .section--detail .block--txt .tit,
.page--photo:not(.page--home) .wrap .section--detail .block--editor .tit,
.page--photo:not(.page--home) .wrap .section--list .block--title .tit,
.page--photo:not(.page--home) .wrap .section--list .block--tit .tit,
.page--photo:not(.page--home) .wrap .section--list .block--txt .tit,
.page--photo:not(.page--home) .wrap .section--list .block--editor .tit,
.page--movie:not(.page--home) .wrap .section--detail .block--title .tit,
.page--movie:not(.page--home) .wrap .section--detail .block--tit .tit,
.page--movie:not(.page--home) .wrap .section--detail .block--txt .tit,
.page--movie:not(.page--home) .wrap .section--detail .block--editor .tit,
.page--movie:not(.page--home) .wrap .section--list .block--title .tit,
.page--movie:not(.page--home) .wrap .section--list .block--tit .tit,
.page--movie:not(.page--home) .wrap .section--list .block--txt .tit,
.page--movie:not(.page--home) .wrap .section--list .block--editor .tit,
.page--chat-community:not(.page--home) .wrap .section--detail .block--title .tit,
.page--chat-community:not(.page--home) .wrap .section--detail .block--tit .tit,
.page--chat-community:not(.page--home) .wrap .section--detail .block--txt .tit,
.page--chat-community:not(.page--home) .wrap .section--detail .block--editor .tit,
.page--chat-community:not(.page--home) .wrap .section--list .block--title .tit,
.page--chat-community:not(.page--home) .wrap .section--list .block--tit .tit,
.page--chat-community:not(.page--home) .wrap .section--list .block--txt .tit,
.page--chat-community:not(.page--home) .wrap .section--list .block--editor .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--title .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--tit .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--txt .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--editor .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--title .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--tit .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--txt .tit,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--editor .tit {
  color: currentcolor;
}
.page--blog:not(.page--home) .wrap .section--detail .detail__btn a,
.page--blog:not(.page--home) .wrap .section--list .detail__btn a,
.page--photo:not(.page--home) .wrap .section--detail .detail__btn a,
.page--photo:not(.page--home) .wrap .section--list .detail__btn a,
.page--movie:not(.page--home) .wrap .section--detail .detail__btn a,
.page--movie:not(.page--home) .wrap .section--list .detail__btn a,
.page--chat-community:not(.page--home) .wrap .section--detail .detail__btn a,
.page--chat-community:not(.page--home) .wrap .section--list .detail__btn a,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .detail__btn a,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .detail__btn a {
  --btn-color: #f2eab6;
  --btn-text-hover: #357baf;
}
.page--blog:not(.page--home) .wrap .searchBox input,
.page--photo:not(.page--home) .wrap .searchBox input,
.page--movie:not(.page--home) .wrap .searchBox input,
.page--chat-community:not(.page--home) .wrap .searchBox input,
.page--anochan_shinbun:not(.page--home) .wrap .searchBox input {
  color: #fff;
}
.page--blog:not(.page--home) .wrap .searchBox input::-webkit-input-placeholder, .page--photo:not(.page--home) .wrap .searchBox input::-webkit-input-placeholder, .page--movie:not(.page--home) .wrap .searchBox input::-webkit-input-placeholder, .page--chat-community:not(.page--home) .wrap .searchBox input::-webkit-input-placeholder, .page--anochan_shinbun:not(.page--home) .wrap .searchBox input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.6;
}
.page--blog:not(.page--home) .wrap .searchBox input::-moz-placeholder, .page--photo:not(.page--home) .wrap .searchBox input::-moz-placeholder, .page--movie:not(.page--home) .wrap .searchBox input::-moz-placeholder, .page--chat-community:not(.page--home) .wrap .searchBox input::-moz-placeholder, .page--anochan_shinbun:not(.page--home) .wrap .searchBox input::-moz-placeholder {
  color: #fff;
  opacity: 0.6;
}
.page--blog:not(.page--home) .wrap .searchBox input:-ms-input-placeholder, .page--photo:not(.page--home) .wrap .searchBox input:-ms-input-placeholder, .page--movie:not(.page--home) .wrap .searchBox input:-ms-input-placeholder, .page--chat-community:not(.page--home) .wrap .searchBox input:-ms-input-placeholder, .page--anochan_shinbun:not(.page--home) .wrap .searchBox input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}
.page--blog:not(.page--home) .wrap .searchBox input::placeholder,
.page--photo:not(.page--home) .wrap .searchBox input::placeholder,
.page--movie:not(.page--home) .wrap .searchBox input::placeholder,
.page--chat-community:not(.page--home) .wrap .searchBox input::placeholder,
.page--anochan_shinbun:not(.page--home) .wrap .searchBox input::placeholder {
  color: #fff;
  opacity: 0.6;
}
.page--blog:not(.page--home) .wrap .footer::before,
.page--photo:not(.page--home) .wrap .footer::before,
.page--movie:not(.page--home) .wrap .footer::before,
.page--chat-community:not(.page--home) .wrap .footer::before,
.page--anochan_shinbun:not(.page--home) .wrap .footer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--blog:not(.page--home) .wrap .footer::before,
  .page--photo:not(.page--home) .wrap .footer::before,
  .page--movie:not(.page--home) .wrap .footer::before,
  .page--chat-community:not(.page--home) .wrap .footer::before,
  .page--anochan_shinbun:not(.page--home) .wrap .footer::before {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}
.page--blog:not(.page--home) .wrap .footer::before,
.page--photo:not(.page--home) .wrap .footer::before,
.page--movie:not(.page--home) .wrap .footer::before,
.page--chat-community:not(.page--home) .wrap .footer::before,
.page--anochan_shinbun:not(.page--home) .wrap .footer::before {
  top: 0;
  bottom: auto;
  left: 1.5vw;
  width: calc(100% - 3vw);
}
.page--blog:not(.page--home):not(.drawer-visible) .wrap .header h1.logo a svg,
.page--photo:not(.page--home):not(.drawer-visible) .wrap .header h1.logo a svg,
.page--movie:not(.page--home):not(.drawer-visible) .wrap .header h1.logo a svg,
.page--chat-community:not(.page--home):not(.drawer-visible) .wrap .header h1.logo a svg,
.page--anochan_shinbun:not(.page--home):not(.drawer-visible) .wrap .header h1.logo a svg {
  fill: #00ff00;
}
.page--blog:not(.page--home):not(.drawer-visible) .wrap .drawer__btn span,
.page--photo:not(.page--home):not(.drawer-visible) .wrap .drawer__btn span,
.page--movie:not(.page--home):not(.drawer-visible) .wrap .drawer__btn span,
.page--chat-community:not(.page--home):not(.drawer-visible) .wrap .drawer__btn span,
.page--anochan_shinbun:not(.page--home):not(.drawer-visible) .wrap .drawer__btn span {
  color: #00ff00;
}

.page--blog:not(.page--home) .wrap .section--detail .block--title,
.page--blog:not(.page--home) .wrap .section--list .block--title,
.page--photo:not(.page--home) .wrap .section--detail .block--title,
.page--photo:not(.page--home) .wrap .section--list .block--title,
.page--movie:not(.page--home) .wrap .section--detail .block--title,
.page--movie:not(.page--home) .wrap .section--list .block--title,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--title,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--title {
  position: relative;
  border-bottom: none;
}
.page--blog:not(.page--home) .wrap .section--detail .block--title::after,
.page--blog:not(.page--home) .wrap .section--list .block--title::after,
.page--photo:not(.page--home) .wrap .section--detail .block--title::after,
.page--photo:not(.page--home) .wrap .section--list .block--title::after,
.page--movie:not(.page--home) .wrap .section--detail .block--title::after,
.page--movie:not(.page--home) .wrap .section--list .block--title::after,
.page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--title::after,
.page--anochan_shinbun:not(.page--home) .wrap .section--list .block--title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(0.5208333333vw + 1px);
  content: "";
  background-image: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/fc-border-01.png");
  background-repeat: repeat-x;
  background-size: 0.5208333333vw 0.5208333333vw;
}
@media screen and (max-width: 960px) {
  .page--blog:not(.page--home) .wrap .section--detail .block--title::after,
  .page--blog:not(.page--home) .wrap .section--list .block--title::after,
  .page--photo:not(.page--home) .wrap .section--detail .block--title::after,
  .page--photo:not(.page--home) .wrap .section--list .block--title::after,
  .page--movie:not(.page--home) .wrap .section--detail .block--title::after,
  .page--movie:not(.page--home) .wrap .section--list .block--title::after,
  .page--anochan_shinbun:not(.page--home) .wrap .section--detail .block--title::after,
  .page--anochan_shinbun:not(.page--home) .wrap .section--list .block--title::after {
    height: 1.5625vw;
    background-size: 1.5625vw 100%;
  }
}

body:not(.page--home).page--blog .wrap .section--detail .block--title {
  padding-bottom: 1.5625vw;
}
@media screen and (max-width: 960px) {
  body:not(.page--home).page--blog .wrap .section--detail .block--title {
    padding-bottom: 4vw;
  }
}
body:not(.page--home).page--blog .wrap .section--detail .block--title .tit {
  color: #a7001c;
}
body:not(.page--home).page--blog .wrap .section--detail .block--title .wrap--data {
  line-height: 1;
}
body:not(.page--home).page--blog .wrap .section--detail .block--title .date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 4px 24px;
  color: #fff;
  background: #1744c6;
}
body:not(.page--home).page--blog .wrap .section--detail .block--editor {
  margin-bottom: 10.4166666667vw;
  line-height: 2;
  color: #a7001c;
}
body:not(.page--home).page--blog .wrap .section--detail .block--editor .br {
  display: block;
  margin-bottom: 2em;
}
body:not(.page--home).page--blog .wrap .section--list .list--blog .list__item .tit {
  color: #a7001c;
}

.page--schedule .wrap .section--list .block--refine label p {
  color: #000;
  background: none;
}
.page--schedule .wrap .section--list .block--refine input[type=checkbox]:checked + p {
  color: #1744c6;
  background: none;
}

.page--video:not(.page--home) .wrap .block--txt,
.page--movie:not(.page--home) .wrap .block--txt {
  margin-bottom: 2em;
}
.page--video:not(.page--home) .wrap .section--detail .block--title,
.page--movie:not(.page--home) .wrap .section--detail .block--title {
  padding-bottom: 0;
  margin-top: 0;
  border-bottom: none;
}
.page--video:not(.page--home) .wrap .section--detail .block--tit .date,
.page--movie:not(.page--home) .wrap .section--detail .block--tit .date {
  margin-bottom: 0;
}
.page--video:not(.page--home) .wrap .video,
.page--video:not(.page--home) .wrap .area--movie,
.page--movie:not(.page--home) .wrap .video,
.page--movie:not(.page--home) .wrap .area--movie {
  margin-top: 5.2083333333vw;
}

.page--discography .wrap .wrap--disc-detail {
  margin-top: 5.2083333333vw;
}

.page--movie .wrap #form__search {
  margin: 2.0833333333vw 0 4.1666666667vw;
}
.page--movie .wrap .block--txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page--movie .wrap .date {
  font-size: clamp(1.05rem, 1.25vw, 1.65rem);
  opacity: 1;
}
.page--movie .wrap .tit {
  display: flex;
  padding-left: 0;
  margin: 0;
  font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
}

@media screen and (max-width: 960px) {
  body.page--photo.page--photo-detail .wrap .section-tit {
    padding: 0;
  }
}
body.page--photo.page--photo-detail .wrap .list--thumbnail li {
  width: calc((100% - 4.1666666667vw) / 3);
  margin: 0;
}
@media screen and (max-width: 960px) {
  body.page--photo.page--photo-detail .wrap .list--thumbnail li {
    width: 100%;
  }
}

body.page--information.page--schedule .wrap .section--detail .block--title .date {
  max-width: 100%;
}
body.page--information.page--schedule .wrap .section--detail .block--title .block--date {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page--information.page--schedule .wrap .section--detail .block--title .block--date .block--date__youbi {
  display: inline-block;
  margin-left: 4px;
}

body:not(.page--home).page--chat-community .wrap .header h1.logo {
  width: 4.1666666667vw;
}
@media screen and (max-width: 960px) {
  body:not(.page--home).page--chat-community .wrap .header h1.logo {
    width: 10.6666666667vw;
  }
}
body:not(.page--home).page--chat-community .wrap .container {
  margin-bottom: 1.5vw;
}
body:not(.page--home).page--chat-community .wrap .footer {
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}
body:not(.page--home).page--chat-community .wrap .footer__inner {
  margin: 0;
}
body:not(.page--home).page--chat-community .wrap .section--detail {
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  body:not(.page--home).page--chat-community .wrap .section--detail {
    padding: 0 1em;
  }
}
body:not(.page--home).page--chat-community .wrap .section--detail__inner {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
body:not(.page--home).page--chat-community .wrap .block--title {
  position: relative;
  top: 0;
  z-index: 1;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: stretch;
  width: 100%;
  padding: 2.0833333333vw;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid #357baf;
}
body:not(.page--home).page--chat-community .wrap .block--title::after {
  display: none;
}
body:not(.page--home).page--chat-community .wrap .block--title.UpMove {
  animation: none;
}
body:not(.page--home).page--chat-community .wrap .block--title.DownMove {
  animation: none;
}
body:not(.page--home).page--chat-community .wrap .block--title .section-tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin: 0 auto 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(1.70625rem, 2.03125vw, 2.68125rem);
  line-height: 1.2;
  color: #1744c6;
  white-space: nowrap;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch {
  margin-inline: 0;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch {
  height: auto;
  padding: 0.5em 1em;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .datepicker {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: clamp(0.6125rem, 0.7291666667vw, 0.9625rem);
  color: #000;
  text-indent: 3.5em;
  background: #fff;
  border-radius: 0.5em;
}
@media screen and (max-width: 960px) {
  body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .datepicker {
    text-indent: 3em;
  }
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .datepicker::-webkit-input-placeholder {
  font-size: 10px;
  color: #000;
  opacity: 0.2;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .datepicker::-moz-placeholder {
  font-size: 10px;
  color: #000;
  opacity: 0.2;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .datepicker:-ms-input-placeholder {
  font-size: 10px;
  color: #000;
  opacity: 0.2;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .datepicker::placeholder {
  font-size: 10px;
  color: #000;
  opacity: 0.2;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch i,
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .btn {
  position: relative;
  inset: unset;
  z-index: inherit;
  line-height: 1;
  transform: none;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0;
}
body:not(.page--home).page--chat-community .wrap .block--title .block--cmnty_serch .cmnty_serch .btn--main {
  display: block;
  width: auto;
  min-width: auto;
  padding: 0.5em 1.5em;
  margin: 0;
  font-size: 10px;
  color: #fff;
  background: #1744c6;
}
body:not(.page--home).page--chat-community .wrap .block--title .btn--small {
  display: flex;
  gap: 0.25em;
  align-items: center;
  padding: 0;
  padding: 0.5em 1em;
  margin: 0 0 0 auto;
  font-size: 10px;
  color: #fff;
  background: #c1272d;
  border: 1px solid #c1272d;
  border-radius: 1000px;
}
@media (any-hover: hover) {
  body:not(.page--home).page--chat-community .wrap .block--title .btn--small:hover {
    color: #c1272d;
    background: none;
    border-color: currentcolor;
    opacity: 1;
  }
}
body:not(.page--home).page--chat-community #ui-datepicker-div {
  background: #fff;
}
body:not(.page--home).page--chat-community #ui-datepicker-div .ui-datepicker-calendar tbody tr td .ui-state-active::before {
  background: #c1272d;
}
body:not(.page--home).page--chat-community #ui-datepicker-div .ui-datepicker-calendar tbody tr td .ui-state-highlight::before {
  border-color: #c1272d;
}
body:not(.page--home).page--chat-community #ui-datepicker-div .ui-datepicker-buttonpane button {
  background: #1744c6;
}
body:not(.page--home).page--chat-community .block--comment {
  height: calc(100vh - 18.2291666667vw);
}
@media screen and (max-width: 960px) {
  body:not(.page--home).page--chat-community .block--comment {
    height: calc(100vh - 30.6666666667vw) !important;
  }
}
body:not(.page--home).page--chat-community .block--comment .list--comment {
  flex-direction: column-reverse;
  padding-top: 0;
}
body:not(.page--home).page--chat-community .block--comment .list--comment li + li {
  margin-bottom: 3em;
}
body:not(.page--home).page--chat-community .block--comment .list--comment li .wrap--action .do-comment {
  color: #1744c6;
}
body:not(.page--home).page--chat-community .switching {
  gap: 2em;
  padding-bottom: 0;
}
body:not(.page--home).page--chat-community .switching li + li {
  margin: 0;
}
body:not(.page--home).page--chat-community .switching.all li .btn_artist {
  opacity: 0.5;
}
body:not(.page--home).page--chat-community .switching.all li .btn_all {
  color: #1744c6;
}
body:not(.page--home).page--chat-community .switching.artist li .btn_all {
  opacity: 0.5;
}
body:not(.page--home).page--chat-community .switching.artist li .btn_artist {
  color: #1744c6;
}
body:not(.page--home).page--chat-community .form--inptarea {
  background: #1744c6;
}
body:not(.page--home).page--chat-community .form--inptarea textarea {
  background: #fff;
}
body:not(.page--home).page--chat-community .form--inptarea .input_close {
  background: #1744c6;
}
body:not(.page--home).page--chat-community .form--inptarea .comment_reply_confirm_popup i {
  color: #fff;
}
body:not(.page--home).page--chat-community .form--inptarea .comment_reply_input_close::before, body:not(.page--home).page--chat-community .form--inptarea .comment_reply_input_close::after {
  background: #fff;
}
body:not(.page--home).page--chat-community .wrap--action.list--head .form--inptarea {
  background: #1744c6;
}
body:not(.page--home).page--chat-community .wrap--action.list--head #comment_popup {
  background: #1744c6;
}
body:not(.page--home).page--chat-community .btn--main {
  background: #1744c6;
}

.page--chat-community .wrap .section--detail .section-tit,
.page--chat-community .wrap .section--detail .txt--basic,
.page--chat-community .wrap .section--detail .btn {
  color: #f2eab6;
  text-align: center;
}
.page--chat-community .wrap .btn {
  margin: 6.25vw auto 0;
}
.page--chat-community .wrap .btn .btn--sub {
  padding: 16px 24px;
  font-size: clamp(1.05rem, 1.25vw, 1.65rem);
  line-height: 1;
  color: #f2eab6;
  text-align: center;
  border-color: currentcolor;
  border-width: 2px;
}
@media screen and (max-width: 960px) {
  .page--chat-community .wrap .btn .btn--sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px 32px;
  }
}
@media (any-hover: hover) {
  .page--chat-community .wrap .btn .btn--sub:hover {
    color: #000;
    background: #f2eab6;
    border-color: #f2eab6;
    opacity: 1;
  }
}

.page--introduction .attention_entry,
.page--introduction .block--first_login {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

body:not(.page--home).page--faq .wrap .tit--category {
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #000;
}
body:not(.page--home).page--faq .wrap .tit--category + .list--faq li:first-child {
  border-top: none;
}
body:not(.page--home).page--faq .wrap .tit--category + .list--faq li a {
  display: flex;
  gap: 1em;
}
body:not(.page--home).page--faq .wrap .tit--category + .list--faq li a .icon--q {
  margin: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 150%;
  line-height: 1;
}
body:not(.page--home).page--faq .wrap .tit--category + .list--faq li a .tit {
  padding: 0;
}
body:not(.page--home).page--faq .wrap .section--detail .tit--category {
  margin-top: 4.1666666667vw;
  border: none;
}
@media screen and (max-width: 960px) {
  body:not(.page--home).page--faq .wrap .section--detail .tit--category {
    margin-top: 10.6666666667vw;
  }
}
body:not(.page--home).page--faq .wrap .section--detail .block--faq-detail {
  margin: 2em auto;
}

.page--error:not(.page--home) .wrap {
  color: #fff;
  background: blue;
}
.page--error:not(.page--home) .wrap .header {
  color: #fff;
}
.page--error:not(.page--home) .wrap .footer {
  display: none;
}
.page--error:not(.page--home) .wrap .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.page--error:not(.page--home) .wrap .section-error {
  margin-bottom: 0;
}
.page--error:not(.page--home) .wrap .section-error .tit {
  margin-bottom: 1em;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: clamp(2.625rem, 3.125vw, 4.125rem);
}
@media screen and (max-width: 960px) {
  .page--error:not(.page--home) .wrap .section-error .tit {
    margin-bottom: 2em;
    font-size: clamp(1.3125rem, 1.5625vw, 2.0625rem);
  }
}
.page--error:not(.page--home) .wrap .section-error .tit .number {
  font-size: clamp(8.75rem, 10.4166666667vw, 13.75rem);
}
@media screen and (max-width: 960px) {
  .page--error:not(.page--home) .wrap .section-error .tit .number {
    font-size: clamp(4.375rem, 5.2083333333vw, 6.875rem);
  }
}
.page--error:not(.page--home) .wrap .section-error + .btn {
  margin: 2em auto 0;
}
@media screen and (max-width: 960px) {
  .page--error:not(.page--home) .wrap .section-error + .btn {
    margin-top: 3em;
  }
}
.page--error:not(.page--home) .wrap .section-error + .btn .btn--sub {
  color: #fff;
  border-color: currentcolor;
}

#page-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: #357baf;
  opacity: 0;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}
#page-loading.is-visible {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
#page-loading.is-visible .page-loading__char {
  animation: nyoki 1.5s ease-in-out forwards;
}
#page-loading.is-hidden {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
#page-loading .page-loading__char {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 41.6666666667vw;
  transform: translate(-50%, 150%);
}
@media screen and (max-width: 960px) {
  #page-loading .page-loading__char {
    width: 66.6666666667vw;
  }
}
#page-loading .page-loading__char img {
  width: 100%;
  height: auto;
}

#community-caution-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  padding: 2em 0;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-overflow-scrolling: touch;
}
#community-caution-box {
  position: relative;
  width: 90%;
  max-width: 500px;
  padding: 1.5em;
  margin: auto;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  animation: fadeInBox 0.3s ease-out;
}

.caution-title {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-size: 125%;
  font-weight: bold;
  color: #1744c6;
  border-bottom: 2px solid #ccc;
}
.caution-text {
  margin: 1em 0 3em;
  color: rgba(0, 0, 0, 0.87);
  text-align: left;
}
.caution-text ol {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  margin: 1.5em 0;
  font-size: 0.9em;
  counter-reset: num;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.caution-text ol > li {
  padding-bottom: 1em;
  counter-increment: num;
  border-bottom: 1px dotted rgba(204, 204, 204, 0.3);
}
.caution-text ol > li span {
  display: block;
}
.caution-text ol > li span::before {
  display: inline-block;
  margin-right: 0.25em;
  font-size: 110%;
  content: counter(num) ". ";
}
.caution-text ol > li span.tit {
  padding-bottom: 0.5em;
}
.caution-text ol > li span.tit::before {
  display: inline-block;
  margin-right: 0.25em;
  font-size: 110%;
  content: counter(num) ". ";
}
.caution-text ol > li span.tit + span,
.caution-text ol > li span.tit + ul {
  font-size: 0.85em;
}
.caution-text ol > li span.tit + span::before,
.caution-text ol > li span.tit + ul::before {
  display: none;
}
.caution-text ol > li span.tit + ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0 0 0 1.5em;
}
.caution-text ol > li span.tit + ul li {
  list-style: disc;
}
.caution-text ol strong {
  color: #c1272d;
}
.caution-close-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75em 4em;
  font-size: 105%;
  font-weight: bold;
  color: #fff;
  background: #1744c6;
  border: 2px solid #1744c6;
  border-radius: 1000px;
}
.caution-close-btn:hover {
  color: #1744c6;
  background: transparent;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  a {
    transition: none;
  }
  body .wrap {
    cursor: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/cursor-01.svg") 16 16, auto;
  }
  body .wrap #area--fc,
  body .wrap footer {
    cursor: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/cursor-02.svg") 16 16, auto;
  }
  body .wrap a,
  body .wrap button,
  body .wrap .drawer__btn,
  body .wrap .caution-close-btn {
    cursor: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/img/cursor-03.svg") 16 16, auto;
    transition: none;
  }
}
@media screen and (min-width: 961px) and (any-hover: hover) {
  body .wrap a:hover img,
  body .wrap a:hover figure,
  body .wrap button:hover img,
  body .wrap button:hover figure,
  body .wrap .drawer__btn:hover img,
  body .wrap .drawer__btn:hover figure,
  body .wrap .caution-close-btn:hover img,
  body .wrap .caution-close-btn:hover figure {
    filter: sepia(1) hue-rotate(200deg) saturate(0.3) brightness(1.1) contrast(0.6);
  }
}
@media screen and (min-width: 961px) {
  .footer {
    padding: 90px 0;
  }
}
@media screen and (max-width: 960px) {
  /* common.scss
  ============================== */
  .pc {
    display: none !important;
  }
  body.drawer-open {
    overflow: hidden;
  }
}
