@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Correct the inheritance of border color in Firefox.
  * 2. Add the correct box sizing in Firefox.
  * 3. Show the overflow in Edge 18- and IE.
  */
hr {
  color: inherit; /* 1 */
  height: 0; /* 2 */
  overflow: visible; /* 3 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
  */
nav li::before {
  content: "​";
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  * 3. Prevent overflow of the container in all browsers (opinionated).
  */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
  -ms-overflow-style: scrollbar; /* 3 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * 1. Collapse border spacing in all browsers (opinionated).
  * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
  * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
  */
table {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
  resize: block; /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: #fff;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * Remove the tapping delay in IE 10.
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* sanitize overwrite */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:focus {
  outline: none;
}

main {
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: initial;
  margin: 0;
  outline: none;
  padding: 0;
}

nav li:before {
  content: "";
  display: none;
}

:root {
  --screenHeight: 0px;
  --pageHeight: 0px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000000;
  font-family: "YakuHanJP_Noto", "Noto Sans JP", "Hiragino Kaku Gothic Pro W3", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-text-size-adjust: 100%;
}
body.-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
}

iframe[name=google_conversion_frame] {
  height: 0;
  position: absolute;
}

:root {
  --headerHeight: 0px;
  --screenHeight: 0px;
}

.l-main {
  position: relative;
  min-height: calc(var(--screenHeight) - 204px);
  overflow: hidden;
}
@media (max-width: 834px) {
  .l-main {
    margin-top: 10px;
    padding-bottom: 15.3vw;
  }
  .top .l-main {
    margin-top: 60px;
  }
}
@media (min-width: 835px) {
  .l-main {
    margin-top: 69px;
    min-height: calc(100vh - 196px);
  }
}
@media (min-width: 835px) and (max-width: 1520px) {
  .l-main {
    min-height: calc(100vh - 250px);
  }
}
@media (min-width: 835px) {
  .member .l-main {
    min-width: 1248px;
  }
}
@media (min-width: 835px) {
  .member.-detail.-info .l-main {
    min-width: auto;
    overflow: unset;
  }
}
@media (min-width: 835px) {
  .music.-detail .l-main {
    padding-bottom: 200px;
  }
}

.l-footer {
  position: relative;
  background: #333333;
  padding: 24px 0;
  z-index: 1;
}
@media (min-width: 835px) {
  .l-footer {
    padding: 48px 0 64px;
  }
}
@media (min-width: 835px) {
  .member .l-footer {
    min-width: 1248px;
  }
}

.l-footer__sns {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.l-footer__sns__ttl {
  font-size: 0.625rem;
  color: #b3b3b3;
  font-weight: 900;
  letter-spacing: 0.12em;
}
@media (min-width: 835px) {
  .l-footer__sns__ttl {
    font-size: 0.6875rem;
  }
}

@media (max-width: 834px) {
  .l-footer__sns__item {
    width: 24px;
  }
}
@media (min-width: 835px) {
  .l-footer__sns__item {
    width: 28px;
  }
}
.l-footer__sns__item:first-of-type {
  margin-left: 16px;
}
@media (min-width: 835px) {
  .l-footer__sns__item:first-of-type {
    margin-left: 16px;
  }
}
.l-footer__sns__item + .l-footer__sns__item {
  margin-left: 16px;
}
@media (min-width: 835px) {
  .l-footer__sns__item + .l-footer__sns__item {
    margin-left: 24px;
  }
}
.l-footer__sns__item.-x {
  padding: 0 2px;
}
@media (min-width: 835px) {
  .l-footer__sns__item.-x {
    padding: 0 3px;
  }
}
.l-footer__sns__item.-instagram {
  padding: 0 1px;
}
@media (min-width: 835px) {
  .l-footer__sns__item.-instagram {
    padding: 0 2px;
  }
}
.l-footer__sns__item.-tiktok {
  padding: 0 2px;
}
@media (min-width: 835px) {
  .l-footer__sns__item.-tiktok {
    padding: 0 3px;
  }
}

@media (max-width: 834px) {
  .l-footer__inner {
    margin-top: 20px;
  }
}
@media (min-width: 835px) {
  .l-footer__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
  }
}

@media (max-width: 834px) {
  .l-footer__sme {
    margin: 0 auto;
    width: 285px;
  }
}
@media (min-width: 835px) {
  .l-footer__sme {
    margin-right: 16px;
    width: 310px;
  }
}

.l-footer__links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 834px) {
  .l-footer__links {
    margin: 13px auto 0;
  }
}
.l-footer__links li {
  border-left: 2px solid #b3b3b3;
  padding: 0 8px;
  white-space: nowrap;
}
.l-footer__links li:last-child {
  border-right: 2px solid #b3b3b3;
}
@media (max-width: 834px) {
  .l-footer__links li {
    font-size: 0.75rem;
    font-weight: 900;
  }
}
@media (min-width: 835px) {
  .l-footer__links li {
    font-size: 0.75rem;
    font-weight: 700;
  }
}
.l-footer__links a {
  color: #b3b3b3;
  text-decoration: none;
}
@media (min-width: 835px) {
  .l-footer__links a:hover {
    text-decoration: underline;
  }
}

.l-footer__offer {
  font-size: 0.625rem;
  color: #b3b3b3;
  list-style: 1.9;
  text-align: center;
}
@media (max-width: 834px) {
  .l-footer__offer {
    margin-top: 10px;
  }
}
@media (max-width: 1520px) {
  .l-footer__offer {
    margin-top: 10px;
    width: 100%;
  }
}
@media (min-width: 1521px) {
  .l-footer__offer {
    margin-left: 20px;
  }
}
@media (min-width: 1521px) {
  .l-footer__offer br {
    display: none;
  }
}

:root {
  --screenHeight: 0;
}

@media (max-width: 834px) {
  .l-gnav {
    margin: 0;
    min-height: var(--screenHeight);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 70px 8.2vw 70px;
  }
}
@media (min-width: 835px) {
  .l-gnav {
    margin: 26px 40px 0 0;
    display: flex;
    gap: 21px;
    justify-content: flex-end;
    width: 100%;
  }
}

.l-gnav__item {
  line-height: 1;
}
@media (max-width: 834px) {
  .l-gnav__item {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(10px);
  }
}
@media (min-width: 835px) {
  .l-gnav__item {
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
}
.l-gnav__inner__anime .l-gnav__item {
  width: 50%;
}
@media (min-width: 835px) {
  .l-gnav__item:hover a {
    background: linear-gradient(90deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.l-gnav__item:hover a::after {
  transform: translateX(-50%) scaleX(1);
}
.-gnav_open .l-gnav__item {
  -webkit-animation: itemXIn 0.5s 0s forwards;
          animation: itemXIn 0.5s 0s forwards;
}
@media (max-width: 834px) {
  .-gnav_open .l-gnav__item + .l-gnav__item {
    margin-top: 15px;
  }
  .l-gnav__inner__anime .l-gnav__item + .l-gnav__item {
    margin-top: 0;
  }
}
.l-gnav__item.-active a {
  background: linear-gradient(90deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.l-gnav__item.-active a::after {
  transform: translateX(-50%) scaleX(1);
}
.l-gnav__item a {
  pointer-events: auto;
  position: relative;
}
@media (max-width: 834px) {
  .l-gnav__item a {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
  }
  .l-gnav__inner__anime .-season1 .l-gnav__item a {
    font-size: 1.25rem;
    font-weight: 800;
  }
  .l-gnav__inner__anime .-season2 .l-gnav__item a {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .l-gnav__inner__anime .l-gnav__item a {
    color: #000;
  }
}
@media (min-width: 835px) {
  .l-gnav__item a {
    font-size: 1.0625rem;
    color: #fff;
    font-weight: 700;
  }
}
.l-gnav__item a::after {
  position: absolute;
  left: 50%;
  background: linear-gradient(90deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
  content: "";
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
  width: 100%;
}
@media (max-width: 834px) {
  .l-gnav__item a::after {
    display: none;
  }
}
@media (min-width: 835px) {
  .l-gnav__item a::after {
    top: 21px;
  }
}
.l-gnav__item:nth-child(1) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.l-gnav__item:nth-child(1) a {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.l-gnav__item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.l-gnav__item:nth-child(2) a {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.l-gnav__item:nth-child(3) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.l-gnav__item:nth-child(3) a {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.l-gnav__item:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-gnav__item:nth-child(4) a {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-gnav__item:nth-child(5) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.l-gnav__item:nth-child(5) a {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.l-gnav__item:nth-child(6) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.l-gnav__item:nth-child(6) a {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.l-gnav__item:nth-child(7) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.l-gnav__item:nth-child(7) a {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.l-gnav__item:nth-child(8) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-gnav__item:nth-child(8) a {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-gnav__item:nth-child(9) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.l-gnav__item:nth-child(9) a {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.l-gnav__item:nth-child(10) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.l-gnav__item:nth-child(10) a {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.l-gnav__item:nth-child(11) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.l-gnav__item:nth-child(11) a {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.l-gnav__item:nth-child(12) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.l-gnav__item:nth-child(12) a {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.l-gnav__item:nth-child(13) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.l-gnav__item:nth-child(13) a {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.l-gnav__item:nth-child(14) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.l-gnav__item:nth-child(14) a {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.l-gnav__item:nth-child(15) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
.l-gnav__item:nth-child(15) a {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
.l-gnav__item.-anime {
  position: relative;
}
.l-gnav__item.-anime::after {
  position: absolute;
  left: 50%;
  bottom: 15px;
  background: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: "";
  transform: translateX(-50%);
  height: 7px;
  width: 8px;
}
.l-gnav__item.-anime.-active::after {
  background: linear-gradient(90deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
  bottom: 13px;
}
.l-gnav__item.-anime::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  height: 43px;
  width: 100%;
}
.l-gnav__item.-anime a::after {
  top: 18px;
}
.l-gnav__item.-anime .l-gnav__item__anime {
  display: block;
}
.l-gnav__item.-anime:hover .l-gnav__item__anime {
  height: 50px;
}
.l-gnav__item.-anime:hover::after {
  background: linear-gradient(90deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
  bottom: 11px;
}
.l-gnav__item.-anime:hover .anime-nav {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

@-webkit-keyframes itemXIn {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes itemXIn {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes introtextAnime {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@keyframes introtextAnime {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.l-gnav__inner__cont {
  display: flex;
}
.l-gnav__inner__anime .l-gnav__inner__cont {
  display: block;
}

.l-gnav__list {
  width: 50%;
}
.l-gnav__list.-left {
  width: 48.2%;
}
.l-gnav__inner__anime .l-gnav__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-gnav__anime.-season1 .l-gnav__list {
  margin-top: 15px;
  gap: 8px 0;
}
.l-gnav__anime.-season2 .l-gnav__list {
  margin-top: 15px;
  gap: 8px 0;
}

.l-gnav__inner__anime {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  background: linear-gradient(135deg, rgb(166, 221, 247) 0%, rgb(177, 161, 226) 20%, rgb(250, 175, 204) 40%, rgb(255, 187, 150) 60%, rgb(255, 248, 170) 80%, rgb(171, 234, 174) 100%);
  color: #000;
  margin: 6.9vw -8.3vw 0;
  padding: 3.4vw 8.2vw 9.4vw;
  position: relative;
  transition: -webkit-clip-path 0.5s 0.4s;
  transition: clip-path 0.5s 0.4s;
  transition: clip-path 0.5s 0.4s, -webkit-clip-path 0.5s 0.4s;
}
.-gnav_open .l-gnav__inner__anime {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.l-gnav__inner__anime__ttl {
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 700;
  padding-bottom: 8px;
}

.l-gnav__anime.-season1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 20px;
}
.l-gnav__anime.-season2 {
  padding: 20px 0 0;
}

.l-gnav__anime__head {
  align-items: center;
  display: flex;
}

.l-gnav__anime__ttl {
  font-size: 1.125rem;
  background: #333333;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 2px 5px 2px;
}
.-season1 .l-gnav__anime__ttl {
  margin-left: 9px;
}
.-season1 .l-gnav__anime__ttl span {
  background: linear-gradient(90deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.-season2 .l-gnav__anime__ttl {
  color: #fff;
  margin-left: 6px;
}

.-season1 .l-gnav__anime__logo {
  width: 45px;
}
.-season2 .l-gnav__anime__logo {
  width: 16px;
}

.anime-nav {
  position: absolute;
  top: 42px;
  left: 50%;
  background: #333333;
  border-top: 1px solid rgba(198, 198, 198, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: block;
  transform: translate(-50%, 3px);
  transition: all 0.3s 0s;
  min-width: 508px;
  opacity: 0;
  padding: 18px 24px 22px;
  pointer-events: all;
  visibility: hidden;
}
.anime-nav:hover {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.anime-nav__inner {
  display: flex;
}

.anime-nav__block {
  flex-shrink: 0;
}
.anime-nav__block.-season2 {
  border-right: 1px solid rgba(198, 198, 198, 0.2);
  display: flex;
  width: 69.5%;
}
.anime-nav__block.-season1 {
  padding-left: 28px;
  width: 30.4%;
}

.anime-nav__block__head {
  align-items: flex-start;
  display: flex;
}

.-season2 .anime-nav__list {
  margin-right: 20px;
  display: flex;
  flex-wrap: wrap;
}
.-season1 .anime-nav__list {
  margin-top: 8px;
}

.anime-nav__logo {
  display: block;
}
.-season2 .anime-nav__logo {
  margin-right: 20px;
  width: 112px;
}
.-season1 .anime-nav__logo {
  margin-top: -4px;
  width: 24px;
}
.anime-nav__logo::after {
  display: none;
}

.anime-nav__ttl {
  font-size: 0.8125rem;
}
.-season2 .anime-nav__ttl {
  background: linear-gradient(135deg, rgb(163, 218, 244) 0%, rgb(174, 158, 223) 20%, rgb(247, 172, 201) 40%, rgb(255, 184, 147) 60%, rgb(255, 245, 167) 80%, rgb(168, 231, 171) 100%);
  color: #333333;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 5px 2px;
}
.-season1 .anime-nav__ttl {
  background: #fff;
  color: #333333;
  font-weight: 700;
  display: inline-block;
  margin-left: 6px;
  padding: 2px 5px 2px;
}

.anime-nav__item {
  transition: opacity 0.2s;
}
.-season2 .anime-nav__item {
  width: 50%;
}
.-season2 .anime-nav__item:not(:nth-of-type(1)), .-season2 .anime-nav__item:not(:nth-of-type(2)) {
  margin-top: 4px;
}
.-season1 .anime-nav__item:not(:first-of-type) {
  margin-top: 4px;
}
.anime-nav__item a {
  display: block;
  background: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.-season2 .anime-nav__item a {
  font-size: 1.125rem;
  font-weight: 800;
  padding: 6.5px 0;
}
.-season1 .anime-nav__item a {
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 8px 0;
}
.anime-nav__item a::after {
  display: none;
}
.anime-nav__item:hover {
  background: linear-gradient(90deg, rgba(163, 218, 244, 0.4) 0%, rgba(174, 158, 223, 0.4) 20%, rgba(247, 172, 201, 0.4) 40%, rgba(255, 184, 147, 0.4) 60%, rgba(255, 245, 167, 0.4) 80%, rgba(168, 231, 171, 0.4) 100%);
}

.l-header__share {
  pointer-events: auto;
  text-align: center;
  z-index: 10;
}
@media (min-width: 835px) {
  .l-header__share {
    position: fixed;
    top: 50%;
    left: 32px;
    bottom: auto;
    right: auto;
    transform: translateY(-50%);
    width: 28px;
  }
}
@media (max-width: 834px) {
  .l-header__share {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    transform: none;
    width: auto;
  }
  .l-gnav .l-header__share {
    display: block;
    margin-top: 120px;
    opacity: 0;
    transform: translateY(10px);
  }
  .-gnav_open .l-header__share {
    -webkit-animation: itemYIn 0.5s 0.6s forwards;
            animation: itemYIn 0.5s 0.6s forwards;
  }
}
.l-header__share.-top {
  transition: all 0.5s;
}
.top .l-header__share.-top {
  opacity: 0;
  transform: translate(-20%, 0);
  visibility: hidden;
}
@media (min-width: 835px) {
  .l-header__share.-top.-show {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
  }
}
.top .l-header__share.-gnav {
  opacity: 0;
  visibility: hidden;
}
.-gnav_open .l-header__share.-gnav {
  visibility: visible;
}
@media (min-width: 835px) {
  .l-header__share.-gnav {
    display: none;
  }
}
@media (min-width: 835px) {
  .l-header__share.-header {
    display: none;
  }
}
.l-header__share .ttl {
  color: #333333;
}
@media (max-width: 834px) {
  .l-header__share .ttl {
    font-size: 0.9375rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: -3px;
    writing-mode: initial;
  }
}
@media (min-width: 835px) {
  .l-header__share .ttl {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 auto;
    writing-mode: vertical-rl;
  }
}
@media (max-width: 834px) {
  .l-header__share .list {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 15px;
  }
}
.l-header__share .item {
  position: relative;
}
@media (min-width: 835px) {
  .l-header__share .item {
    height: 28px;
    margin: 24px auto 0;
    width: 28px;
  }
}
@media (max-width: 834px) {
  .l-header__share .item {
    height: 30px;
    margin: 0;
    width: 30px;
  }
}
.l-header__share .item a {
  display: block;
  height: 100%;
}
.l-header__share .item.-x {
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_x.svg);
          mask-image: url(../../../assets/img/common/ico/ico_x.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (min-width: 835px) {
  .l-header__share .item.-x {
    background: #333333;
    height: 22px;
    width: 21px;
  }
}
@media (max-width: 834px) {
  .l-header__share .item.-x {
    background: #fff;
    background-size: 100%;
  }
}
.l-header__share .item.-line {
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_line.svg);
          mask-image: url(../../../assets/img/common/ico/ico_line.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (min-width: 835px) {
  .l-header__share .item.-line {
    background: #333333;
  }
}
@media (max-width: 834px) {
  .l-header__share .item.-line {
    background: #fff;
    background-size: 100%;
  }
}

@-webkit-keyframes itemYIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes itemYIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header__trigger {
  display: none;
  z-index: 3;
}
@media (max-width: 834px) {
  .l-header__trigger {
    position: fixed;
    top: 17px;
    right: 17px;
    display: block;
    height: 27px;
    transition: all 0.4s 0s;
    width: 27px;
  }
}
@media (max-width: 834px) {
  .-headerhide .l-header__trigger {
    opacity: 0;
    transform: translateY(-69px);
  }
}

.l-head__trigger__dot {
  transition: all 0.3s ease;
}
@media (max-width: 834px) {
  .l-head__trigger__dot {
    height: 4.5px;
    width: 4.5px;
  }
}
@media (min-width: 835px) {
  .l-head__trigger__dot {
    height: 4px;
    width: 4px;
  }
}
.l-head__trigger__dot::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: dotAnm 4s cubic-bezier(0.6, 0.04, 0.98, 0.335) infinite;
          animation: dotAnm 4s cubic-bezier(0.6, 0.04, 0.98, 0.335) infinite;
  background: #fff;
  border-radius: 9999px;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.l-head__trigger__dot:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
}
.l-head__trigger__dot:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.l-head__trigger__dot:nth-of-type(2)::before {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.l-head__trigger__dot:nth-of-type(3) {
  position: absolute;
  top: 0;
  right: 0;
}
.l-head__trigger__dot:nth-of-type(3)::before {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.l-head__trigger__dot:nth-of-type(4) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.l-head__trigger__dot:nth-of-type(4)::before {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.l-head__trigger__dot:nth-of-type(5) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-head__trigger__dot:nth-of-type(5)::before {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.l-head__trigger__dot:nth-of-type(6) {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.l-head__trigger__dot:nth-of-type(6)::before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-head__trigger__dot:nth-of-type(7) {
  position: absolute;
  left: 0;
  bottom: 0;
}
.l-head__trigger__dot:nth-of-type(7)::before {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.l-head__trigger__dot:nth-of-type(8) {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.l-head__trigger__dot:nth-of-type(8)::before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-head__trigger__dot:nth-of-type(9) {
  position: absolute;
  bottom: 0;
  right: 0;
}
.l-head__trigger__dot:nth-of-type(9)::before {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes dotAnm {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes dotAnm {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 6;
}
@media (max-width: 834px) {
  .l-header {
    background: #484848;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    height: 100%;
    overflow: scroll;
    transition: -webkit-clip-path 0.6s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: clip-path 0.6s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: clip-path 0.6s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-clip-path 0.6s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    visibility: hidden;
    width: 100%;
  }
}
@media (min-width: 835px) {
  .l-header {
    position: fixed;
    top: 0;
    right: 0;
    background: #333333;
    height: 69px;
    transition: all 0.4s 0s;
    width: 100%;
  }
}
@media (max-width: 834px) {
  .-gnav_open .l-header {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    pointer-events: auto;
    visibility: visible;
  }
}
.top .l-header {
  opacity: 0;
}
.top.-introend .l-header {
  -webkit-animation: tapeInLeft 0.5s 0.3s forwards;
          animation: tapeInLeft 0.5s 0.3s forwards;
}
@media (min-width: 835px) {
  .-headerhide .l-header {
    opacity: 0;
    transform: translateY(-69px);
  }
}

.l-header__gradbg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 834px) {
  .l-header__gradbg {
    height: 60px;
  }
}
@media (min-width: 835px) {
  .l-header__gradbg {
    height: 69px;
  }
}
.l-header__gradbg::after {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  content: "";
  height: 100%;
  transform-origin: top left;
  width: 100%;
  will-change: transform, filter;
  z-index: 0;
}
@media (max-width: 834px) {
  .l-header__gradbg::after {
    background: linear-gradient(-30deg, rgba(161, 216, 242, 0) 55.96%, rgb(172, 156, 221) 82.71%, rgb(245, 170, 199) 100%);
  }
}
@media (min-width: 835px) {
  .l-header__gradbg::after {
    background: linear-gradient(-30deg, rgba(161, 216, 242, 0) 64.4%, rgb(172, 156, 221) 82.71%, rgb(245, 170, 199) 100%);
  }
}
:not(.top.-ready) .l-header__gradbg::after {
  -webkit-animation: headerGrad 10s 3s infinite;
          animation: headerGrad 10s 3s infinite;
}
.top.-introend .l-header__gradbg::after {
  -webkit-animation: headerGrad 10s 4s infinite;
          animation: headerGrad 10s 4s infinite;
}
.-gnav_open .l-header__gradbg::after {
  display: none;
}
.top .l-header__gradbg {
  opacity: 0;
}
.top.-introend .l-header__gradbg {
  -webkit-animation: tapeInLeft 0.5s 1s forwards;
          animation: tapeInLeft 0.5s 1s forwards;
}

@-webkit-keyframes headerGrad {
  0% {
    filter: hue-rotate(0);
    transform: scaleX(1);
  }
  50% {
    filter: hue-rotate(120deg);
    transform: scaleX(1.3);
  }
  100% {
    filter: hue-rotate(0);
    transform: scaleX(1);
  }
}

@keyframes headerGrad {
  0% {
    filter: hue-rotate(0);
    transform: scaleX(1);
  }
  50% {
    filter: hue-rotate(120deg);
    transform: scaleX(1.3);
  }
  100% {
    filter: hue-rotate(0);
    transform: scaleX(1);
  }
}
.l-header__bg {
  position: fixed;
  top: 0;
  left: 0;
  background: #333333;
  height: 60px;
  transition: all 0.4s 0s;
  width: 100%;
  z-index: 3;
}
@media (max-width: 834px) {
  .l-header__bg {
    height: 60px;
  }
}
@media (min-width: 835px) {
  .l-header__bg {
    height: 69px;
  }
}
@media (min-width: 1521px) {
  .l-header__bg {
    display: none;
  }
}
.top .l-header__bg {
  opacity: 0;
}
.top.-introend .l-header__bg {
  -webkit-animation: tapeInLeft 0.5s 0.3s forwards;
          animation: tapeInLeft 0.5s 0.3s forwards;
}
.-headerhide .l-header__bg {
  opacity: 0;
  transform: translateY(-69px);
}

.l-header__inner {
  position: relative;
  z-index: 1;
}
@media (min-width: 835px) {
  .l-header__inner {
    display: flex;
    height: 100%;
    justify-content: space-between;
    /* padding: min(getVH(40, 830), 40px); */
  }
}
@media (max-width: 834px) {
  .l-header__inner {
    padding: 0;
  }
}

.l-header__logos {
  display: flex;
}
@media (max-width: 834px) {
  .l-header__logos {
    margin: 10px 0 0 14px;
  }
}
@media (min-width: 835px) {
  .l-header__logos {
    margin: 9px 0 0 17px;
  }
}
@media (max-width: 834px) {
  .l-header .l-header__logos {
    display: none;
  }
}

.l-header__logo {
  background: url(../../../assets/img/common/logo/uniteup_w.svg) no-repeat 0 0/cover;
  pointer-events: auto;
  position: relative;
}
@media (max-width: 834px) {
  .l-header__logo {
    height: 43px;
    width: 35px;
  }
}
@media (min-width: 835px) {
  .l-header__logo {
    height: 52px;
    transition: opacity 0.3s;
    width: 43px;
  }
}
.l-header__logo a {
  display: block;
  height: 100%;
  width: 100%;
}
@media (min-width: 835px) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
.top .l-header__logo {
  background: url(../../../assets/img/common/logo/uniteup_w.svg) no-repeat 0 0/cover;
}

.l-header__logos__txt {
  color: #000;
  font-weight: 600;
  line-height: 1;
  text-wrap: nowrap;
}
.top .l-header__logos__txt {
  background: linear-gradient(45deg, rgb(255, 181, 144) 0%, rgb(244, 169, 198) 30%, rgb(171, 155, 220) 70%, rgb(160, 215, 241) 100%);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 834px) {
  .l-header__logos__txt {
    font-size: 1.25rem;
    margin-left: 8px;
  }
}
@media (min-width: 835px) {
  .l-header__logos__txt {
    font-size: 1.875rem;
    margin-left: 15px;
  }
}

.l-header__close {
  position: fixed;
  top: 4.4vw;
  right: 3.8vw;
  height: 5.8vw;
  max-height: 46px;
  max-width: 80px;
  opacity: 0;
  visibility: hidden;
  width: 10.2vw;
  z-index: 1;
}
.l-header__close::before, .l-header__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  content: "";
  height: 1px;
  width: 100%;
}
@media (min-width: 835px) {
  .-gnav_open .l-header__close {
    visibility: hidden;
  }
}
@media (max-width: 834px) {
  .-gnav_open .l-header__close {
    -webkit-animation: normalIn 0.5s 0.5s forwards;
            animation: normalIn 0.5s 0.5s forwards;
    visibility: visible;
  }
}
.l-header__close::before {
  transform: translate(-50%, -50%) rotate(28deg);
}
.l-header__close::after {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.l-header__gnavbg {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
  width: 100%;
}
.-gnav_open .l-header__gnavbg {
  display: block;
}
.l-header__gnavbg span {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.l-header__gnavbg__lattice {
  background: url(../../../assets/img/common/bg/bg_lattice_black.png);
  background-size: 47px auto;
  -webkit-mask-image: url(../../../assets/img/common/bg/bg_lattice_mask.png);
          mask-image: url(../../../assets/img/common/bg/bg_lattice_mask.png);
  -webkit-mask-size: 120vw auto;
          mask-size: 120vw auto;
  mix-blend-mode: color-burn;
  opacity: 0.8;
}
.-gnav_open .l-header__gnavbg__lattice {
  -webkit-animation: latticeMaskAnime 15s linear infinite;
          animation: latticeMaskAnime 15s linear infinite;
}

.l-header__gnavbg__grad.-top {
  background: linear-gradient(210deg, rgba(245, 170, 199, 0.9) 0%, rgba(172, 156, 221, 0.9) 13.61%, rgba(168, 175, 225, 0.61) 23.09%, rgba(164, 198, 230, 0.2) 36.23%, rgba(164, 200, 231, 0.19) 37.06%, rgba(162, 213, 233, 0.09) 42.86%, rgba(161, 217, 234, 0) 48.46%, rgba(162, 220, 220, 0.1) 61.68%, rgba(163, 222, 207, 0.37) 71.67%, rgba(166, 229, 169, 0.6) 87.6%, rgba(252, 242, 165, 0.7) 100%);
  background-position: 0 0;
  background-size: 200% 100%;
}
.-gnav_open .l-header__gnavbg__grad {
  -webkit-animation: gnavBgAnime 20s 0s ease infinite;
          animation: gnavBgAnime 20s 0s ease infinite;
}

@-webkit-keyframes gnavBgAnime {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes gnavBgAnime {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradMove {
  0% {
    filter: hue-rotate(180deg);
  }
  100% {
    filter: hue-rotate(0);
  }
}
@keyframes gradMove {
  0% {
    filter: hue-rotate(180deg);
  }
  100% {
    filter: hue-rotate(0);
  }
}
.l-pagebg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  width: 100%;
}
.l-pagebg.-gradient {
  background: linear-gradient(120deg, rgb(191, 225, 241) 0%, rgb(192, 183, 220) 20%, rgb(244, 200, 200) 40%, rgb(255, 201, 158) 60%, rgb(249, 247, 198) 80%, rgb(194, 228, 195) 100%);
}
.l-pagebg.-abs {
  position: absolute;
  top: 0;
  left: 0;
}
.l-pagebg.-gray {
  background: #343333;
}

@media (min-width: 835px) {
  .l-header .l-pagebg {
    display: none;
  }
}

.l-pagebg__obj.-lattice {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: latticeMaskAnime 15s linear infinite;
          animation: latticeMaskAnime 15s linear infinite;
  background: url(../../../assets/img/common/bg/bg_lattice.png);
  background-size: 47px auto;
  height: 100%;
  -webkit-mask-image: url(../../../assets/img/common/bg/bg_lattice_mask.png);
          mask-image: url(../../../assets/img/common/bg/bg_lattice_mask.png);
  -webkit-mask-size: 120vw auto;
          mask-size: 120vw auto;
  width: 100%;
}
.l-pagebg__obj.-lattice.-black {
  background-image: url(../../../assets/img/common/bg/bg_lattice_black.png);
}
@media (min-width: 835px) {
  .l-pagebg__obj.-lattice {
    background-size: 52px auto;
  }
}
.-gray .l-pagebg__obj.-lattice {
  background-image: url(../../../assets/img/common/bg/bg_lattice_black.png);
  mix-blend-mode: color-burn;
  opacity: 0.8;
}
.l-header__gnavbg .l-pagebg__obj.-lattice, .loader .l-pagebg__obj.-lattice {
  -webkit-animation: none;
          animation: none;
}
.l-pagebg__obj.-center {
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(#fff 0%, #fff 40%, rgba(255, 255, 255, 0) 70%);
  height: 100%;
  width: 100%;
}
.member.-detail .l-pagebg__obj.-center {
  display: none;
}
@media (max-width: 834px) {
  .l-pagebg__obj.-windmill1 {
    position: absolute;
    top: 10%;
    right: -10%;
  }
}
@media (min-width: 835px) {
  .l-pagebg__obj.-windmill1 {
    position: absolute;
    top: 10%;
    left: 10%;
  }
}
@media (max-width: 834px) {
  .top .l-pagebg__obj.-windmill1 {
    display: none;
  }
}
.member.-detail .l-pagebg__obj.-windmill1 {
  display: none;
}
@media (max-width: 834px) {
  .l-pagebg__obj.-windmill2 {
    position: absolute;
    left: -10%;
    bottom: -5%;
  }
}
@media (min-width: 835px) {
  .l-pagebg__obj.-windmill2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
  }
}
.l-pagebg__obj.-windmill2 .c-windmill__inner {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.l-pagebg__obj.-windmill2 .c-windmill__parts.-triangle1 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.l-pagebg__obj.-windmill2 .c-windmill__parts.-triangle2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-pagebg__obj.-windmill2 .c-windmill__parts.-triangle3 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
@media (max-width: 834px) {
  .top .l-pagebg__obj.-windmill2 {
    display: none;
  }
}
.member.-detail .l-pagebg__obj.-windmill2 {
  display: none;
}

@-webkit-keyframes latticeMaskAnime {
  0% {
    -webkit-mask-position: 0 -50vw;
            mask-position: 0 -50vw;
  }
  100% {
    -webkit-mask-position: -200vw -50vw;
            mask-position: -200vw -50vw;
  }
}

@keyframes latticeMaskAnime {
  0% {
    -webkit-mask-position: 0 -50vw;
            mask-position: 0 -50vw;
  }
  100% {
    -webkit-mask-position: -200vw -50vw;
            mask-position: -200vw -50vw;
  }
}
.l-pagebg__triangle {
  -webkit-mask-image: url(../../../assets/img/common/mask/mask_1.png);
          mask-image: url(../../../assets/img/common/mask/mask_1.png);
  -webkit-mask-position: top right;
          mask-position: top right;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mix-blend-mode: multiply;
}
@media (max-width: 834px) {
  .l-pagebg__triangle {
    position: absolute;
    top: 22.4vw;
    right: 0;
    height: 79.7vw;
    -webkit-mask-size: 99.9vw auto;
            mask-size: 99.9vw auto;
    width: 99.9vw;
  }
}
@media (min-width: 835px) {
  .l-pagebg__triangle {
    position: absolute;
    top: -200px;
    right: 0;
    height: 75.6vw;
    -webkit-mask-size: 74.6vw auto;
            mask-size: 74.6vw auto;
    width: 74.6vw;
  }
}
.news .l-pagebg__triangle {
  background: linear-gradient(60deg, rgb(161, 216, 242) 0%, rgb(172, 156, 221) 20%, rgb(245, 170, 199) 40%, rgb(255, 182, 145) 60%, rgb(255, 243, 165) 80%, rgb(166, 229, 169) 100%);
}
.music .l-pagebg__triangle {
  background: linear-gradient(0deg, rgb(245, 170, 199) 0%, rgb(255, 182, 145) 36.79%, rgb(255, 243, 165) 80%);
}
.event .l-pagebg__triangle {
  background: linear-gradient(60deg, rgba(0, 180, 255, 0.6) 0%, rgba(100, 235, 100, 0.6) 100%);
  opacity: 0.6;
}
.member.-newsindex .l-pagebg__triangle, .member.-newsdetail .l-pagebg__triangle {
  background: linear-gradient(45deg, rgb(245, 170, 199) 0%, rgb(172, 156, 221) 32.69%, rgb(161, 216, 242) 100%);
}
.music.-detail .l-pagebg__triangle {
  display: none;
}

.l-pageheader {
  margin-top: 60px;
  overflow: hidden;
  padding: 6.4vw 0 7.1vw;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (min-width: 835px) {
  .l-pageheader {
    margin-top: 60px;
    overflow: visible;
    padding: 0 0 36px;
  }
}
.member.-detail.-info .l-pageheader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.l-pageheader__logos {
  position: absolute;
  top: 1.7vw;
  left: 3.7vw;
  display: flex;
  margin: 10px 0 0 10px;
}

.l-pageheader__logo {
  width: min(8.9vw, 70px);
}
@media (min-width: 835px) {
  .l-pageheader__logo {
    position: absolute;
    top: 36px;
    left: 34px;
  }
}

.l-pageheader__logos__txt {
  font-weight: 700;
  line-height: 1;
  text-wrap: nowrap;
}
@media (max-width: 834px) {
  .l-pageheader__logos__txt {
    font-size: 1.25rem;
    margin-left: 10px;
  }
}

.l-pageheader__subttl {
  height: 3.3vw;
}
@media (min-width: 835px) {
  .l-pageheader__subttl {
    height: 16px;
  }
}
.l-pageheader__subttl img {
  max-height: 100%;
  vertical-align: top;
}

.l-pageheader__mainwrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  position: relative;
}
@media (max-width: 834px) {
  .l-pageheader__mainwrap {
    height: 19.4vw;
  }
}
@media (min-width: 835px) {
  .l-pageheader__mainwrap {
    height: 102px;
  }
}

.l-pageheader__main {
  opacity: 0;
}
@media (max-width: 834px) {
  .news .l-pageheader__main {
    width: 29.2vw;
  }
  .event .l-pageheader__main {
    width: 32vw;
  }
  .member .l-pageheader__main {
    width: 43.3vw;
  }
  .music .l-pageheader__main {
    width: 32.4vw;
  }
}
@media (min-width: 835px) {
  .news .l-pageheader__main {
    width: 157px;
  }
  .event .l-pageheader__main {
    width: 172px;
  }
  .member .l-pageheader__main {
    width: 233px;
  }
  .music .l-pageheader__main {
    width: 174px;
  }
}
.l-pageheader__main.-stroke1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 45% 0);
          clip-path: inset(0 0 45% 0);
}
.-ready .l-pageheader__main.-stroke1 {
  -webkit-animation: pagettlUp 0.6s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: pagettlUp 0.6s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transform-origin: bottom;
}
.l-pageheader__main.-stroke2 {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-clip-path: inset(45% 0 0 0);
          clip-path: inset(45% 0 0 0);
}
.-ready .l-pageheader__main.-stroke2 {
  -webkit-animation: fpagettlDown 0.6s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: fpagettlDown 0.6s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transform-origin: bottom;
}
.l-pageheader__main.-stroke {
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  /* .music.-detail &, */
}
.member.-detail.-info .l-pageheader__main.-stroke {
  background: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.member.-detail.-info .l-pageheader__main.-stroke img {
  opacity: 0;
}
.member.-detail.-info .l-pageheader__main.-stroke {
  -webkit-mask-image: url(../../../assets/img/common/pageheader/stroke_member.svg);
          mask-image: url(../../../assets/img/common/pageheader/stroke_member.svg);
}
@media (max-width: 834px) {
  .member.-detail.-info .l-pageheader__main.-stroke {
    -webkit-mask-size: 43.3vw auto;
            mask-size: 43.3vw auto;
  }
}
@media (min-width: 835px) {
  .member.-detail.-info .l-pageheader__main.-stroke {
    -webkit-mask-size: 233px;
            mask-size: 233px;
  }
}
.-ready .l-pageheader__main.-fill {
  -webkit-animation: pagettlDown 0.6s 0s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: pagettlDown 0.6s 0s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transform-origin: bottom;
}
.l-pageheader__main img {
  height: auto;
  width: 100%;
}

@-webkit-keyframes pagettlDown {
  0% {
    opacity: 0;
    transform: translateY(0px) scaleY(1);
  }
  20% {
    opacity: 1;
    transform: translateY(-10px) scaleY(1.1);
  }
  60% {
    opacity: 1;
    transform: translateY(0px) scaleY(0.8);
  }
  /* 80% {
      opacity: 1;
      transform: translateY(0px) scaleY(1);
  } */
  100% {
    opacity: 1;
    transform: translateY(0px) scaleY(1);
  }
}

@keyframes pagettlDown {
  0% {
    opacity: 0;
    transform: translateY(0px) scaleY(1);
  }
  20% {
    opacity: 1;
    transform: translateY(-10px) scaleY(1.1);
  }
  60% {
    opacity: 1;
    transform: translateY(0px) scaleY(0.8);
  }
  /* 80% {
      opacity: 1;
      transform: translateY(0px) scaleY(1);
  } */
  100% {
    opacity: 1;
    transform: translateY(0px) scaleY(1);
  }
}
@-webkit-keyframes pagettlUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes pagettlUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@-webkit-keyframes fpagettlDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes fpagettlDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.l-pageheader__subttl {
  position: absolute;
  left: 50%;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 834px) {
  .l-pageheader__subttl {
    bottom: 0.2vw;
    height: 2.8vw;
  }
}
@media (min-width: 835px) {
  .l-pageheader__subttl {
    bottom: 1px;
    height: 11px;
  }
}
.-ready .l-pageheader__subttl {
  -webkit-animation: itemInLR 0.5s 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: itemInLR 0.5s 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.l-pageheader__subttl img {
  height: 100%;
  vertical-align: top;
}

.js-acc {
  overflow: hidden;
  height: 0px;
  transition: height 0.4s 0s ease;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes tapeInUp {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes tapeInUp {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes tapeInDown {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes tapeInDown {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes tapeInLeft {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  99% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
    opacity: 1;
  }
}
@keyframes tapeInLeft {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  99% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
    opacity: 1;
  }
}
@-webkit-keyframes tapeInRight {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  99% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
    opacity: 1;
  }
}
@keyframes tapeInRight {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  99% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: none;
            clip-path: none;
    opacity: 1;
  }
}
@-webkit-keyframes strInDown {
  from {
    opacity: 0;
    transform: translateY(-10%) scaleY(1.5);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@keyframes strInDown {
  from {
    opacity: 0;
    transform: translateY(-10%) scaleY(1.5);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@-webkit-keyframes strInUp {
  from {
    opacity: 0;
    transform: translateY(10%) scaleY(1.5);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@keyframes strInUp {
  from {
    opacity: 0;
    transform: translateY(10%) scaleY(1.5);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@-webkit-keyframes normalIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes normalIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes rotateTriangle {
  from {
    transform: rotate(30deg);
  }
  to {
    transform: rotate(210deg);
  }
}
@keyframes rotateTriangle {
  from {
    transform: rotate(30deg);
  }
  to {
    transform: rotate(210deg);
  }
}
@-webkit-keyframes itenInOpaYT {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes itenInOpaYT {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes itenInOpaYB {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes itenInOpaYB {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes itemInLR {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes itemInLR {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes itemInRL {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes itemInRL {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes itemOutBarX {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes itemOutBarX {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.c-roundbtn {
  transition: all 0.3s ease;
  font-size: 0.75rem;
  position: relative;
  line-height: 1;
  background: #333333;
  border: 1px solid #333333;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 6.5px 15px 6.5px 0;
  width: 104px;
}
.top .c-roundbtn {
  padding: 10.5px 10px 10.5px 0;
  width: 160px;
}
@media (min-width: 835px) {
  .c-roundbtn {
    font-size: 0.875rem;
    padding: 5px 18px 4px 0;
    width: 118px;
  }
  .top .c-roundbtn {
    font-size: 1.0625rem;
    padding: 15px 11px 14px 0;
    width: 226px;
  }
}
.c-roundbtn::after {
  position: absolute;
  top: 6.5px;
  right: 8.5px;
  transition: all 0.3s ease;
  background: #fff;
  content: "";
  display: block;
  height: 11px;
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
          mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 6.5px;
}
.top .c-roundbtn::after {
  position: absolute;
  top: 10.5px;
  right: 32.5px;
}
@media (min-width: 835px) {
  .c-roundbtn::after {
    position: absolute;
    top: 5px;
    right: 13px;
    height: 13px;
    width: 7px;
  }
  .top .c-roundbtn::after {
    position: absolute;
    top: 15px;
    right: 44px;
    height: 16px;
    width: 9px;
  }
}
@media (min-width: 835px) {
  .c-roundbtn:hover {
    background: transparent;
    color: #333333;
  }
  .c-roundbtn:hover::after {
    background: #333333;
    opacity: 0.8s;
  }
}
.c-roundbtn.-protostar {
  background: #ff6969;
  border: 1px solid #ff6969;
}
.c-roundbtn.-protostar:hover {
  background: transparent;
  color: #ff6969;
}
.c-roundbtn.-protostar:hover::after {
  background: #ff6969;
}
.c-roundbtn.-legit {
  background: #537fff;
  border: 1px solid #537fff;
}
.c-roundbtn.-legit:hover {
  background: transparent;
  color: #537fff;
}
.c-roundbtn.-legit:hover::after {
  background: #537fff;
}
.c-roundbtn.-jaxxjaxx {
  background: #6ab97a;
  border: 1px solid #6ab97a;
}
.c-roundbtn.-jaxxjaxx:hover {
  background: transparent;
  color: #6ab97a;
}
.c-roundbtn.-jaxxjaxx:hover::after {
  background: #6ab97a;
}
.c-roundbtn.-anela {
  background: #b171c3;
  border: 1px solid #b171c3;
}
.c-roundbtn.-anela:hover {
  background: transparent;
  color: #b171c3;
}
.c-roundbtn.-anela:hover::after {
  background: #b171c3;
}
.c-roundbtn.-reverse {
  background: transparent;
  border: 1px solid #333333;
  color: #333333;
}
.c-roundbtn.-reverse::after {
  background: #333333;
  opacity: 0.8;
}
.c-roundbtn.-reverse:hover {
  background: #333333;
  color: #fff;
}
.c-roundbtn.-reverse:hover::after {
  background: #fff;
  opacity: 1;
}
.c-roundbtn.-wide {
  width: 140px;
}
@media (min-width: 835px) {
  .c-roundbtn.-wide {
    width: 156px;
  }
}
.c-roundbtn span {
  position: relative;
  justify-content: center;
  display: flex;
}
.c-roundbtn span.-external::after {
  transition: all 0.3s ease;
  background: #000000;
  content: "";
  display: block;
  margin-left: 0.2em;
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_external.svg);
          mask-image: url(../../../assets/img/common/ico/ico_external.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  min-height: 0.75em;
  min-width: 0.75em;
}
.c-roundbtn:hover span::after {
  background: #fff;
}

.c-backbtn {
  font-size: 0.6875rem;
  display: inline-block;
  line-height: 1;
  padding-left: 16px;
  position: relative;
  z-index: 2;
}
@media (min-width: 835px) {
  .c-backbtn {
    font-size: 0.6875rem;
  }
}
.c-backbtn::before {
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.3s ease;
  background: #333333;
  content: "";
  display: block;
  height: 14px;
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
          mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: translateY(-55%) scale(-1, 1);
  width: 9px;
}
@media (min-width: 835px) {
  .c-backbtn::before {
    height: 14px;
    width: 9px;
  }
}
@media (min-width: 835px) {
  .c-backbtn:hover::before {
    transform: translate(-5px, -55%) scale(-1, 1);
  }
}

.c-content {
  padding-bottom: 64px;
}
@media (min-width: 835px) {
  .c-content {
    padding-bottom: 128px;
  }
}
.member .c-content {
  padding-bottom: 12.8vw;
}
@media (min-width: 835px) {
  .member .c-content {
    padding-bottom: 200px;
  }
}
.music .c-content {
  overflow: hidden;
}
@media (max-width: 834px) {
  .c-content.news_single {
    margin-top: -9vw;
  }
}
@media (min-width: 835px) {
  .c-content.news_single {
    margin-top: -55px;
  }
}
@media (max-width: 834px) {
  .event.-index .c-content, .-newsindex .c-content, .-newsdetail .c-content {
    margin-top: -10.3vw;
  }
}
@media (min-width: 835px) {
  .event.-index .c-content, .-newsindex .c-content, .-newsdetail .c-content {
    margin-top: -55px;
  }
}

.c-expansion {
  background: #333333;
  display: block;
  height: 24px;
  width: 24px;
}
.c-expansion span {
  position: relative;
  display: block;
  height: 100%;
}
.c-expansion span::before, .c-expansion span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  background: #fff;
  height: 14px;
  transform: translate(-50%, -50%);
  width: 2px;
}
.c-expansion span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-font-din {
  font-family: "din-2014";
}

.c-hover_op {
  transition: opacity 0.3s 0s ease;
}
@media (min-width: 835px) {
  .c-hover_op:hover {
    opacity: 0.5;
  }
}

.c-inner {
  position: relative;
  padding: 0 8.2vw;
  z-index: 1;
}
@media (min-width: 835px) {
  .c-inner {
    margin: 0 auto;
    max-width: 1248px;
    padding: 0 64px;
  }
}

.c-item__info {
  position: relative;
  margin-top: 8px;
  padding-left: 10px;
}
@media (min-width: 835px) {
  .c-item__info {
    margin-top: 14px;
    padding-left: 14px;
  }
}
.c-item__info::before {
  position: absolute;
  top: 50%;
  left: 0;
  background: #999999;
  content: "";
  display: block;
  height: calc(100% - 8px);
  transform: translateY(-50%);
  width: 3px;
}
@media (min-width: 835px) {
  .c-item__info::before {
    height: calc(100% - 8px);
    transform: translateY(-50%);
  }
}
.c-item__info h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3125;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 835px) {
  .c-item__info h5 {
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.3333333333;
  }
}
.c-item__info p {
  font-size: 0.8125rem;
  color: #000000;
  display: inline-block;
}
@media (min-width: 835px) {
  .c-item__info p {
    font-size: 0.9375rem;
  }
}
.c-item__info p::after {
  color: #999999;
  content: "|";
  margin: 0 0.25em;
}
.c-item__info time {
  color: #999999;
  display: inline-block;
  font-size: 0.8125rem;
}
@media (min-width: 835px) {
  .c-item__info time {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

/* ==========================================================================
	modal
========================================================================== */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  opacity: 0;
  overflow: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  overflow-y: scroll;
  pointer-events: none;
  scrollbar-width: none; /* Firefox 対応 */
  transition: all 0.5s 0s ease;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.c-modal.-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 10;
}
.c-modal::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.c-modal__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  width: 100%;
}
@media (min-width: 835px) {
  .c-modal__inner {
    max-width: 960px;
  }
}

.c-modal__close {
  cursor: pointer;
  padding: 0;
}
@media (max-width: 834px) {
  .c-modal__close {
    position: absolute;
    top: -40px;
    right: -1px;
    height: 40px;
    min-height: 40px;
    min-width: 40px;
    width: 10.2vw;
  }
}
@media (min-width: 835px) {
  .c-modal__close {
    position: absolute;
    top: -70px;
    right: -3px;
    height: 80px;
    width: 80px;
  }
}
.c-modal__close.-outer {
  position: fixed;
  top: 15px;
  right: 20px;
}
@media (min-width: 835px) {
  .c-modal__close.-outer {
    position: fixed;
    top: 40px;
    right: 45px;
  }
}
.c-modal__close::before, .c-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  content: "";
  height: 2px;
  width: 100%;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(28deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-28deg);
}
.c-modal__close.-bk:before, .c-modal__close.-bk:after {
  background: #000;
}

.c-modal_movie__iframewrap {
  aspect-ratio: 16/9;
  margin: 0 auto;
  max-width: 80vw;
  position: relative;
  width: 100%;
}
.c-modal_movie__iframewrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.c-movie {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}
.c-movie::before {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  width: 100%;
}
.c-movie::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../../../assets/img/common/ico/ico_play.svg) no-repeat 0 0/100%;
  content: "";
  height: 24.2%;
  transform: translate(-50%, -50%);
  width: 10.8%;
}
@media (min-width: 835px) {
  .c-movie:hover::before {
    opacity: 0;
  }
}
.c-movie img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-width: none;
  width: 100%;
}
.c-movie.-thumbtxt::after {
  transform: translate(-50%, -10%);
}

.c-movie__thumbtxt {
  position: absolute;
  top: 34.6%;
  left: 50%;
  color: #fff;
  font-size: 4.3vw;
  font-weight: 700;
  transform: translateX(-50%);
}
@media (min-width: 835px) {
  .c-movie__thumbtxt {
    position: absolute;
    top: 78px;
    left: 50%;
    font-size: 1.25rem;
  }
}

.c-movie__info {
  position: relative;
  margin-top: 8px;
  padding-left: 10px;
}
@media (min-width: 835px) {
  .c-movie__info {
    margin-top: 14px;
    padding-left: 14px;
  }
}
.c-movie__info::before {
  position: absolute;
  top: 50%;
  left: 0;
  background: #999999;
  content: "";
  display: block;
  height: calc(100% - 8px);
  transform: translateY(-50%);
  width: 3px;
}
@media (min-width: 835px) {
  .c-movie__info::before {
    height: calc(100% - 8px);
    transform: translateY(-50%);
  }
}
.c-movie__info h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3125;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 835px) {
  .c-movie__info h5 {
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.3333333333;
  }
}
.c-movie__info time {
  color: #999999;
  display: inline-block;
  font-size: 0.875rem;
}
@media (min-width: 835px) {
  .c-movie__info time {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}
.c-movie__info p {
  color: #000000;
  display: inline-block;
}
.c-movie__info p::after {
  content: "|";
  color: #999999;
  margin: 0 0.25em;
}

.c-noscrollbar {
  scrollbar-width: none;
}
.c-noscrollbar::-webkit-scrollbar {
  display: none;
}

.js-scrollreveal {
  opacity: 0;
  transform: translateY(10px);
}
.js-scrollreveal.-reveal {
  -webkit-animation: revalIn 0.6s 0.2s ease forwards;
          animation: revalIn 0.6s 0.2s ease forwards;
}

.c-section__head {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  position: relative;
}
@media (max-width: 834px) {
  .c-section__head {
    height: 21.7vw;
  }
  .top .c-section__head {
    align-items: flex-start;
  }
}
@media (min-width: 835px) {
  .c-section__head {
    height: 102px;
  }
}
@media (min-width: 835px) {
  .c-section__head.-center {
    margin: 0 auto;
    text-align: center;
  }
}

.c-section__ttl {
  opacity: 0;
}
@media (max-width: 834px) {
  .news .c-section__ttl {
    width: 29.2vw;
  }
  .event .c-section__ttl {
    width: 32vw;
  }
  .member .c-section__ttl {
    width: 43.3vw;
  }
  .music .c-section__ttl {
    width: 32.4vw;
  }
}
@media (min-width: 835px) {
  .news .c-section__ttl {
    width: 157px;
  }
  .event .c-section__ttl {
    width: 172px;
  }
  .member .c-section__ttl {
    width: 233px;
  }
  .music .c-section__ttl {
    width: 174px;
  }
}
.c-section__ttl.-stroke1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 45% 0);
          clip-path: inset(0 0 45% 0);
}
.-scrollin .c-section__ttl.-stroke1 {
  -webkit-animation: secttlUp 0.6s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: secttlUp 0.6s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transform-origin: bottom;
}
@media (min-width: 835px) {
  .-scrollin .c-section__ttl.-stroke1 {
    -webkit-animation: pagettlUp 0.6s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            animation: pagettlUp 0.6s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }
}
.c-section__ttl.-stroke2 {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-clip-path: inset(45% 0 0 0);
          clip-path: inset(45% 0 0 0);
}
.-scrollin .c-section__ttl.-stroke2 {
  -webkit-animation: secttlDown 0.6s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: secttlDown 0.6s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transform-origin: bottom;
}
@media (min-width: 835px) {
  .-scrollin .c-section__ttl.-stroke2 {
    -webkit-animation: fpagettlDown 0.6s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            animation: fpagettlDown 0.6s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }
}
.c-section__ttl.-stroke {
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 834px) {
  .top .c-section__ttl.-stroke {
    left: 0;
    transform: translateX(0);
  }
}
.-scrollin .c-section__ttl.-fill {
  -webkit-animation: pagettlDown 0.6s 0s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: pagettlDown 0.6s 0s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transform-origin: bottom;
}
.c-section__ttl img {
  height: auto;
  vertical-align: top;
  width: 100%;
}

@-webkit-keyframes secttlUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes secttlUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes secttlDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes secttlDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-section__subttl {
  position: absolute;
  left: 50%;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 834px) {
  .c-section__subttl {
    bottom: 0.2vw;
    height: 2.8vw;
  }
  .top .c-section__subttl {
    left: 0;
    transform: translateX(0);
  }
}
@media (min-width: 835px) {
  .c-section__subttl {
    bottom: 1px;
    height: 11px;
  }
}
.-scrollin .c-section__subttl {
  -webkit-animation: itemInLR 0.5s 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: itemInLR 0.5s 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.c-section__subttl img {
  height: 100%;
  vertical-align: top;
}

.c-secttl {
  font-size: 10.2vw;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 12px;
}
@media (min-width: 835px) {
  .c-secttl {
    font-size: 3.75rem;
    padding-bottom: calc(20px - 0.1em);
  }
}

.c-subttl {
  font-size: 7.1vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 10px;
}
@media (min-width: 835px) {
  .c-subttl {
    font-size: 1.875rem;
  }
}

@media (min-width: 835px) {
  .c-visible_nrw {
    display: none;
  }
}

@media (max-width: 834px) {
  .c-visible_wide {
    display: none;
  }
}

.c-visible_test {
  display: none;
}
[data-status=test] .c-visible_test {
  display: block;
}

[data-status=test] .c-visible_prod {
  display: none;
}

.c-expansionmodal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  height: 100%;
  opacity: 0;
  overflow: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  pointer-events: none;
  scrollbar-width: none; /* Firefox 対応 */
  transition: all 0.5s 0s ease;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.c-expansionmodal.-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 10;
}
.c-expansionmodal::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.c-expansionmodal .c-expansionmodal__ajaxcontainer {
  width: 100%;
}

.c-expansionmodal__contwrap {
  padding: 60px 0 40px;
}
@media (min-width: 835px) {
  .c-expansionmodal__contwrap {
    align-items: center;
    display: flex;
    min-height: 100%;
    padding: 40px 0;
  }
}

.c-expansionmodal__contents {
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (min-width: 835px) {
  .c-expansionmodal__contents {
    align-items: center;
    display: flex;
    height: 100%;
    min-height: 732px;
  }
}
.c-expansionmodal__contents .c-inner {
  width: 100%;
}

@media (min-width: 835px) {
  .c-expansionmodal__row {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 835px) {
  .c-expansionmodal__main {
    width: 58.2%;
  }
}
.c-expansionmodal__main .ph img {
  width: 100%;
}
@media (max-width: 834px) {
  .c-expansionmodal__main .head {
    margin-bottom: 6px;
  }
}
.c-expansionmodal__main .shop {
  font-size: 1.125rem;
  border: 1px solid #fff;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 0 2px 2px;
}
[data-type=tokuten_kyotsu] .c-expansionmodal__main .shop, [data-type=present] .c-expansionmodal__main .shop {
  display: none;
}

@media (max-width: 834px) {
  .c-expansionmodal__info {
    margin-top: 10px;
  }
}
@media (min-width: 835px) {
  .c-expansionmodal__info {
    width: 35.7%;
  }
}
@media (min-width: 835px) {
  .c-expansionmodal__info .head {
    margin-bottom: 10px;
  }
}
.c-expansionmodal__info .shop {
  font-size: 1rem;
  border: 1px solid #fff;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 0 2px 2px;
}
@media (min-width: 835px) {
  .c-expansionmodal__info .shop {
    font-size: 1.125rem;
  }
}
[data-type=tokuten_kyotsu] .c-expansionmodal__info .shop, [data-type=present] .c-expansionmodal__info .shop {
  display: none;
}
.c-expansionmodal__info .shop + .ttl {
  margin-top: 4px;
}
@media (min-width: 835px) {
  .c-expansionmodal__info .shop + .ttl {
    margin-top: 8px;
  }
}
.c-expansionmodal__info .ttl {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 835px) {
  .c-expansionmodal__info .ttl {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.c-expansionmodal__info .subttl {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 835px) {
  .c-expansionmodal__info .subttl {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.c-expansionmodal__info .desc {
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  margin-top: 4px;
}
@media (min-width: 835px) {
  .c-expansionmodal__info .desc {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 8px;
  }
}

.c-expansionmodal__close {
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
@media (max-width: 834px) {
  .c-expansionmodal__close {
    position: absolute;
    top: 25px;
    right: 20px;
    height: 23px;
    width: 40px;
  }
}
@media (min-width: 835px) {
  .c-expansionmodal__close {
    position: absolute;
    top: 60px;
    right: 75px;
    height: 45px;
    width: 80px;
  }
}
.c-expansionmodal__close::before, .c-expansionmodal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  content: "";
  height: 2px;
  width: 110%;
}
.c-expansionmodal__close::before {
  transform: translate(-50%, -50%) rotate(28deg);
}
.c-expansionmodal__close::after {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.c-news_single {
  margin-bottom: 45px;
}
@media (min-width: 835px) {
  .c-news_single {
    margin-bottom: 100px;
  }
}

.c-news_single__head {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 18px;
  position: relative;
}
@media (max-width: 834px) {
  .c-news_single__head {
    margin-top: 6.4vw;
  }
}
@media (min-width: 835px) {
  .c-news_single__head {
    margin-top: 48px;
    padding-bottom: 32px;
  }
}
.c-news_single__head .row {
  align-items: center;
  display: flex;
}
@media (min-width: 835px) {
  .c-news_single__head .row {
    line-height: 1;
  }
}
.c-news_single__head .date {
  font-size: 1.125rem;
  color: #999999;
  letter-spacing: 0.025em;
}
@media (max-width: 834px) {
  .c-news_single__head .date {
    margin-left: 1em;
  }
}
@media (min-width: 835px) {
  .c-news_single__head .date {
    font-size: 1.125rem;
    margin-left: 1em;
  }
}
.c-news_single__head .category {
  color: #ff6969;
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
  font-size: 1rem;
}
@media (min-width: 835px) {
  .c-news_single__head .category {
    font-size: 1.125rem;
  }
}
.c-news_single__head .category::after {
  position: absolute;
  top: 0;
  right: -0.5em;
  background: #cccccc;
  content: "";
  height: 100%;
  width: 1px;
}
.c-news_single__head .ttl {
  font-weight: 900;
  line-height: 1.2272727273;
  font-size: 1.375rem;
}
@media (min-width: 835px) {
  .c-news_single__head .ttl {
    margin-top: 12px;
    font-size: 1.375rem;
  }
}

.c-news_single__body {
  line-height: 1.7142857143;
  margin-top: 20px;
  font-size: 0.875rem;
}
@media (min-width: 835px) {
  .c-news_single__body {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 30px;
  }
}
.c-news_single__body img {
  display: block;
  margin: 1em 0;
  width: 100%;
}
@media (min-width: 835px) {
  .c-news_single__body img {
    max-width: 640px;
  }
}
.c-news_single__body iframe {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}
.c-news_single__body a {
  color: #ff6969;
  text-decoration: underline;
}
@media (min-width: 835px) {
  .c-news_single__body a:hover {
    text-decoration: none;
  }
}

@media (max-width: 834px) {
  .c-news_list:not(.news .c-news_list) {
    margin-top: 7.6vw;
  }
}
@media (min-width: 835px) {
  .c-news_list:not(.news .c-news_list) {
    margin-top: 48px;
  }
}

.c-news_list__item {
  transition: all 0.3s ease;
  border-top: 1px solid #cccccc;
}
@media (min-width: 835px) {
  .c-news_list__item:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}
.c-news_list__item a {
  display: block;
  height: 100%;
  padding: 10px 0;
  position: relative;
}
@media (min-width: 835px) {
  .c-news_list__item a {
    align-items: center;
    display: flex;
    padding: 50px 0;
  }
}
.c-news_list__item a::after {
  background: url(../../../assets/img/common/ico/ico_arw.svg) no-repeat 0 0/100%;
  content: "";
  height: 10px;
  opacity: 0.2;
  transform: translate(0, -50%);
  width: 6px;
  position: absolute;
  top: 50%;
  right: 0;
}
@media (min-width: 835px) {
  .c-news_list__item a::after {
    height: 16px;
    width: 10px;
  }
}
.c-news_list__item:last-child {
  border-bottom: 1px solid #cccccc;
}
.c-news_list__item .row {
  align-items: center;
  display: flex;
  line-height: 1.4;
}
.c-news_list__item .type {
  font-size: 0.75rem;
  background: #ff6969;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  padding: 0 2px;
}
@media (min-width: 835px) {
  .c-news_list__item .type {
    font-size: 1.1875rem;
    padding: 0 3px;
  }
}
.c-news_list__item .category {
  font-size: 0.8125rem;
  color: #ff6969;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
  /* &::after {
      @include MQ_WIDE {
          background: getColor(gray20);
          content: '';
          height: 100%;
          width: 1px;
          @include absPosition(0, null, null, 0);
      }
  } */
}
.news .c-news_list__item .category {
  padding-left: 3px;
}
@media (min-width: 835px) {
  .c-news_list__item .category {
    font-size: 1.125rem;
  }
}
.c-news_list__item .ttl {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.75;
}
@media (min-width: 835px) {
  .c-news_list__item .ttl {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-left: 16px;
  }
}
.c-news_list__item .date {
  font-size: 0.875rem;
  border-left: 1px solid #CCCCCC;
  color: #999999;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-left: 8px;
  padding-left: 8px;
}
@media (min-width: 835px) {
  .c-news_list__item .date {
    font-size: 1.125rem;
    margin-left: 0.5em;
  }
}
.c-news_list__item.-noarticle {
  font-size: 0.875rem;
  border: none;
  color: #999999;
  text-align: center;
}
@media (min-width: 835px) {
  .c-news_list__item.-noarticle {
    font-size: 1rem;
  }
}
@media (min-width: 835px) {
  .c-news_list__item.-noarticle:hover {
    background: none;
  }
}

.c-news_list__back {
  display: block;
  line-height: 1;
  padding-left: 16px;
  position: relative;
  z-index: 2;
}
@media (max-width: 834px) {
  .c-news_list__back {
    font-size: 0.8125rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 835px) {
  .c-news_list__back {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}
.c-news_list__back::before {
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.3s ease;
  background: #333333;
  content: "";
  display: block;
  height: 14px;
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
          mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0.4;
  transform: translateY(-50%) scale(-1, 1);
  width: 9px;
}
@media (min-width: 835px) {
  .c-news_list__back::before {
    height: 16px;
    width: 10px;
  }
}
@media (min-width: 835px) {
  .c-news_list__back:hover::before {
    transform: translate(-5px, -50%) scale(-1, 1);
  }
}

.c-news.-hide {
  display: none;
}

.c-news__list {
  /* // animation用初期化
  opacity: 0;

  &.-scrollin {
      animation: tapeInLeft 0.6s 0.4s $easeInOutCirc forwards;
  } */
}
@media (max-width: 834px) {
  .c-news__list {
    margin-top: 20px;
  }
}
@media (min-width: 835px) {
  .c-news__list {
    width: 78.5%;
  }
  .event .c-news__list, .member .c-news__list, .music .c-news__list {
    width: 100%;
  }
  .member .c-news__list {
    margin-top: 100px;
  }
}

.c-news__list__item {
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 835px) {
  .c-news__list__item:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}
.c-news__list__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  background: #999999;
  content: "";
  transform: translateY(-50%);
  width: 3px;
}
@media (max-width: 834px) {
  .c-news__list__item::before {
    height: calc(100% - 25px);
  }
}
@media (min-width: 835px) {
  .c-news__list__item::before {
    height: calc(100% - 24px);
  }
}
.c-news__list__item a {
  position: relative;
  display: block;
  padding: 5px 0 9px 16px;
}
@media (min-width: 835px) {
  .c-news__list__item a {
    padding: 12px 32px 12px 20px;
  }
}
.c-news__list__item a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  background: #999999;
  content: "";
  display: block;
  height: 17px;
  -webkit-mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
          mask-image: url(../../../assets/img/common/ico/ico_arw.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: translateY(-50%);
  width: 10px;
}
@media (max-width: 834px) {
  .c-news__list__item a::after {
    display: none;
  }
}
.c-news__list__item .date {
  font-size: 0.875rem;
  border-left: 1px solid #cccccc;
  color: #999999;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  margin-left: 8px;
  padding-left: 8px;
}
.news .c-news__list__item .date {
  margin-left: 5px;
}
@media (min-width: 835px) {
  .c-news__list__item .date {
    font-size: 1.1875rem;
  }
}
.c-news__list__item .type {
  font-size: 0.75rem;
  background: #ff6969;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  padding: 0 2px;
}
@media (min-width: 835px) {
  .c-news__list__item .type {
    font-size: 1.1875rem;
    padding: 0 3px;
  }
}
.c-news__list__item .category {
  font-size: 0.75rem;
  color: #ff6969;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 835px) {
  .c-news__list__item .category {
    font-size: 1.1875rem;
  }
  .news .c-news__list__item .category {
    padding-left: 2px;
  }
}
.c-news__list__item .ttl {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6071428571;
}
@media (min-width: 835px) {
  .c-news__list__item .ttl {
    line-height: 1.4285714286;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.c-news__list__item:last-of-type {
  border-bottom: 1px solid #cccccc;
}
.c-news__list__item + .c-news__list__item {
  border-top: 1px solid #cccccc;
}

.c-news__more {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 835px) {
  .c-news__more {
    margin-top: 28px;
  }
}

.c-paging {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 835px) {
  .c-paging {
    margin-top: 56px;
  }
}

.c-paging__item {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 835px) {
  .c-paging__item {
    font-size: 1.125rem;
  }
}
.c-paging__item.-prev, .c-paging__item.-next {
  aspect-ratio: 10/16;
  background: url(../../../assets/img/common/ico/ico_arw.svg) 0 0/100%;
  opacity: 0.4;
  position: relative;
  width: 6px;
}
@media (min-width: 835px) {
  .c-paging__item.-prev, .c-paging__item.-next {
    margin: 0 40px;
    width: 10px;
  }
}
.c-paging__item.-prev {
  transform: rotate(180deg);
}
.c-paging__item.-prev a, .c-paging__item.-next a {
  display: block;
  height: 100%;
  position: relative;
}
.c-paging__item.-back {
  font-size: 0.8125rem;
  min-width: 150px;
  text-align: center;
}
@media (min-width: 835px) {
  .c-paging__item.-back {
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    min-width: 160px;
  }
}
.c-paging__item.-num {
  margin: 0 0.25em;
  position: relative;
  text-align: center;
  width: 12px;
}
@media (min-width: 835px) {
  .c-paging__item.-num {
    width: 16px;
  }
}
.c-paging__item.-num::after {
  background: #ff6969;
  content: "";
  height: 2px;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -6px;
}
@media (min-width: 835px) {
  .c-paging__item.-num::after {
    position: absolute;
    left: 0;
    bottom: -9px;
  }
}
.c-paging__item.-num.-active:after {
  opacity: 1;
  width: 100%;
}
@media (min-width: 835px) {
  .c-paging__item.-num:hover::after {
    opacity: 1;
    width: 120%;
  }
}
.c-paging__item.-disable {
  opacity: 0.1;
  pointer-events: none;
}

.c-paging__numwrap {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 150px;
}
@media (min-width: 835px) {
  .c-paging__numwrap {
    min-width: 160px;
  }
}

.c-category {
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 2em;
  justify-content: center;
  margin: 0 1.5em 25px;
  font-size: 0.8125rem;
}
@media (min-width: 835px) {
  .c-category {
    font-size: 1.125rem;
    margin: 0 0 45px;
  }
  .member.-newsindex .c-category, .music.-index .c-category, .event.-index .c-category {
    margin-top: 50px;
  }
}

.c-category__item {
  line-height: 1;
  letter-spacing: 0.025em;
}
.c-category__item a {
  position: relative;
}
.c-category__item a::after {
  position: absolute;
  left: -10%;
  bottom: -4px;
  transition: all 0.3s ease;
  background: #ff6969;
  content: "";
  height: 2px;
  opacity: 0;
  width: 0%;
}
@media (min-width: 835px) {
  .c-category__item a::after {
    position: absolute;
    left: -10%;
    bottom: -5px;
  }
}
.c-category__item.-active a::after {
  opacity: 1;
  width: 120%;
}
@media (min-width: 835px) {
  .c-category__item:hover a::after {
    opacity: 1;
    width: 120%;
  }
}