@charset "UTF-8";
:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --primary-color: #5a5a5a;
  --accent-color: #b400cb;
  --accent-white01: rgba(255, 255, 255, 0.1);
  --accent-white02: rgba(255, 255, 255, 0.9);
  --accent-black01: rgba(0, 0, 0, 0.5);
  --accent-black02: rgba(0, 0, 0, 0.8);
  --accent-gray01: rgba(200, 200, 200, 0.9);
  --font-japanese01: "Noto Sans JP", sans-serif;
  --font-japanese02: "RocknRoll One", sans-serif;
  --font-English01: "Emblema One", system-ui;
  --font-English02: "Oswald", sans-serif;
}

html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow: hidden;
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font-japanese01);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  color: var(--white-color);
  background: linear-gradient(var(--black-color) 70%, var(--primary-color));
}
@media screen and (max-width: 413px) {
  body {
    background: linear-gradient(var(--black-color) 80%, var(--primary-color));
  }
}
@media screen and (min-width: 1000px) {
  body {
    background: linear-gradient(var(--black-color) 80%, var(--primary-color));
  }
}

.header {
  background: var(--black-color);
  max-width: 100%;
  height: 128px;
  padding: 40px 16px 0 16px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 16px;
  }
}

.header__logo-wrapper {
  max-width: 175px;
}
@media screen and (min-width: 768px) {
  .header__logo-wrapper {
    max-width: 250px;
  }
}

.header__logo-img {
  position: relative;
  z-index: 1000;
}

.header__menu-mobile {
  display: flex;
  height: 100%;
  align-items: center;
  position: static;
  z-index: 400;
}

.header__sns-toggle {
  width: 50px;
  height: 50px;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .header__sns-toggle {
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1000px) {
  .header__sns-toggle {
    display: none;
  }
}

.header__menu-pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .header__menu-pc {
    display: block;
    position: static;
    z-index: 800;
    max-width: 80%;
  }
}

@media screen and (min-width: 1000px) {
  .header__sns-pc {
    display: flex;
    gap: 24px;
    margin-right: 64px;
    justify-content: right;
  }
  .header__sns-icon {
    width: 64px;
  }
  .header__sns-icon-link {
    width: 100%;
  }
  .header__sns-img {
    border-radius: 20px;
  }
  .header__txt-menu {
    margin: 24px 64px 0 0;
  }
  .header__nav {
    font-family: var(--font-English01);
    font-size: 2.5vw;
  }
  .header__nav-list {
    display: flex;
    gap: 16px;
  }
  .header__nav-link {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header__nav-link:hover {
    color: var(--primary-color);
    font-size: 2.4vw;
  }
}
.footer {
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  margin-top: 0;
  padding-bottom: 8px;
  z-index: 500;
}

.footer__logo {
  margin-top: 8px;
  width: 48px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-top: 36px;
    width: 124px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    position: static;
    transform: none;
    margin-top: 0;
    width: 120px;
  }
}

.footer__copyright {
  display: block;
  font-size: 6px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: 14px;
    margin-top: 4px;
  }
}

.bg-video {
  position: relative;
  max-width: 768px;
  justify-content: center;
}
.bg-video::after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: max(65vh, 60vh + 80px);
  background-color: rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(var(--black-color) 20%, transparent 20%), radial-gradient(var(--black-color) 20%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  z-index: 150;
}
@media screen and (min-width: 1000px) {
  .bg-video {
    margin-top: -32px;
  }
  .bg-video::after {
    height: max(80vh, 70vh + 80px);
  }
}
@media screen and (min-width: 1440px) {
  .bg-video {
    margin-top: 0;
  }
}

.bg-video__media {
  position: fixed;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  z-index: 100;
  top: 80px;
}
@media screen and (min-width: 1000px) {
  .bg-video__media {
    position: fixed;
    width: 100%;
    height: 70vh;
    object-fit: cover;
    z-index: 100;
    top: 80px;
  }
}

.sound-toggle {
  width: 48px;
  position: absolute;
  z-index: 900;
  top: 20%;
  left: 3%;
}
@media screen and (min-width: 768px) {
  .sound-toggle {
    width: 64px;
    top: 15%;
    left: 90%;
  }
}
@media screen and (min-width: 1000px) {
  .sound-toggle {
    top: 20%;
    left: 2%;
  }
}

