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

body {
  margin: 0;
}

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

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

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

a {
  background-color: transparent;
}

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

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

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

i, em {
  font-style: normal;
}

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;
}

@keyframes new-shine {
  0% {
    left: -80%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  45% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
@keyframes rainbow-fade {
  0% {
    color: #ce0000;
  }
  14.285% {
    color: #dc8c01;
  }
  28.57% {
    color: #e7d302;
  }
  42.855% {
    color: #028621;
  }
  57.14% {
    color: #0190cc;
  }
  71.425% {
    color: #0064a0;
  }
  85.71% {
    color: #8e0070;
  }
  100% {
    color: #ce0000;
  }
}
/* ==============================================================
*  contents
* ============================================================ */

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

svg {
  fill: currentcolor;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

/* Body要素 */
body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  font-feature-settings: "palt" 1;
  line-height: var(--line-height);
  color: var(--color-text);
  text-align: left;
  overflow-wrap: anywhere;
  background-color: var(--color-bg);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open #overlay {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  body {
    max-height: 100dvh;
    overflow: hidden;
  }
}

.wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wrap {
    background: rgb(51.5, 51.5, 51.5);
    position: relative;
    overflow: hidden;
    z-index: 0;
    background-size: cover;
    background-position: top center;
  }
  .wrap::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
    background-position: center center;
    background-size: 20vw;
    pointer-events: none;
    opacity: 0.1;
  }
  .wrap {
    display: flex;
    gap: 10vw;
    justify-content: center;
    height: 100dvh;
    max-height: 100dvh;
    margin: auto;
    overflow: hidden;
  }
}
.wrap__concept {
  display: none;
}
@media screen and (min-width: 768px) {
  .wrap__concept {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.wrap__concept .logo {
  width: 30vw;
  height: auto;
  transition: color 0.2s ease;
  animation: rainbow-fade 10s ease-in-out infinite;
}
.wrap__concept .logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrap__content {
  scrollbar-width: none;
  background: #fff;
  -ms-overflow-style: none;
}
.wrap__content::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .wrap__content {
    width: 400px;
    height: 100dvh;
    overflow-y: auto;
    box-shadow: 0 0 20px 0 rgba(26, 26, 26, 0.5);
  }
}

:root {
  --line-height: 1.33;
  --font-weight: 400;
  --font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, sans-serif;
  --font-family-en: Jost, Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, sans-serif;
  --font-size: 0.9375rem;
  --color-text: #555;
  --color-bg: #fff;
  --color-black: #1a1a1a;
  --color-white: #fff;
  --color-drawer-bg: #ddd;
  --color-footer-bg: #616161;
  --header-height: 0px;
  --main-padding-top: var(--header-height);
  --footer-height: 0px;
  --pager-height: 0px;
  --section-title-height: 0px;
  --section-category-height: 0px;
  --no-img: url("/static/larcenciel/fanclub/common/img/no-img.png");
}
@media screen and (min-width: 768px) {
  :root {
    --main-padding-top: 0px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}

.main {
  padding-top: var(--main-padding-top);
}

a,
a:visited,
.official-contents-nav__toggle {
  text-decoration: none;
  transition-property: opacity;
  transition-duration: 0.1s;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  a:hover,
  a:visited:hover,
  .official-contents-nav__toggle:hover {
    opacity: 0.5;
  }
}
@media (any-hover: hover) {
  a.btn:hover,
  a:visited.btn:hover,
  .official-contents-nav__toggle.btn:hover {
    opacity: initial;
  }
}

#overlay {
  position: fixed;
  inset: 0;
  visibility: hidden;
  content: "";
  background: rgba(26, 26, 26, 0.5);
  opacity: 0;
  transition-property: opacity, visibility;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

button,
input[type=button],
input[type=submit],
input[type=reset],
.btn {
  padding: 0;
  font: inherit;
  line-height: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.btn {
  position: relative;
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  max-width: 30em;
  padding: 0.75em 1.5em;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border-radius: 0.25rem;
  transition-property: opacity, background;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.btn i {
  font-size: 100%;
}
.btn svg {
  width: auto;
  height: 0.6em;
  fill: currentcolor;
}
.btn--small {
  padding: 0.6666666667em;
  font-size: 0.75rem;
}
.btn--join {
  color: #fff;
  background: #207fc7;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.btn--join::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
@media (any-hover: hover) {
  .btn--join:hover {
    background: rgb(58.5844155844, 152.3506493506, 223.4155844156);
    position: relative;
    overflow: hidden;
    z-index: 0;
    background-size: cover;
    background-position: top center;
  }
  .btn--join:hover::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
    background-position: center center;
    background-size: 20vw;
    pointer-events: none;
    opacity: 0.1;
  }
}
.btn--login {
  background: #e6e6e6;
}
@media (any-hover: hover) {
  .btn--login:hover {
    background: rgb(217.25, 217.25, 217.25);
  }
}
.btn--submit {
  width: 100%;
  color: #fff;
  background: #dc8c01;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.btn--submit::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.btn--main {
  color: #fff;
  background: #dc8c01;
}
@media (any-hover: hover) {
  .btn--main:hover {
    background: rgb(253.9230769231, 167.7692307692, 18.0769230769);
  }
}
.btn--first-login {
  color: #ce0000;
  background: #fff;
}
@media (any-hover: hover) {
  .btn--first-login:hover {
    background: rgb(229.5, 229.5, 229.5);
  }
}
.btn--sub {
  color: #555;
  background: #e6e6e6;
  border: none;
}
@media (any-hover: hover) {
  .btn--sub:hover {
    color: #555;
    background: rgb(217.25, 217.25, 217.25);
  }
}

.mypage-button-list {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.searchBox__form {
  display: flex;
  align-items: stretch;
}
.searchBox__input {
  width: 100%;
  min-width: 18em;
  max-width: 30em;
  padding: 0.5em;
  font: inherit;
  line-height: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}
.searchBox__submit {
  display: flex;
  align-items: center;
  padding: 1em;
  line-height: 1;
  color: #fff;
  background: #dc8c01;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.searchBox__submit::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.searchBox__submit {
  border-radius: 0 0.25rem 0.25rem 0;
}
@media (any-hover: hover) {
  .searchBox__submit:hover {
    background: rgb(253.9230769231, 167.7692307692, 18.0769230769);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: var(--color-bg);
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media screen and (min-width: 768px) {
  .site-header {
    position: -webkit-sticky;
    position: sticky;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem;
  margin-inline: auto;
}
.site-header__logo a {
  display: block;
  height: 1.875rem;
  color: #1a1a1a;
}
.site-header__logo a img,
.site-header__logo a svg {
  display: block;
  width: auto;
  height: 100%;
}
.site-header__button-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.5);
}
.site-header.is-scrolled::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.drawer-trigger {
  position: relative;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  justify-content: space-between;
  width: 2rem;
  height: 1.6rem;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-black);
  text-align: center;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.drawer-trigger__lines {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 0.8rem;
}
.drawer-trigger__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0.2em;
  background: currentcolor;
  transition-property: top, transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.drawer-trigger__line:nth-child(1) {
  top: 0;
}
.drawer-trigger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.drawer-trigger__line:nth-child(3) {
  bottom: 0;
}
.drawer-trigger__text {
  width: 100%;
  text-align: center;
}
.drawer-trigger.is-open {
  color: var(--color-white);
}
.is-open .drawer-trigger__lines {
  overflow: hidden;
}
.is-open .drawer-trigger__line:nth-child(1) {
  top: 0;
  transform: rotate(20deg) translateX(5%);
  transform-origin: top left;
}
.is-open .drawer-trigger__line:nth-child(2) {
  opacity: 0;
}
.is-open .drawer-trigger__line:nth-child(3) {
  top: 0;
  bottom: auto;
  transform: rotate(-20deg) translateX(-5%);
  transform-origin: top right;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 1000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100dvw;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: #1a1a1a;
  box-shadow: 0 0 0 0 rgba(26, 26, 26, 0);
  transform: translateX(100%);
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  transition-property: transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media screen and (min-width: 768px) {
  .drawer {
    position: absolute;
    max-width: calc(100% - 2em);
  }
}
.drawer::-webkit-scrollbar {
  display: none;
}
.drawer.is-open {
  box-shadow: 0 0 1vw 0 rgba(26, 26, 26, 0.8);
  transform: translateX(0);
}
.drawer__inner {
  padding: 0 calc(var(--drawer-trigger-width) + 1.5rem) 0 0;
}
.drawer__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100dvh;
  background: rgb(51.5, 51.5, 51.5);
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.drawer__body::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.drawer .mypage-button-list {
  flex-direction: column;
  padding: 1em 0.75em;
  background: #207fc7;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.drawer .mypage-button-list::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.drawer .mypage-button-list__item {
  width: 100%;
}
.drawer .mypage-button-list .btn {
  padding-block: 1em;
  color: #555;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.drawer .mypage-button-list .btn--join, .drawer .mypage-button-list .btn--login {
  background: #fff;
}
.drawer .mypage-button-list .btn--join::after, .drawer .mypage-button-list .btn--login::after {
  background: none;
}

.site-footer {
  color: var(--color-white);
  background: var(--color-footer-bg);
}
.site-footer__inner {
  padding: 1.5rem 1rem;
  margin-inline: auto;
}
.site-footer .footer-nav {
  margin-bottom: 2.5rem;
}
.site-footer .copyright {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.2;
  text-align: center;
}

.icon-plus__horizontal, .icon-plus__vertical {
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.official-contents-nav__list, .official-contents-nav__child-list,
.members-nav__list,
.members-nav__child-list {
  display: grid;
  font-family: var(--font-family-en);
  list-style: none;
}
.official-contents-nav__item,
.members-nav__item {
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.official-contents-nav__item::after,
.members-nav__item::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.official-contents-nav__item,
.members-nav__item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  border-left: 0.2666666667em solid;
}
.official-contents-nav__item--news,
.members-nav__item--news {
  border-left-color: #ce0000;
}
.official-contents-nav__item--news .arrow,
.official-contents-nav__item--news .icon-plus,
.members-nav__item--news .arrow,
.members-nav__item--news .icon-plus {
  fill: #ce0000;
}
.official-contents-nav__item--media,
.members-nav__item--media {
  border-left-color: #dc8c01;
}
.official-contents-nav__item--media .arrow,
.official-contents-nav__item--media .icon-plus,
.members-nav__item--media .arrow,
.members-nav__item--media .icon-plus {
  fill: #dc8c01;
}
.official-contents-nav__item--live,
.members-nav__item--live {
  border-left-color: #e7d302;
}
.official-contents-nav__item--live .arrow,
.official-contents-nav__item--live .icon-plus,
.members-nav__item--live .arrow,
.members-nav__item--live .icon-plus {
  fill: #e7d302;
}
.official-contents-nav__item--profile,
.members-nav__item--profile {
  border-left-color: #0190cc;
}
.official-contents-nav__item--profile .arrow,
.official-contents-nav__item--profile .icon-plus,
.members-nav__item--profile .arrow,
.members-nav__item--profile .icon-plus {
  fill: #0190cc;
}
.official-contents-nav__item--discography,
.members-nav__item--discography {
  border-left-color: #0064a0;
}
.official-contents-nav__item--discography .arrow,
.official-contents-nav__item--discography .icon-plus,
.members-nav__item--discography .arrow,
.members-nav__item--discography .icon-plus {
  fill: #0064a0;
}
.official-contents-nav__item--goods,
.members-nav__item--goods {
  border-left-color: #8e0070;
}
.official-contents-nav__item--goods .arrow,
.official-contents-nav__item--goods .icon-plus,
.members-nav__item--goods .arrow,
.members-nav__item--goods .icon-plus {
  fill: #8e0070;
}
.official-contents-nav__link, .official-contents-nav__child-link,
.members-nav__link,
.members-nav__child-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--color-white);
}
.official-contents-nav__link .text, .official-contents-nav__child-link .text,
.members-nav__link .text,
.members-nav__child-link .text {
  line-height: 1.4;
  text-shadow: 0 1px 1px rgba(26, 26, 26, 0.8);
  transform: translateY(0.06em);
}
.official-contents-nav__link .arrow,
.official-contents-nav__link .icon-plus, .official-contents-nav__child-link .arrow,
.official-contents-nav__child-link .icon-plus,
.members-nav__link .arrow,
.members-nav__link .icon-plus,
.members-nav__child-link .arrow,
.members-nav__child-link .icon-plus {
  display: block;
  width: 0.4705882353em;
  height: 0.5882352941em;
}
.official-contents-nav__link,
.members-nav__link {
  gap: 1em;
  padding: 0.7em;
  font-size: 1.5rem;
}
.official-contents-nav__child-link,
.members-nav__child-link {
  gap: 0.5em;
  padding: 1em;
  font-size: 1.125rem;
}
.official-contents-nav__child-link .arrow,
.official-contents-nav__child-link .icon-plus,
.members-nav__child-link .arrow,
.members-nav__child-link .icon-plus {
  fill: currentcolor;
}
.official-contents-nav__child-item,
.members-nav__child-item {
  padding-left: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  background: #5e5e5e;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.official-contents-nav__child-item::after,
.members-nav__child-item::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.official-contents-nav__child-item:last-child,
.members-nav__child-item:last-child {
  border-bottom: none;
}
.official-contents-nav__toggle,
.members-nav__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: 0;
}
.official-contents-nav__toggle svg,
.members-nav__toggle svg {
  transform: rotate(90deg);
}
.official-contents-nav__child-panel,
.members-nav__child-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.official-contents-nav__child-panel[hidden],
.members-nav__child-panel[hidden] {
  display: none;
}
.official-contents-nav__item.is-open .official-contents-nav__toggle .text,
.members-nav__item.is-open .official-contents-nav__toggle .text {
  opacity: 0.5;
}
.official-contents-nav__item.is-open > .official-contents-nav__child-panel,
.members-nav__item.is-open > .official-contents-nav__child-panel {
  display: grid;
  height: var(--child-list-height);
}
.official-contents-nav__item.is-open .official-contents-nav__link .icon-plus__horizontal,
.members-nav__item.is-open .official-contents-nav__link .icon-plus__horizontal {
  opacity: 0;
}
.official-contents-nav__link svg, .official-contents-nav__child-link svg,
.members-nav__link svg,
.members-nav__child-link svg {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.members-nav__list {
  border-top: none;
  background: #207fc7;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.members-nav__list::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.members-nav__item {
  background: rgba(26, 26, 26, 0.5);
  border-top: none;
  border-left: none;
}
.members-nav__item:last-child {
  border-bottom: none;
}
.members-nav__link {
  padding: 1em 0.66em;
  font-size: 1.5rem;
}
.members-nav__link .arrow,
.members-nav__link .icon-plus {
  fill: currentcolor;
}

.footer-nav {
  font-size: 0.75rem;
  line-height: 1.5;
  list-style: none;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1em 2em;
}
.footer-nav__link {
  color: var(--color-white);
}

.footer-action-nav__list {
  display: flex;
  align-items: center;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.footer-action-nav__item {
  width: 100%;
}
.footer-action-nav__item:last-child .footer-action-nav__link {
  border-right: none;
}
.footer-action-nav__item--page-top svg {
  transform: rotate(-90deg);
}
.footer-action-nav__link {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  padding: 1em;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-white);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.footer-action-nav__text {
  transform: translateY(0.06em);
}
.footer-action-nav svg {
  width: auto;
  height: 0.8em;
  fill: currentcolor;
}

.section__title {
  margin: 0 0 1.1764705882em;
  font-family: var(--font-family-en);
  font-size: 2.125rem;
  font-weight: 400;
  text-align: center;
}

.note-text {
  font-size: 0.8125rem;
  color: rgba(85, 85, 85, 0.84);
}

main.main {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--footer-height));
}
@media screen and (min-width: 768px) {
  main.main {
    min-height: calc(100dvh - var(--footer-height) - var(--header-height));
  }
}

.section__inner {
  max-width: 100%;
  padding: 2.5rem 1rem 1rem;
  margin-inline: auto;
}
.section__inner > *:first-child {
  margin-top: 0;
}
.section__inner > *:last-child {
  margin-bottom: 0;
}
.section__inner--fill {
  padding: 0;
}

.article-list {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.article-list__wrap {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.article-list__wrap .section__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin-inline: 0;
}
.article-list__wrap .note-text {
  padding: 1.5em 0;
  margin: 0 1rem;
}
.article-list__wrap .note-text + .article-list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.page--info .article-list, .page--news .article-list, .page--media .article-list, .page--live .article-list, .page--disco .article-list, .page--blog .article-list, .page--special-contents .article-list {
  min-height: calc(100dvh - var(--header-height) - var(--footer-height) - var(--pager-height) - var(--section-title-height) - var(--section-category-height));
}
.article-list__item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.article-list__item:not(:first-child) {
  border-top: none;
}
.article-list__link {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1rem;
  color: var(--color-text);
}
.article-list__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Questrial", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1;
}
.article-list__date {
  font-size: 0.75rem;
  transform: translateY(0.06em);
}
.article-list__category {
  display: flex;
  gap: 0.5em;
  padding: 0.25em 0.75em 0.2em;
  font-size: 0.625rem;
  color: var(--color-white);
  border-radius: 100px;
}
.article-list__category--news {
  background: #ce0000;
}
.article-list__category--media {
  background: #dc8c01;
}
.article-list__category--live {
  color: var(--color-text);
  background: #e7d302;
}
.article-list__category--special-contents {
  background: #0064a0;
}
.article-list__category li {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.article-list__category li::after {
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background: currentcolor;
}
.article-list__category li:last-child::after {
  display: none;
}
.article-list__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: var(--font-size);
  line-height: 1.4;
  -webkit-box-orient: vertical;
}
.article-list__wrap .no-data,
.article-list .no-data {
  padding: 2em;
  color: #808080;
}
.article-list--disco, .article-list--blog {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.article-list--disco .article-list__link, .article-list--blog .article-list__link {
  flex-direction: row;
}
.article-list--disco .article-list__link .thumb, .article-list--blog .article-list__link .thumb {
  position: relative;
  flex-shrink: 0;
  width: 5em;
  height: 5em;
  overflow: hidden;
  background: #fff;
}
.article-list--disco .article-list__link .thumb img, .article-list--blog .article-list__link .thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
}
.article-list--disco .article-list__link .thumb::after, .article-list--blog .article-list__link .thumb::after {
  position: absolute;
  inset: -10%;
  z-index: 0;
  display: block;
  width: 120%;
  height: 120%;
  content: "";
  background-image: var(--thumb-img);
  background-size: cover;
  opacity: 0.3;
  filter: blur(2px);
}
.article-list--disco .article-list__link .text, .article-list--blog .article-list__link .text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.article-list--disco .article-list__category, .article-list--blog .article-list__category {
  transform: translateY(0.04em);
  padding: 0;
  color: #0190cc;
}
.article-list .text--new {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #ce0000;
  line-height: 1;
  font-size: 0.75rem;
  margin-top: -0.06em;
}
.article-list .text--new::after {
  position: absolute;
  top: -30%;
  left: -80%;
  width: 40%;
  height: 160%;
  content: "";
  background: linear-gradient(90deg, transparent, white, transparent);
  transform: skewX(-25deg);
  animation: new-shine 2.5s ease-in-out infinite;
  pointer-events: none;
}
.article-list--calendar .article-list__item .article-list__link, .article-list--gallery .article-list__item .article-list__link {
  flex-direction: row;
  align-items: center;
}
.article-list--calendar .article-list__item .article-list__link .thumb, .article-list--gallery .article-list__item .article-list__link .thumb {
  position: relative;
  flex-shrink: 0;
  width: 10em;
  height: 10em;
  overflow: hidden;
  background: #fff;
}
.article-list--calendar .article-list__item .article-list__link .thumb img, .article-list--gallery .article-list__item .article-list__link .thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
}
.article-list--calendar .article-list__item .article-list__link .thumb::after, .article-list--gallery .article-list__item .article-list__link .thumb::after {
  position: absolute;
  inset: -10%;
  z-index: 0;
  display: block;
  width: 120%;
  height: 120%;
  content: "";
  background-image: var(--thumb-img);
  background-size: cover;
  opacity: 0.3;
  filter: blur(2px);
}
.article-list--calendar .article-list__item .article-list__link .text, .article-list--gallery .article-list__item .article-list__link .text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.publication-period {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: 0.75rem;
}
.publication-period__status {
  font-weight: 600;
}
.publication-period__date {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet,
.swiper-pagination-custom .swiper-pagination-bullet,
.swiper-pagination-fraction .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination-bullet {
  width: 0.6666666667em;
  height: 0.6666666667em;
}

.swiper-pagination {
  position: static;
  bottom: auto;
  left: auto;
  display: flex;
  gap: 0.75em;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.swiper-pagination-bullet {
  margin: 0;
  background: var(--color-text);
  opacity: 0.2;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

.kv-slider__item {
  position: relative;
  text-align: center;
}
.kv-slider__item::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(--kv-img);
  background-position: center;
  background-size: cover;
  filter: blur(20px);
  transform: scale(120%);
}
.kv-slider__item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (any-hover: hover) {
  .kv-slider__item a:hover {
    opacity: 1;
  }
  .kv-slider__item a:hover img {
    transform: scale(102%);
  }
}
.kv-slider__img {
  width: auto;
  height: auto;
  max-height: calc(100dvh - var(--header-height));
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.banner-slider__img {
  width: 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.banner-slider__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (any-hover: hover) {
  .banner-slider__link:hover {
    opacity: 1;
  }
  .banner-slider__link:hover .banner-slider__img {
    transform: scale(102%);
  }
}

.section.members-menu {
  background: #207fc7;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.section.members-menu::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.section.members-menu .section__inner {
  color: var(--color-white);
}
.section.topics .section__inner {
  padding: 2.5rem 0;
}
.section.topics .section__title {
  padding: 0 1rem;
  margin: 0 0 0.5rem;
  line-height: 1;
  text-align: left;
}
.section.official-contents {
  background: var(--color-drawer-bg);
}
.section.official-contents .section__inner {
  padding-top: 1rem;
}
.section.top-title {
  position: relative;
  z-index: 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.section.top-title::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.7;
}
.section.top-title::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 100%);
}
.section.top-title::after {
  z-index: -2;
}
.section.top-title .section__inner {
  padding: 2.5rem 1rem;
}
.section.top-title .top-title__logo {
  width: 70%;
  max-width: 400px;
  margin: 0 auto 2em;
  color: #1a1a1a;
  text-align: center;
}
.section.top-title .top-title__logo img,
.section.top-title .top-title__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-title {
  color: var(--color-white);
}
.section-title .section__inner {
  max-width: 100%;
  padding: 0;
}
.section-title__main {
  padding: 0.5em;
  font-family: var(--font-family-en);
  font-size: 2.125rem;
  font-weight: 400;
  border-left: 0.1176470588em solid;
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.section-title__main::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.section-title__main--ja {
  padding: 0.575em 0.5em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.875rem;
}
.section-title__sub {
  padding: 0.5em 1.1em;
  font-family: "Questrial", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  background: #5e5e5e;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.section-title__sub::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.page--news .section-title__main {
  border-left-color: #ce0000;
}
.page--media .section-title__main {
  border-left-color: #dc8c01;
}
.page--live .section-title__main {
  border-left-color: #e7d302;
}
.page--profile .section-title__main {
  border-left-color: #0190cc;
}
.page--disco .section-title__main {
  border-left-color: #0064a0;
}
.page--faq .section-title__main, .page--blog .section-title__main, .page--calendar .section-title__main, .page--special-contents .section-title__main {
  border: none;
}

.article-list__wrap .section__inner {
  padding: 0;
}
.article-list--lower .article-list__item:first-child {
  border-top: none;
}

.block--pager {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1;
  color: var(--color-white);
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.block--pager::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.block--pager li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.125rem;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.block--pager li:last-child {
  border-right: none;
}
.block--pager li:has(a)::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(26, 26, 26, 0.3);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  .block--pager li:has(a):hover {
    opacity: 1;
  }
  .block--pager li:has(a):hover::after {
    z-index: -1;
    opacity: 1;
  }
}
.block--pager a {
  display: block;
  width: 100%;
  padding: 1em;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .block--pager a:hover {
    opacity: 1;
  }
}
.block--pager a .arrow {
  flex-shrink: 0;
  width: 0.6em;
  height: 0.6em;
  overflow: visible;
  fill: currentcolor;
}
.block--pager .pager__item--number {
  text-align: center;
}
.block--pager .pager__item--older a, .block--pager .pager__item--newer a {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
}
.block--pager .pager__item--older > .text, .block--pager .pager__item--newer > .text {
  padding: 1em;
  opacity: 0.4;
}
.block--pager .pager__item--older a {
  flex-direction: row-reverse;
}
.block--pager .pager__item--older a .arrow {
  transform: rotateZ(180deg);
}

.article-detail {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.article-detail .text--new {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #ce0000;
  line-height: 1;
  font-size: 0.625rem;
  margin-top: -0.06em;
}
.article-detail .text--new::after {
  position: absolute;
  top: -30%;
  left: -80%;
  width: 40%;
  height: 160%;
  content: "";
  background: linear-gradient(90deg, transparent, white, transparent);
  transform: skewX(-25deg);
  animation: new-shine 2.5s ease-in-out infinite;
  pointer-events: none;
}
.article-detail .text--new {
  padding: 0.2em 0.5em;
  color: #fff;
  background: #ce0000;
}
.article-detail__header {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1rem;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.article-detail__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Questrial", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1;
}
.article-detail__date {
  font-size: 0.75rem;
  transform: translateY(0.06em);
}
.article-detail__category {
  display: flex;
  gap: 0.5em;
  padding: 0.25em 0.75em 0.2em;
  font-size: 0.625rem;
  color: var(--color-white);
  border-radius: 100px;
}
.article-detail__category--news {
  background: #ce0000;
}
.article-detail__category--media {
  background: #dc8c01;
}
.article-detail__category--live {
  color: var(--color-text);
  background: #e7d302;
}
.article-detail__category--special-contents {
  background: #0064a0;
}
.article-detail__category li {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.article-detail__category li::after {
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background: currentcolor;
}
.article-detail__category li:last-child::after {
  display: none;
}
.article-detail__title {
  font-size: var(--font-size);
}
.article-detail__footer {
  margin: 2.5rem 0 0;
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.article-detail__footer::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.article-detail__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-detail__buttons li {
  width: 100%;
  max-width: 33.3333333333%;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.article-detail__buttons li:last-child {
  border-right: none;
}
.article-detail__button {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  overflow: hidden;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.125rem;
  color: #fff;
  isolation: isolate;
}
.article-detail__button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(26, 26, 26, 0.3);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  .article-detail__button:hover {
    opacity: 1;
  }
  .article-detail__button:hover::after {
    z-index: -1;
    opacity: 1;
  }
}
.article-detail__button svg {
  height: 0.8em;
  fill: currentcolor;
}
.article-detail__button .text {
  position: relative;
  transform: translateY(0.06em);
}
.article-detail__button--prev {
  flex-direction: row-reverse;
}
.article-detail__button--prev svg {
  transform: rotate(180deg);
}
@media (any-hover: hover) {
  .article-detail__button--nolink:hover::after {
    opacity: 0;
  }
}
.article-detail__button--nolink .text {
  opacity: 0.4;
}
.article-detail__share {
  display: flex;
  gap: 0.5em;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  margin: 2.5rem 0 0 auto;
  line-height: 1;
}
.article-detail__share .share {
  position: relative;
  bottom: -0.06em;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
.article-detail__share a {
  display: block;
}
.article-detail__share i {
  font-size: 1.3333333333em;
}
.article-detail__share a,
.article-detail__share a:visited {
  color: currentcolor;
}
.article-detail__share .line svg {
  height: 1.2666666667em;
  fill: currentcolor;
}
.article-detail__body {
  flex-grow: 1;
  padding: 1rem;
  line-height: 1.75;
}
.article-detail__body > *:first-child {
  margin-top: 0;
}
.article-detail__body > *:last-child {
  margin-bottom: 0;
}
.article-detail__body p,
.article-detail__body ul,
.article-detail__body ol,
.article-detail__body img {
  margin-block: 1em;
}
.article-detail__body p:has(img) {
  margin-block: 1.5em;
}
.article-detail__body p img {
  max-width: calc(100% + 2rem);
  margin: 0 -1rem;
}
.article-detail__body ul,
.article-detail__body ol {
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
  margin-block: 1.5em;
}
.article-detail__body ul li,
.article-detail__body ol li {
  line-height: 1.8;
}
.article-detail__body ul li + li,
.article-detail__body ol li + li {
  margin-top: 0.2em;
}
.article-detail__body ul li::marker,
.article-detail__body ol li::marker {
  color: currentcolor;
}
.article-detail__body ul li {
  list-style-type: disc;
}
.article-detail__body ul li::marker {
  font-size: 0.8em;
}
.article-detail__body ol li {
  list-style: decimal;
}
.article-detail__body ol li::marker {
  font-family: "Questrial", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
.article-detail__body hr {
  margin-block: 2em;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.article-detail__body a,
.article-detail__body a:visited {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}
@media (any-hover: hover) {
  .article-detail__body a:hover,
  .article-detail__body a:visited:hover {
    color: #0190cc;
    opacity: 1;
  }
}
.article-detail__body > .block--player,
.article-detail__body > .video {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  margin-block: 2em;
  line-height: 0;
}
.article-detail__body > .block--player:first-child,
.article-detail__body > .video:first-child {
  margin-top: 0;
}
.article-detail__body > .block--player:last-child,
.article-detail__body > .video:last-child {
  margin-bottom: 0;
}
.article-detail__body > .block--player iframe,
.article-detail__body > .block--player video,
.article-detail__body > .block--player video-js,
.article-detail__body > .block--player .video-js,
.article-detail__body > .block--player .block--player,
.article-detail__body > .video iframe,
.article-detail__body > .video video,
.article-detail__body > .video video-js,
.article-detail__body > .video .video-js,
.article-detail__body > .video .block--player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.article-detail--blog .article-detail__body p img {
  max-width: 100%;
  margin: auto;
}
.article-detail--blog .article-detail__body .no-data {
  font-size: 1.125rem;
  color: #808080;
}
.article-detail--faq .article-detail__header {
  gap: 0;
  padding: 0;
  margin: 0;
  color: var(--color-white);
  border: none;
}
.article-detail--faq .article-detail__label {
  padding: 0.5em;
  font-family: var(--font-family-en);
  font-size: 1.875rem;
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.article-detail--faq .article-detail__label::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.article-detail--faq .article-detail__category {
  padding: 0.5em 1.1em;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 0;
  background: #5e5e5e;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.article-detail--faq .article-detail__category::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.article-detail--faq .article-detail__question {
  display: flex;
  gap: 1em;
  padding: 1.5em 1em;
  color: #555;
  background: #e6e6e6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.article-detail--faq .article-detail__question-icon {
  flex-shrink: 0;
  opacity: 0.5;
}
.article-detail--faq .article-detail__footer {
  background: none;
}
.article-detail--discography .article-detail__category {
  background: #0064a0;
}
.article-detail--calendar .wallpaper-wrap, .article-detail--gallery .wallpaper-wrap {
  padding: 1em;
  margin: 0 0 1.5em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.article-detail--calendar .wallpaper-wrap::after, .article-detail--gallery .wallpaper-wrap::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.article-detail--calendar .wallpaper img, .article-detail--gallery .wallpaper img {
  width: 100%;
  height: auto;
  max-height: 60dvh;
  margin: 0;
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.25rem;
  -webkit-user-drag: auto;
  -webkit-touch-callout: default;
}
.article-detail--calendar .guide, .article-detail--gallery .guide {
  margin: 0 0 1em;
  font-weight: 700;
  text-align: center;
}
.article-detail--calendar .note, .article-detail--gallery .note {
  font-size: 0.875rem;
  line-height: 1.5;
}
.article-detail--calendar .note:has(+ .note), .article-detail--gallery .note:has(+ .note) {
  margin-bottom: 0.5em;
}
.article-detail--calendar .note + .note, .article-detail--gallery .note + .note {
  margin-top: 0;
}

.disco-detail .disco-detail__jacket-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  margin-top: 0;
}
.disco-detail .disco-detail__jacket-item {
  list-style: none;
}
.disco-detail .disco-detail__jacket-item .thumb {
  text-align: center;
}
.disco-detail .disco-detail__jacket-item img {
  margin: 0;
}
.disco-detail .disco-detail__jacket-item figcaption {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.56);
  text-align: center;
}
.disco-detail__jackets .disco-detail__jacket-list {
  flex-direction: initial;
  gap: inherit;
  margin-bottom: 0.5em;
}
.disco-detail__jackets__pagination {
  padding-bottom: 0;
  font-size: 0.625rem;
}
.disco-detail__detail {
  margin: 1.5em 0;
}
.disco-detail__date, .disco-detail__comment, .disco-detail__tracks {
  margin: 1em 0;
}
.disco-detail__date {
  display: block;
  font-size: 0.75rem;
}
.disco-detail__comment {
  font-size: 0.875rem;
}

.section-category .section__inner {
  padding: 1rem;
}
.section-category__list {
  display: flex;
  gap: 1em;
  align-items: center;
  overflow-y: auto;
  font-family: "Questrial", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.75rem;
}
.section-category__item {
  white-space: nowrap;
  opacity: 0.5;
}
.section-category__item.current {
  opacity: 1;
}
.section-category__link {
  color: #1a1a1a;
}

.page--faq .main {
  min-height: calc(100dvh - var(--footer-height));
}

.faq-list-section__body {
  display: grid;
}
.faq-list-section__empty {
  text-align: center;
}

.faq-category__title {
  padding: 1em;
  margin: 0 -1em;
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.faq-category__title::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-inline: -1rem;
}
.faq-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.faq-list__link {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: var(--color-text);
}
.faq-list__icon {
  flex-shrink: 0;
  opacity: 0.5;
}
.faq-list__icon .arrow {
  width: auto;
  height: 0.6em;
  fill: currentcolor;
}
.faq-related {
  display: flex;
  flex-direction: column;
}
.faq-related__title {
  padding: 1em;
  font-size: 1rem;
  background: #e6e6e6;
}
.faq-related__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.faq-related__link {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: var(--color-text);
}
.faq-related__icon {
  flex-shrink: 0;
  opacity: 0.5;
}
.faq-related__icon .arrow {
  width: auto;
  height: 0.6em;
  fill: currentcolor;
}
.faq-contact {
  padding: 2em;
  margin: 2.5rem 1em 1em;
  background: rgba(1, 144, 204, 0.08);
  border-radius: 0.25rem;
}
.faq-contact__text {
  line-height: 1.5;
  text-align: center;
}
.faq-contact__button {
  margin-top: 2em;
}

.faq-category-nav {
  margin-top: 2em;
  font-size: 0.8125rem;
}
.faq-category-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em 0.25em;
}
.faq-category-nav__item {
  flex: 0 0 auto;
}
.faq-category-nav__link {
  display: block;
  padding: 0.5em 1em;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
}

.article-feature__header {
  padding: 0.5em;
  font-size: 2.125rem;
  border-left: 0.1176470588em solid;
  border-left-color: #0190cc;
  background: radial-gradient(circle at 16% 35%, rgba(120, 120, 120, 0.18) 0%, rgba(120, 120, 120, 0) 30%), radial-gradient(circle at 52% 28%, rgba(120, 120, 120, 0.15) 0%, rgba(120, 120, 120, 0) 34%), radial-gradient(circle at 92% 8%, rgba(220, 220, 220, 0.18) 0%, rgba(220, 220, 220, 0) 38%), #a4a4a4;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.article-feature__header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.article-feature__header:has(.article-feature__title--ja) {
  padding: 0.575em 0.5em;
}
.article-feature__inner > *:first-child {
  margin-top: 0;
}
.article-feature__inner > *:last-child {
  margin-bottom: 0;
}
.article-feature__lead {
  margin: 3em 0;
}
.article-feature__title {
  font-family: var(--font-family-en);
  font-size: 2.125rem;
  color: var(--color-white);
  text-transform: uppercase;
}
.article-feature__title--ja {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.875rem;
  font-weight: 200;
}
.article-feature__title--first-login {
  font-size: 1.625rem;
}
.article-feature__body {
  max-width: 100%;
  padding: 2.5rem 1rem;
  margin-inline: auto;
  line-height: 1.75;
}
.article-feature__body a:not(.btn),
.article-feature__body a:visited:not(.btn) {
  color: #555;
  text-decoration: underline;
}
.article-feature__body .note-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding-left: 1.5em;
}
.article-feature__body .note-list li {
  list-style: disc;
}
.article-feature__footer {
  display: none;
}
.article-feature__section + .article-feature__section {
  margin-top: 3em;
}
.article-feature__section > *:first-child {
  margin-top: 0;
}
.article-feature .feature-content > *:first-child {
  margin-top: 0;
}
.article-feature .feature-content > *:last-child {
  margin-bottom: 0;
}
.article-feature .feature-content .lead,
.article-feature .feature-content > p:first-child {
  margin: 0 0 2em;
}
.article-feature .feature-content > section {
  position: relative;
  padding-top: 2em;
  margin-top: 2em;
}
.article-feature .feature-content > section::before {
  position: absolute;
  top: 0;
  left: -1rem;
  width: calc(100% + 2rem);
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}
.article-feature .feature-content > section > *:first-child {
  margin-top: 0;
}
.article-feature .feature-content > section > *:last-child {
  margin-bottom: 0;
}
.article-feature .feature-content > section > * + * {
  margin-top: 1em;
}
.article-feature .feature-content h3 {
  display: flex;
  gap: 0.25em;
  margin: 1.5em 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.article-feature .feature-content h3::before {
  display: block;
  flex-shrink: 0;
  width: 0.8em;
  height: 0.8em;
  margin-top: 0.425em;
  content: "";
  background: currentcolor;
}
.article-feature .feature-content h4 {
  margin: 1.5em 0 0.75em;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
}
.article-feature .feature-content p {
  margin: 1em 0;
}
.article-feature .feature-content p.small {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.article-feature .feature-content ul,
.article-feature .feature-content ol {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding-left: 1.4em;
  margin: 1em 0;
  font-size: 0.8125rem;
  word-break: auto-phrase;
}
.article-feature .feature-content ul + p,
.article-feature .feature-content ol + p {
  margin-top: 1.5em;
}
.article-feature .feature-content ul li {
  list-style: disc;
}
.article-feature .feature-content ol {
  padding-left: 0;
  list-style: none;
  counter-reset: terms-counter;
}
.article-feature .feature-content ol li {
  position: relative;
  padding-left: 1.4em;
  counter-increment: terms-counter;
}
.article-feature .feature-content ol li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  white-space: nowrap;
  content: counter(terms-counter) ".";
}
.article-feature .feature-content ol li ol {
  gap: 0.3em;
}
.article-feature .feature-content .note-list {
  font-size: 0.8125rem;
  line-height: 1.7;
}
.article-feature .feature-content > dl {
  margin: 0;
}
.article-feature .feature-content > dl > div {
  padding: 1.25em 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
.article-feature .feature-content > dl > div:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.article-feature .feature-content > dl dt {
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.6;
}
.article-feature .feature-content > dl dd {
  margin: 0;
  line-height: 1.8;
}
.article-feature .feature-content > dl dd > *:last-child {
  margin-bottom: 0;
}
.article-feature .feature-content > dl dd dl {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  font-size: 0.8125rem;
}
.article-feature .feature-content > dl dd dl div {
  padding: 1em;
  border: 1px solid rgba(26, 26, 26, 0.25);
  border-radius: 0.25rem;
}
.article-feature .feature-content .link-list {
  display: grid;
  gap: 0.5em;
  padding: 0;
  margin: 1em 0;
  font-size: 0.875rem;
  list-style: none;
}
.article-feature .feature-content .link-list li {
  position: relative;
  margin: 0;
  list-style: none;
}
.article-feature .feature-content .link-list a {
  position: relative;
  display: block;
  padding: 0.5em 1em 0.5em 2.25em;
  text-decoration: none;
  border: 1px solid rgba(26, 26, 26, 0.25);
  border-radius: 0.25rem;
}
.article-feature .feature-content .link-list a::before {
  position: absolute;
  top: 50%;
  left: 1em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  content: "\f02d";
  transform: translateY(-50%);
}
.article-feature .feature-content .button-wrap {
  margin: 1.5em 0;
  text-align: center;
}
.article-feature .feature-content .emphasis {
  width: min(100%, 22em);
  padding: 0.5em 1em;
  margin: 1.5em auto;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border: 2px solid currentcolor;
}
.article-feature .feature-content .emphasis code {
  font: inherit;
}
.article-feature .feature-content .alert {
  margin: 1.5em 0;
  font-weight: 700;
  color: #ce0000;
  text-align: center;
}
.article-feature .feature-content .required__section {
  padding: 1.5em;
  margin-top: 3em;
  font-size: 0.8125rem;
  border: 1px solid #ce0000;
}
.article-feature .feature-content .required__section::before {
  display: none;
}
.article-feature .feature-content .required__section h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5em;
  margin: -2em auto 1em;
  color: #ce0000;
  background: #fff;
}
.article-feature .feature-content .required__section h3::before, .article-feature .feature-content .required__section h3::after {
  width: auto;
  height: auto;
  margin: 0;
  content: "※";
  background: transparent;
}
.article-feature .feature-content .entry-actions__primary {
  padding: 1.5em;
  background: #ce0000;
  border: 2px solid #ce0000;
  border-radius: 0.25rem;
}
.article-feature .feature-content .entry-actions__primary .alert {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  word-break: auto-phrase;
}
.article-feature .feature-content .entry-actions__primary .button-wrap {
  margin-bottom: 0;
}
.article-feature .feature-content .entry-actions__registration > div {
  padding: 1.5em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.article-feature .feature-content .entry-actions__registration > div + div {
  border-top: none;
}
.article-feature .feature-content .entry-actions__registration p {
  margin: 0;
  font-weight: 700;
}
.article-feature .feature-content .entry-actions__registration .button-wrap {
  margin: 1.5em 0 0;
}
.article-feature .feature-content .list--history {
  gap: 0.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0;
  margin-inline: auto 0;
  text-align: right;
}
.article-feature .feature-content .list--history li {
  font-size: 0.6875rem;
  list-style: none;
}
.article-feature .feature-content dl.num {
  padding: 1em;
  margin: 1em 0;
  counter-reset: terms-counter;
  border: 1px solid rgba(26, 26, 26, 0.25);
  border-radius: 0.25rem;
}
.article-feature .feature-content dl.num dt {
  margin-bottom: 0;
}
.article-feature .feature-content dl.num dd {
  position: relative;
  padding-left: 1.5em;
  counter-increment: terms-counter;
}
.article-feature .feature-content dl.num dd::before {
  position: absolute;
  left: 0;
  white-space: nowrap;
  content: counter(terms-counter) ".";
}
.article-feature .feature-content .payment-table {
  width: 100%;
  margin: 1.5em 0 2em;
  font-size: 0.75rem;
  border-collapse: collapse;
}
.article-feature .feature-content .payment-table th,
.article-feature .feature-content .payment-table td {
  padding: 1.25em;
  vertical-align: top;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.article-feature .feature-content .payment-table th {
  width: 12em;
  font-weight: bold;
  background: rgba(26, 26, 26, 0.03);
}
.article-feature .feature-content .mail-setting {
  padding-top: 0;
  border: none;
}
.article-feature .feature-content .mail-setting > dt {
  width: calc(100% + 2rem);
  padding: 0.5em 1rem;
  margin-inline: -1rem;
  color: #fff;
  background: #555;
}
.article-feature .feature-content .profile-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 0;
}
.article-feature .feature-content .profile-list__item {
  list-style: none;
}
.article-feature .feature-content .profile-card {
  font-family: var(--font-family-en);
}
.article-feature .feature-content .profile-card__body {
  display: flex;
  flex-direction: column;
  padding: 1em;
  color: var(--color-white);
  background: #5e5e5e;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: top center;
}
.article-feature .feature-content .profile-card__body::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: url("/static/larcenciel/fanclub/common/texture--noise.png");
  background-position: center center;
  background-size: 20vw;
  pointer-events: none;
  opacity: 0.1;
}
.article-feature .feature-content .profile-card__figure img {
  width: 100%;
  height: auto;
}
.article-feature .feature-content .profile-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.article-feature .feature-content .profile-card__name {
  margin: 0 0 0.5em;
  font-size: 1.5rem;
  font-weight: 400;
}
.article-feature .feature-content .profile-card__name::before {
  display: none;
}
.article-feature .feature-content .profile-card__data {
  width: 100%;
  margin: 1.5em auto;
  font-size: 0.8125rem;
}
.article-feature .feature-content .profile-card__data-row {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.article-feature .feature-content .profile-card__data-row dt,
.article-feature .feature-content .profile-card__data-row dd {
  padding: 0.5em;
}
.article-feature .feature-content .profile-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0;
}
.article-feature .feature-content .profile-card__links li {
  list-style: none;
}
.article-feature .feature-content .profile-card__links a:not(.btn),
.article-feature .feature-content .profile-card__links a:not(.btn):visited {
  color: #fff;
}
.article-feature .feature-content .profile-card__sns {
  display: flex;
  flex-direction: row;
  gap: 0.75em;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin: 2em 0 0 auto;
  font-size: 1.25rem;
  line-height: 1;
}
.article-feature .feature-content .profile-card__sns li {
  list-style: none;
}
.article-feature .feature-content .profile-card__sns li a:not(.btn),
.article-feature .feature-content .profile-card__sns li a:not(.btn):visited {
  color: #fff;
  text-decoration: none;
}
.article-feature .feature-content .feature-guide {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.article-feature .feature-content .feature-guide section {
  padding: 1.5em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
}
.article-feature .feature-content .feature-guide h3 {
  margin-block: 0 1em;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.5rem;
  color: #0064a0;
  letter-spacing: 0.02em;
}
.article-feature .feature-content .feature-guide h3::before {
  display: none;
}
.article-feature .feature-content .feature-guide .small {
  margin-bottom: 0;
  color: rgba(85, 85, 85, 0.84);
}
.article-feature .feature-content .first-login a:not(.btn),
.article-feature .feature-content .first-login a:not(.btn):visited {
  font-weight: 600;
  color: #0190cc;
}
.article-feature .feature-content .first-login strong {
  color: #ce0000;
}
.article-feature .feature-content .first-login .link-list {
  margin: 2em 0;
}
.article-feature .feature-content .first-login .link-list li a {
  padding-left: 3em;
  line-height: 1.3;
  background: #fff;
}
.article-feature .feature-content .first-login__eyebrow {
  width: calc(100% + 2rem);
  padding: 1em;
  margin: -2.5rem -1rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  word-break: auto-phrase;
  background: #ce0000;
}
.article-feature .feature-content .first-login__eyebrow strong {
  font-weight: inherit;
  color: #e7d302;
}
.article-feature .feature-content .first-login h3 {
  padding: 1em;
  margin-inline: -1rem;
  color: #fff;
  background: #0190cc;
}
.article-feature .feature-content .first-login h3::before {
  display: none;
}
.article-feature .feature-content .first-login__notice {
  padding: 1.5rem;
  border: 1px solid #0064a0;
  border-radius: 0.25rem;
}
.article-feature .feature-content .first-login__notice + .first-login__notice {
  margin-top: 2em;
}
.article-feature .feature-content .first-login__notice > p:last-child {
  margin-bottom: 0;
}
.article-feature .feature-content .first-login__notice h3 {
  justify-content: center;
  width: calc(100% + 3rem);
  padding: 1em;
  margin: -1.5rem -1.5rem 1.5em;
  color: #fff;
  text-align: center;
  background: #0064a0;
}
.article-feature .feature-content .first-login__attention {
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
}
.article-feature .feature-content .first-login__attention--important h4 {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  color: #ce0000;
}
.article-feature .feature-content .first-login__attention--important h4::before, .article-feature .feature-content .first-login__attention--important h4::after {
  width: 1em;
  height: 2px;
  content: "";
  background: currentcolor;
}
.article-feature .feature-content .first-login__attention h4 {
  margin: 1.5em 0;
  font-size: 1.125rem;
  text-align: center;
  word-break: auto-phrase;
}
.article-feature .feature-content .first-login__attention .note-list {
  padding: 0;
}
.article-feature .feature-content .first-login__attention .note-list li {
  list-style: none;
}
.article-feature .feature-content .first-login__attention strong {
  color: #ce0000;
}
.article-feature .feature-content .first-login__attention *:first-child {
  margin-top: 0;
}
.article-feature .feature-content .first-login__attention *:last-child {
  margin-bottom: 0;
}
.article-feature .feature-content .first-login__nav ol li {
  padding: 0;
}
.article-feature .feature-content .first-login__nav ol li::before {
  display: none;
}
.article-feature .feature-content .first-login__nav ol li::after {
  display: block;
  width: 0;
  height: 0;
  margin: 1em auto 0;
  content: "";
  border-top: 0.8em solid #0190cc;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
}
.article-feature .feature-content .first-login__nav ol li:last-child::after {
  display: none;
}
.article-feature .feature-content .first-login__nav ol li a {
  display: block;
  display: flex;
  gap: 1em;
  align-items: center;
  padding: 1em;
  text-decoration: none;
  border: 1px solid #0190cc;
  border-radius: 0.25rem;
}
.article-feature .feature-content .first-login__nav-number {
  flex: 0 0 auto;
}
.article-feature .feature-content .first-login__nav-number + span {
  font-weight: 400;
  color: #555;
}
.article-feature .feature-content .first-login__step {
  padding: 1rem;
  margin: 3em auto;
  overflow: hidden;
  background: rgba(1, 144, 204, 0.12);
  border-radius: 0.25rem;
}
.article-feature .feature-content .first-login__step > *:last-child {
  margin-bottom: 0;
}
.article-feature .feature-content .first-login__step-number {
  padding: 0.75em;
  margin: -1rem -1rem 2rem;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.875rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
  background: #0190cc;
}
.article-feature .feature-content .first-login__step h3 {
  width: 100%;
  padding: 0;
  margin: 0;
  color: #0064a0;
  background: transparent;
}
.article-feature .feature-content .first-login__step .first-login__attention {
  background: #fff;
}
.article-feature .feature-content .first-login__step .first-login__attention--important {
  border-color: #ce0000;
  border-width: 2px;
}
.article-feature .feature-content .first-login__figure {
  padding: 2px;
  margin: 1em auto;
  background: #fff;
  border: 1px solid #0190cc;
  border-radius: 0.25rem;
}
.article-feature .feature-content .first-login__figure img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.article-feature .feature-content .first-login__id-list {
  gap: 1em;
  margin: 2em 0;
}
.article-feature .feature-content .first-login__id-list li {
  font-weight: 700;
}
.article-feature .feature-content .first-login__id-list li p {
  margin: 0.5em 0;
}
.article-feature .feature-content .first-login__id-list li .small {
  font-size: 0.6875rem;
  font-weight: 400;
}

.error-page__code {
  margin: 0;
  margin: 0 auto 1em;
  font-family: "Jost", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.875rem;
}
.error-page__code, .error-page__title {
  text-align: center;
}
.error-page__title {
  margin: 1em 0 2em;
  font-size: 1.25rem;
}
.error-page__nav {
  margin-top: 3em;
}