.main-menu {
  position: fixed;
  z-index: 400;
  width: 100%;
  height: 150px;
  margin-top: 38vh;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-wrap: nowrap;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.main-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .main-menu {
    height: 200px;
    margin-top: 40vh;
    gap: 36px;
  }
}
@media screen and (min-width: 1000px) {
  .main-menu {
    display: none;
  }
}
@media screen and (max-width: 480px) and (max-height: 700px) {
  .main-menu {
    margin-top: calc(38vh - 28px);
  }
}

.main-menu__link {
  flex-shrink: 0;
}

.main-menu__item {
  position: relative;
}

.main-menu__title {
  position: absolute;
  font-family: var(--font-English01);
  font-size: 24px;
  top: -13%;
  z-index: 500;
}
.main-menu__title--btn {
  left: 0;
}
@media screen and (min-width: 768px) {
  .main-menu__title {
    font-size: 32px;
  }
}

.main-menu__thumb-img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
  filter: drop-shadow(0 10px 1rem var(--black-color));
  position: static;
  z-index: 400;
}
@media screen and (min-width: 768px) {
  .main-menu__thumb-img {
    width: 250px;
    height: 150px;
  }
}
.main-menu__thumb-img--profile {
  object-position: top center;
}

.bottom-menu {
  padding-top: 60vh;
  padding-top: 60dvh;
  font-family: var(--font-English02);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bottom-menu {
    padding-top: 63vh;
    padding-top: 63dvh;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .bottom-menu {
    padding-top: 0;
    font-size: 16px;
  }
}

.bottom-menu__nav {
  list-style: none;
}
.bottom-menu__nav:nth-child(2) {
  margin-top: 8px;
}
@media screen and (min-width: 1000px) {
  .bottom-menu__nav {
    display: none;
  }
}

.bottom-menu__list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-cta {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-cta__button {
  width: 160px;
  height: 32px;
  text-align: center;
  border-radius: 10px;
  background: var(--accent-white01);
  margin-top: 16px;
}
@media screen and (max-width: 374px) {
  .contact-cta__button {
    width: 96px;
    margin-top: 8px;
    font-size: 14px;
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .contact-cta__button {
    width: 160px;
    height: 32px;
    text-align: center;
    border-radius: 10px;
    background: var(--accent-white01);
    margin-top: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .contact-cta__button {
    display: none;
  }
}

@media screen and (max-width: 480px) and (max-height: 700px) {
  .bottom-menu,
  .contact-cta {
    display: none;
  }
}
.contact-cta__label {
  font-family: var(--font-English02);
  font-weight: bold;
  position: relative;
}
.contact-cta__label::after {
  content: "CONTACT";
  position: absolute;
  top: 3px;
  left: -100%;
  transform: translateX(100%);
  -ms-filter: blur(1px);
  filter: blur(1px);
  opacity: 0.4;
}

.contact-pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .contact-pc {
    display: block;
    margin-top: 32px;
  }
}

@media screen and (min-width: 1000px) {
  .contact-pc__wrapper {
    width: 270px;
    height: 120px;
    position: relative;
    z-index: 500;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
  .contact-pc__button {
    width: 100%;
    height: 56px;
    font-weight: bold;
    font-size: 32px;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(var(--accent-white01), var(--primary-color));
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .contact-pc__button:hover {
    color: #000000;
    font-size: 36px;
  }
}
.pc-main {
  display: none;
}

@media screen and (min-width: 1000px) {
  .pc-main {
    position: fixed;
    z-index: 400;
    width: 100%;
    height: auto;
    bottom: 16vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
  }
  .topic {
    width: calc((100% - 64px) / 5);
    border: 3px solid var(--white-color);
    border-radius: 30px;
    position: relative;
  }
  .topic::before {
    content: "TOPIC";
    font-family: var(--font-English01);
    font-size: 32px;
    position: absolute;
    top: -25%;
  }
  .topic__inner {
    position: absolute;
    inset: 16px 8px 16px 0;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .topic__inner::-webkit-scrollbar {
    display: none;
  }
  .topic__list {
    font-size: 1.3vw;
  }
  .topic__link {
    display: flex;
    margin-top: 8px;
    text-align: left;
  }
  .topic__category {
    font-family: var(--font-English02);
    font-weight: bold;
  }
  .topic__category::before {
    content: "【";
  }
  .topic__category::after {
    content: "】";
  }
  .topic__text {
    font-family: var(--font-japanese02);
  }
  .pc-videos {
    width: calc((100% - 64px) / 5 * 2);
  }
  .pc-videos__list {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
  }
  .pc-videos__list::before {
    content: "VIDEO";
    font-family: var(--font-English01);
    font-size: 32px;
    position: absolute;
    top: -8%;
  }
  .pc-videos__item {
    max-width: 380px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .pc-videos__item:hover {
    opacity: 0.8;
  }
  .pc-videos__thumb {
    border-radius: 23px;
  }
}
@media screen and (min-width: 1920px) {
  .topic::before {
    top: -20%;
  }
}
.accessory-lines {
  width: 200px;
  height: 64px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .accessory-lines {
    width: 285px;
  }
}

.accessory-lines__line {
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  display: inline-block;
  position: absolute;
  z-index: 500;
}
.accessory-lines__line:first-child {
  top: -10%;
  left: -12%;
}
.accessory-lines__line:last-child {
  top: 10%;
  left: -24%;
}

@media screen and (min-width: 1000px) {
  .accessory-lines--pc {
    width: 300px;
    height: 64px;
    position: relative;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
  .accessory-lines__line--pc {
    height: 4px;
    background: var(--accent-color);
    display: inline-block;
    position: absolute;
    z-index: 500;
  }
  .accessory-lines__line--pc:first-child {
    width: 95%;
    top: 10%;
    left: 11%;
  }
  .accessory-lines__line--pc:last-child {
    width: 89%;
    top: 30%;
    left: 17%;
  }
}
.loading {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(var(--primary-color), var(--black-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s linear;
  z-index: 2000;
}
.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loading__annotation {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 374px) {
  .loading__annotation {
    margin-top: -128px;
  }
}

.loading__sound-icon {
  width: 64px;
}
@media screen and (max-width: 374px) {
  .loading__sound-icon {
    width: 48px;
  }
}

.loading__buttons {
  display: flex;
  gap: 64px;
  margin-bottom: 32px;
}
@media screen and (max-width: 374px) {
  .loading__buttons {
    gap: 32px;
  }
}

.loading__sound-label {
  display: block;
  font-family: var(--font-English01);
}

.loading__img {
  width: 240px;
}
@media screen and (max-width: 374px) {
  .loading__img {
    width: 100px;
  }
}

.loading__ascat {
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

.loading__texts {
  display: flex;
  justify-content: center;
  gap: 5px;
  position: relative;
}
@media screen and (max-width: 374px) {
  .loading__texts::after {
    content: "iPhoneSEなどの小さなデバイスでは、\aサイト内コンテンツが正常に表示されない\a可能性があります";
    white-space: pre;
    position: absolute;
    top: 32px;
    font-size: 14px;
    text-align: center;
  }
}

.loading__char {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  animation: rotate 2s infinite linear;
  text-transform: uppercase;
}
.loading__char:nth-child(2) {
  animation-delay: 0.1s;
}
.loading__char:nth-child(3) {
  animation-delay: 0.2s;
}
.loading__char:nth-child(4) {
  animation-delay: 0.3s;
}
.loading__char:nth-child(5) {
  animation-delay: 0.4s;
}
.loading__char:nth-child(6) {
  animation-delay: 0.5s;
}
.loading__char:nth-child(7) {
  animation-delay: 0.6s;
}
.loading__char:nth-child(8) {
  animation-delay: 0.7s;
}
.loading__char:nth-child(9) {
  animation-delay: 0.8s;
}
.loading__char:nth-child(10) {
  animation-delay: 0.9s;
}
@media screen and (max-width: 374px) {
  .loading__char {
    font-size: 1rem;
  }
}

@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
@keyframes rotate {
  70% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
.hamburger {
  width: 40px;
  height: 32px;
  opacity: 60%;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .hamburger {
    width: 54px;
    height: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .hamburger {
    display: none;
  }
}
.hamburger.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  background: var(--white-color);
}
.hamburger__bar:first-child {
  top: 0;
}
.hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__bar:last-child {
  top: 100%;
  transform: translateY(-100%);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-white02);
  transition: right 0.3s ease-in-out;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  padding-top: 60px;
  text-align: center;
  z-index: 900;
}
.drawer.is-active {
  right: 0;
}

.drawer__list {
  list-style: none;
  padding: 0;
  margin-top: 120px;
  font-family: var(--font-English01);
}
@media screen and (max-width: 413px) {
  .drawer__list {
    margin-top: 64px;
  }
}

.drawer__item {
  padding: 15px;
  font-size: 24px;
}

.drawer__link {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.drawer__button {
  color: var(--black-color);
}

.drawer__close {
  position: absolute;
  font-weight: bold;
  top: 50px;
  right: 12px;
  background: none;
  border: none;
  font-size: 48px;
  cursor: pointer;
  color: var(--accent-black01);
  z-index: 900;
}
@media screen and (max-width: 413px) {
  .drawer__close {
    top: 35px;
    right: 11px;
    font-size: 64px;
  }
}
@media screen and (min-width: 768px) {
  .drawer__close {
    top: 35px;
    right: 11px;
    font-size: 64px;
  }
}

.drawer__contact {
  width: 150px;
  height: 48px;
  border-radius: 50px;
  background: linear-gradient(var(--accent-color), var(--accent-black01));
  font-weight: bold;
  margin-top: 32px;
  font-size: 20px;
}
@media screen and (max-width: 374px) {
  .drawer__contact {
    margin-top: 8px;
  }
}

.popup__close {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 32px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}
.popup__close::after {
  content: "";
  position: absolute;
  inset: -12px;
}
.popup__close--discography {
  top: 7%;
}

.card-link {
  width: 100%;
  text-align: left;
}

.popup--sns {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-black01);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--sns.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sns-popup__panel {
  background: var(--accent-gray01);
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 300px;
  padding: 32px 16px;
}
.sns-popup__panel::before {
  content: "SNS";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--black-color);
}

.sns-popup__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 2vh;
}

.sns-popup__icon {
  width: 72px;
  border-radius: 20px;
}

.popup--profile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-black01);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--profile.is-active {
  opacity: 1;
  pointer-events: auto;
}

.profile__panel {
  background: var(--accent-white02);
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.profile__panel::before {
  content: "PROFILE";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--black-color);
}
@media screen and (min-width: 1000px) {
  .profile__panel::before {
    font-size: 56px;
    position: absolute;
    right: 7%;
  }
}

@media screen and (min-width: 1000px) {
  .profile__content {
    display: flex;
    margin-top: 64px;
    gap: 48px;
  }
}

.profile__kv {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .profile__kv {
    width: 480px;
  }
}
@media screen and (min-width: 1000px) {
  .profile__kv {
    width: 800px;
    margin: 32px 0 0 32px;
  }
}

.profile__kv-img {
  border-radius: 20px;
  margin-top: 32px;
  box-shadow: 0 3px 6px var(--accent-black01);
}

.profile__caption {
  position: absolute;
  font-family: var(--font-English01);
  font-size: 10vw;
  -webkit-text-stroke: 1.5px var(--black-color);
  top: 100%;
  left: -10%;
  transform: translateY(-50%);
  text-shadow: 0 3px 6px var(--accent-black01);
}
@media screen and (min-width: 1000px) {
  .profile__caption {
    font-size: 4vw;
    top: 65%;
    left: -5%;
  }
}

.profile__textbox {
  color: var(--black-color);
  width: 100%;
  min-height: 35vh;
  min-height: 35dvh;
  max-height: 50vh;
  max-height: 50dvh;
  margin: 64px 0 16px 0;
  line-height: 1.5em;
  text-align: left;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.profile__textbox::-webkit-scrollbar {
  display: none;
}
.profile__textbox {
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .profile__textbox {
    padding-bottom: 240px;
  }
}
@media screen and (min-width: 1000px) {
  .profile__textbox {
    font-size: 20px;
  }
}

.profile__career {
  margin-top: 24px;
}
.profile__career::before {
  content: "【経歴】";
  font-weight: bold;
}

.profile__career-item::before {
  content: "・";
}

.profile__recent {
  margin-top: 24px;
}
.profile__recent::before {
  content: "【近年の活動】";
  font-weight: bold;
}

.profile__activity:not(:first-child) {
  margin-top: 16px;
}

.profile__activity-year {
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .profile__break:nth-child(n+3) {
    display: none;
  }
}

.popup--news {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-black01);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--news.is-active {
  opacity: 1;
  pointer-events: auto;
}

.news__panel {
  background: var(--accent-white02);
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: auto;
  max-height: 80vh;
  max-height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.news__panel::before {
  content: "NEWS";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--black-color);
}
@media screen and (min-width: 1000px) {
  .news__panel::before {
    font-size: 56px;
    position: absolute;
    right: 7%;
  }
}

.news__textbox {
  color: var(--black-color);
  width: 100%;
  max-height: 60vh;
  max-height: 60dvh;
  margin: 64px 0 0 0;
  line-height: 1.5em;
  text-align: left;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.news__textbox::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1000px) {
  .news__textbox {
    margin-top: 96px;
  }
}

.news__article {
  width: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 30px;
  padding: 16px 12px 16px 16px;
  margin-bottom: 32px;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .card-link .news__article:hover {
    background: linear-gradient(var(--accent-gray01), var(--accent-black01));
    color: var(--white-color);
  }
}

.news__title {
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (min-width: 1000px) {
  .news__title {
    margin-top: 16px;
    font-size: 40px;
  }
}

.news__date {
  display: inline-block;
  font-weight: bold;
  color: var(--primary-color);
}
.news__date::before {
  content: "-";
}
@media screen and (min-width: 1000px) {
  .news__date {
    font-size: 24px;
  }
}

.news__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news__text {
  margin-top: 8px;
  line-height: 2em;
}
@media screen and (min-width: 1000px) {
  .news__text {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 24px;
  }
}

.news__image {
  min-width: 120px;
  max-width: 480px;
  border-radius: 30px;
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .news__image {
    display: none;
  }
}

.popup--video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-white02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--video.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video__panel {
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.video__panel::before {
  content: "VIDEO";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--black-color);
}

.video__frame {
  margin: 0 auto;
  max-width: 560px;
}

.media-iframe {
  margin-top: 48px;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.popup--videopc {
  display: none;
}

@media screen and (min-width: 1000px) {
  .popup--videopc {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .popup--videopc.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .popup--videopc {
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: darken;
    background-position: 50%;
  }
  .videopc__panel {
    border-radius: 50px;
    text-align: center;
    position: relative;
    width: 90vw;
    height: 80vh;
    height: 80dvh;
    padding: 32px 16px;
    overflow: hidden;
  }
  .videopc__frame {
    margin: 0 auto;
    width: 80%;
  }
}
.popup--live {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-black01);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--live.is-active {
  opacity: 1;
  pointer-events: auto;
}

.live__panel {
  background: var(--accent-white02);
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.live__panel::before {
  content: "LIVE";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--black-color);
}
@media screen and (min-width: 1000px) {
  .live__panel::before {
    font-size: 56px;
    position: absolute;
    right: 7%;
  }
}

.live__textbox {
  color: var(--black-color);
  min-height: 35vh;
  min-height: 35dvh;
  max-height: 60vh;
  max-height: 60dvh;
  margin: 64px 0 16px 0;
  line-height: 1.5em;
  text-align: left;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.live__textbox::-webkit-scrollbar {
  display: none;
}
.live__textbox {
  padding-bottom: 48px;
  overflow-x: hidden;
}

@media screen and (max-width: 520px) {
  .live__text-group {
    width: 50vw;
  }
}
@media screen and (max-width: 400px) {
  .live__text-group {
    width: 35vw;
  }
}

.live__article {
  width: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 30px;
  padding: 16px 12px 16px 16px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 1000px) {
  .live__article:first-child {
    margin-top: 32px;
  }
}

.live__ticket-trigger {
  text-align: left;
}

.live__kv {
  min-width: 96px;
  max-width: 128px;
}

.live__flyer-img {
  border-radius: 5px;
}

.live__detail {
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live__title {
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (min-width: 1000px) {
  .live__title {
    font-size: 48px;
    margin-top: 32px;
  }
}

.live__date {
  display: inline-block;
  font-weight: bold;
  color: var(--primary-color);
}
@media screen and (min-width: 1000px) {
  .live__date {
    font-size: 40px;
    line-height: 1.5em;
  }
}

.live__post-date::before {
  content: "-";
}

.live__post-day::before {
  content: "/";
}

.live__info-list {
  margin-top: 8px;
}
@media screen and (min-width: 1000px) {
  .live__info-list {
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.5em;
  }
}

.live__info-item {
  margin-left: 16px;
}
@media screen and (min-width: 1000px) {
  .live__info-item {
    margin-left: 32px;
  }
}

.live__ticket-label {
  font-size: 1px;
  font-family: var(--font-japanese02);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media screen and (min-width: 1000px) {
  .live__ticket-label {
    font-size: 32px;
    margin-left: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .live__ticket-label {
    font-size: 48px;
    margin-left: 300px;
  }
}

@media screen and (min-width: 1000px) {
  .live__detail:hover .live__ticket-label,
  .live__ticket-trigger:hover .live__ticket-label {
    opacity: 1;
    margin-left: 480px;
  }
}
.popup--flyer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-white02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--flyer.is-active {
  opacity: 1;
  pointer-events: auto;
}

.flyer__wrapper {
  display: flex;
  flex: 1;
  align-items: center;
}

.flyer__image {
  max-width: 50vw;
  margin: 0 auto;
}
.flyer__image--news {
  max-width: 70vw;
}
@media screen and (min-width: 1000px) {
  .flyer__image {
    max-width: 30vw;
  }
  .flyer__image--news {
    max-width: 70vw;
  }
}

.popup--ticket {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-black02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--ticket.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ticket__panel {
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.ticket__panel::before {
  content: "TICKET";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--white-color);
}

.ticket__annotation {
  display: block;
  font-size: 12px;
}

.ticket__section {
  margin-top: 64px;
}

.ticket__button {
  width: 240px;
  height: 72px;
  border-radius: 50px;
  background: linear-gradient(var(--accent-white01), var(--accent-gray01));
  font-weight: bold;
  font-size: 32px;
}

.ticket__price {
  font-weight: bold;
  font-size: 24px;
  margin-top: 8px;
}

.popup--discography {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-white02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--discography.is-active {
  opacity: 1;
  pointer-events: auto;
}

.discography__panel {
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.discography__panel::before {
  content: "DISCOGRAPHY";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--black-color);
}
@media screen and (min-width: 1000px) {
  .discography__panel::before {
    font-size: 56px;
    position: absolute;
    right: 7%;
    top: 0;
  }
}

.discography__content {
  width: 100%;
  min-height: 35vh;
  min-height: 35dvh;
  max-height: 60vh;
  max-height: 60dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.discography__content::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1000px) {
  .discography__content {
    max-height: 70vh;
    max-height: 70dvh;
    width: 70%;
    margin-left: auto;
    padding: 0 32px;
  }
}

.discography__separator {
  display: block;
  width: 90%;
  height: 2px;
  background: var(--black-color);
  margin: 16px 0 48px 0;
}
@media screen and (min-width: 1000px) {
  .discography__separator {
    margin-top: 32px;
    width: 70%;
    margin-left: auto;
  }
}

.discography__group {
  color: var(--black-color);
  line-height: 1.5em;
  text-align: left;
  padding-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  padding-top: 54px;
  justify-content: center;
}
.discography__group::before {
  font-weight: bold;
  font-size: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.discography__group--cd::before {
  content: "CD";
}
.discography__group--dvd::before {
  content: "DVD";
}

.discography__jacket {
  min-width: 120px;
  flex: 1;
}
@media screen and (min-width: 1000px) {
  .discography__jacket {
    min-width: 240px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .discography__jacket:hover {
    rotate: 5deg;
  }
}
@media screen and (min-width: 1000px) {
  .discography__jacket--dvd {
    max-width: 640px;
  }
  .discography__jacket--dvd:hover {
    rotate: 3deg;
  }
}

.discography__jacket-img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.discography__jacket-img--dvd {
  aspect-ratio: 3/4;
}

.popup--discoinfo {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(var(--primary-color), var(--black-color));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--discoinfo.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 1000px) {
  .popup--discoinfo {
    width: 30%;
  }
}

.discoinfo__panel {
  text-align: center;
  position: relative;
  width: 90vw;
  height: auto;
  max-height: 80vh;
  max-height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.discoinfo__buy,
.discoinfo__buy-link {
  flex: 0 0 auto;
}

.discoinfo__jacket {
  max-width: 560px;
  min-width: 240px;
  margin: 0 auto;
}
.discoinfo__jacket--dvd {
  max-width: 360px;
}
@media screen and (min-width: 1000px) {
  .discoinfo__jacket {
    position: relative;
  }
}

.discoinfo__jacket-img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.discoinfo__jacket-img--dvd {
  aspect-ratio: 3/4;
}

.discoinfo__accessory {
  display: none;
}
@media screen and (min-width: 1000px) {
  .discoinfo__accessory {
    display: inline-block;
    position: absolute;
    top: 40%;
    right: -12%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 1440px) {
  .discoinfo__accessory {
    top: 50%;
  }
}
@media screen and (min-width: 1920px) {
  .discoinfo__accessory {
    top: 60%;
  }
}

@media screen and (min-width: 1000px) {
  .discoinfo__buy:hover .discoinfo__accessory,
  .discoinfo__buy-link:hover .discoinfo__accessory {
    right: -2%;
    opacity: 1;
  }
  .discoinfo__shop {
    font-family: var(--font-English01);
    font-size: 48px;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: var(--black-color);
    line-height: 0.8em;
  }
  .discoinfo__shop-group {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-right: 24px;
  }
  .discoinfo__arrow {
    width: 40px;
    height: 40px;
    margin-left: 8px;
  }
}
.discoinfo__text {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.discoinfo__text::-webkit-scrollbar {
  display: none;
}
.discoinfo__text {
  padding-bottom: 24px;
  text-align: left;
  font-weight: bold;
  margin-top: 32px;
  line-height: 2em;
}

.discoinfo__caption {
  font-size: 18px;
}

.discoinfo__setlist {
  margin-top: 32px;
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
}

.discoinfo__exp {
  margin-top: 32px;
}

.popup--discobuy {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-white02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--discobuy.is-active {
  opacity: 1;
  pointer-events: auto;
}

.discobuy__panel {
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.discobuy__panel::before {
  content: "PURCHASE";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--white-color);
}

.discobuy__section {
  margin-top: 64px;
}

.discobuy__button {
  width: 240px;
  height: 72px;
  border-radius: 50px;
  background: linear-gradient(var(--accent-black01), var(--primary-color));
  font-weight: bold;
  font-size: 32px;
}

.popup--contact {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--accent-black02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--contact.is-active {
  opacity: 1;
  pointer-events: auto;
}

.contact__panel {
  border-radius: 50px;
  text-align: center;
  position: relative;
  width: 90vw;
  height: 80vh;
  height: 80dvh;
  padding: 32px 16px;
  overflow: hidden;
}
.contact__panel::before {
  content: "CONTACT";
  font-family: var(--font-English01);
  font-size: 32px;
  color: var(--white-color);
}
@media screen and (min-width: 1000px) {
  .contact__panel::before {
    font-size: 56px;
  }
}

.contact__section {
  margin-top: 80px;
}
@media screen and (min-width: 1000px) {
  .contact__section {
    margin-top: 48px;
  }
}

.contact__sales {
  display: block;
  font-family: var(--font-japanese02);
}
@media screen and (min-width: 1000px) {
  .contact__sales {
    font-size: 1.5vw;
  }
}

.contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 280px;
  height: 72px;
  border-radius: 50px;
  background: linear-gradient(var(--accent-black01), var(--primary-color));
  font-weight: bold;
  font-size: 32px;
}
@media screen and (min-width: 1000px) {
  .contact__button--mobile-line {
    display: none;
    background: transparent;
  }
}
.contact__button--pc-line {
  display: none;
}
@media screen and (min-width: 1000px) {
  .contact__button--pc-line {
    display: inline-block;
    margin: 0 auto;
    width: 240px;
    background: transparent;
  }
}

@media screen and (min-width: 1000px) {
  .contact__qr {
    width: 160px;
    height: 160px;
  }
}

.contact__caption {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}
@media screen and (min-width: 1000px) {
  .contact__caption {
    font-size: 2vw;
  }
}

.popup--contact-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(var(--black-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup--contact-form.is-active {
  opacity: 1;
  pointer-events: auto;
}

.contact-form__panel {
  position: relative;
  width: 90vw;
  max-width: 720px;
  max-height: 86vh;
  max-height: 86dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.contact-form__panel::-webkit-scrollbar {
  display: none;
}
.contact-form__panel {
  padding: 56px 20px 32px;
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .contact-form__panel {
    padding: 64px 48px 40px;
  }
}

.contact-form__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-form__title {
    font-size: 26px;
  }
}

.contact-form__intro {
  font-family: var(--font-japanese02);
  text-align: left;
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .contact-form__intro {
    font-size: 16px;
  }
}

.contact-form__field {
  text-align: left;
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 15px;
}

.contact-form__req {
  display: inline-block;
  font-size: 11px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 4px;
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: var(--white-color);
  color: var(--black-color);
  font-size: 16px;
  font-family: inherit;
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit-wrap {
  text-align: center;
  margin-top: 28px;
}

.contact-form__submit {
  width: 200px;
  height: 56px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(var(--accent-white01), var(--primary-color));
  color: var(--black-color);
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

.popup--contact-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

.popup--contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
}
