/*___________________________
Body
___________________________*/

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;

  @media screen and (min-width: 768px) and (max-width: 1053px) {
    font-size: 0.94966762vw;
  }

  @media screen and (max-width: 767px) {
    font-size: 2.66666667vw;
  }
}

body {
  background: var(--colorBlack);
  font-family: var(--familyNotoSans);
  overflow-x: hidden;
}

body.navOpen {
  overflow: hidden;
}

.ios-mac {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
  Base common text style.
  Change to match design.
*/

p, h5, h4, h3, h2, h1, a, dd, dt, li, figcaption, button, label, input, address {
  color: var(--colorWhite);
  font-size: 1rem;
  font-weight: 400;
}

.pageTop:before {
  background-image: url(../images/common/bg-main.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

.pageLower {
  position: relative;
}

.pageLower:before {
  aspect-ratio: 2880 / 3238;
  background-image: url(../images/common/bg-lower.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .pageTop:before {
    background-image: url(../images/common/bg-main_sp.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/*___________________________
Container
___________________________*/

.container1080 {
  margin: 0 auto;
  max-width: 112rem;
  padding-inline: 2rem;
}

.for-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .for-sp {
    display: block;
  }

  .for-pc {
    display: none;
  }
}

/*___________________________
Components
___________________________*/
.bg-black {
  background-color: var(--colorBlack);
}

.secTitle__en {
  font-family: var(--familyAfacadFlux);
  font-size: 9.6rem;
  font-weight: 700;
  letter-spacing: -0.00167em;
  line-height: 0.86;
  text-align: center;
}

.secTitle__ja {
  font-size: 1.49rem;
  margin-top: 3.6rem;
  text-align: center;
}

.has-arrow {
  align-items: center;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}

.has-arrow::after {
  background-image: url(../images/common/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 3.16rem;
  width: 3.16rem;
}

.has-arrow-target {
  align-items: center;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}

.has-arrow-target::after {
  background-image: url(../images/common/icon-arrow-target.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.29rem;
  width: 1.29rem;
}

.commonLink {
  align-items: center;
  border: 1px solid var(--colorWhite);
  border-radius: 10rem;
  display: flex;
  font-family: var(--familyJost);
  font-size: 2.4rem;
  height: 6.4rem;
  justify-content: center;
  margin-inline: auto;
  max-width: 32.2rem;
  transition: all 0.3s;
  width: 100%;
}

.commonLink--black {
  background: var(--colorBlack);
  color: var(--colorWhite);
}

@media (hover: hover) {
  .commonLink:hover {
    background: #4a4a4a;
  }
  /* 
  .has-arrow:hover::after {
    background-image: url(../images/common/icon-arrow-black.svg);
  }

  .has-arrow-target:hover::after {
    background-image: url(../images/common/icon-arrow-target-black.svg);
  } */
}

@media screen and (max-width: 767px) {
  .secTitle__en {
    font-size: 8rem;
  }

  .secTitle__ja {
    margin-top: 2.8rem;
  }
}

/* Artist */
.artist__grid {
  display: grid;
  gap: 0 1.3rem;
  grid-template-columns: repeat(4, 1fr);
}

.artist__item {
  padding-block: 17px;
}

.artist__thumb {
  background: var(--colorBlack);
  border: 1px solid #dbdbdb;
}

.artist__thumb img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.artist__name {
  font-family: var(--familyJost);
  font-size: 2.4rem;
  letter-spacing: -0.004em;
  line-height: 1;
  margin-top: 1rem;
}

.artist__text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.39rem;
  font-weight: 300;
  -webkit-line-clamp: 2;
  line-height: 1.63;
  margin-top: 1rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .artist__grid {
    grid-template-columns: 1fr 1fr;
  }

  .artist__name {
    font-size: 2rem;
  }

  .artist__text {
    font-size: 1.1rem;
  }
}

/* modal */

.artistInfo {
  display: grid;
  gap: 2%;
  grid-template-columns: 48% auto;
}

.artistInfo__img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.artistInfo__textarea {
  padding-top: 1.5rem;
}

.artistInfo__name {
  font-family: var(--familyJost);
  font-size: 9.6rem;
}

.artistInfo__name--kana {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 1rem;
}

.artistInfo__intro {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 1.6rem;
}

.artistInfo__sns {
  align-items: center;
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.artistInfo__snsItem {
  width: 3rem;
}

@media screen and (max-width: 767px) {
  .archiveArtist .container1080 {
    padding-inline: 1.1rem;
  }

  .artistInfo__sns {
    gap: 2rem;
  }
}

/* Modal */
.artistModal {
  height: 100%;
  inset: 0;
  margin: auto;
  max-width: 100%;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.artistModal h1, .artistModal p {
  color: var(--colorBlack);
}

.artistModal__overlay {
  background: rgba(0,0,0,0.6);
  inset: -100vw -100vh;
  position: absolute;
}

.artistModal__content {
  aspect-ratio: 22 / 13;
  background: #fff;
  height: fit-content;
  inset: 0;
  margin: auto;
  max-height: 80%;
  max-width: 90%;
  overflow-y: auto;
  padding: 4rem 8rem 4rem 5rem;
  position: absolute;
}

.artistModal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 10;
}

.artistModal__close svg {
  height: 5rem;
  width: 5rem;
}

.artistInfo__officialBtn {
  font-size: 1.6rem;
  font-weight: 300;
  height: 3.3rem;
  margin: 5rem 0 0 auto;
  position: relative;
  width: 17.2rem;
}

.artistInfo__officialBtn::after {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .artistInfo__officialBtn:hover {
    background: rgba(0,0,0,0.6);
  }
}

@media screen and (max-width: 767px) {
  .artistModal__content {
    aspect-ratio: unset;
    padding: 8rem 1.5rem 3.5rem;
  }
  .artistModal__close {
    right: 1.5rem;
    top: 1.5rem;
  }
  .artistModal__close svg {
    height: 4rem;
    width: 4rem;
  }
  .artistInfo {
    grid-template-columns: 1fr;
  }

  .artistInfo__name {
    font-size: 4rem;
  }

  .artistInfo__officialBtn {
    margin: 5.2rem auto 0;
  }
}


/* pagination */
.archive__pagination {
  align-items: center;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  margin-top: 6.4rem;
}

.page-numbers {
  color: var(--colorWhite);
  font-family: var(--familyJost);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.page-numbers.prev, .page-numbers.next {
  align-items: center;
  background: var(--colorWhite);
  border-radius: 50%;
  display: flex;
  height: 3.8rem;
  justify-content: center;
  position: relative;
  width: 3.8rem;
}

.page-numbers.prev::before {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  box-sizing: border-box;
  color: var(--colorBlack);
  content: "";
  display: inline-block;
  height: 1rem;
  line-height: 1;
  transform: translateX(25%) rotate(-135deg);
  vertical-align: middle;
  width: 1rem;
}

.page-numbers.next::before {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  box-sizing: border-box;
  color: var(--colorBlack);
  content: "";
  display: inline-block;
  height: 1rem;
  line-height: 1;
  transform: translateX(-25%) rotate(45deg);
  vertical-align: middle;
  width: 1rem;
}

@media screen and (max-width: 767px) {
  .archive__pagination {
    margin-top: 3rem;
  }
}

/*___________________________
Header
___________________________*/

.header {
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 144rem;
  padding-block: 2rem;
  position: relative;
}

.navbar__logo {
  display: block;
  left: 50%;
  max-width: 17.3rem;
  pointer-events: auto;
  position: absolute;
  top: 2rem;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
}

.navbar__logo img {
  width: 100%;
}

.navbar__list {
  align-self: center;
  display: flex;
  gap: 2rem;
  pointer-events: auto;
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  z-index: 999;
}

.navbar__item {
  position: relative;
}

.navbar__label {
  transition: 0.3s;
  width: fit-content;
}

.navbar__label {
  color: var(--colorWhite);
  font-family: var(--familyJost);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.navdrawer {
  background: var(--colorBlack, #111);
  height: 100svh;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  width: 80vw;
  z-index: 99;
}

.navOpen .navdrawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.navdrawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 9rem 15% 5rem 3rem;
  position: relative;
  width: 100%;
}

.navdrawer__container {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
}

.navdrawer__container {
  -ms-overflow-style: none; /* IE */
  scrollbar-width: none; /* Firefox */
}

/* Hide WebKit native scrollbar */
.navdrawer__container::-webkit-scrollbar {
  display: none;
}

/* Custom Scrollbar styling */
.navdrawer__scrollbar {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  bottom: 5rem;
  position: absolute;
  right: 12%;
  top: 9rem;
  width: 2px;
  z-index: 10;
}

.navdrawer__scrollbarThumb {
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
}

.navdrawer__scrollbarThumb::before {
  background: var(--colorRed, #fe060a);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
}

.navdrawer__mainList {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.navdrawer__mainItem {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.navdrawer__label {
  color: var(--colorWhite, #fff);
  font-family: var(--familyJost);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navdrawer__subList {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  padding-left: 2.5rem;
}

.navdrawer__subItem {
  align-items: center;
  display: flex;
}

.navdrawer__subLabel {
  align-items: center;
  color: var(--colorWhite, #fff);
  display: flex;
  font-family: var(--familyJost);
  font-size: 1.6rem;
  font-weight: 300;
  gap: 1.8rem;
  letter-spacing: 0.05em;
}

.navdrawer__dash {
  background: var(--colorWhite);
  height: 1px;
  width: 1.4rem;
}


.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  height: 2.5rem;
  pointer-events: auto;
  position: relative;
  transition: 0.3s;
  width: 2.5rem;
  z-index: 999;
}

.hamburger span {
  background: var(--colorWhite);
  height: 0.125rem;
  position: absolute;
  transition: transform 0.3s ease-out, background 0.3s ease-out, height 0.3s ease-out;
  width: 100%;
}

.hamburger span:nth-child(1) {
  left: 0;
  top: 1.5rem;
}

.navOpen .hamburger span {
  background: #fff;
  height: 1px;
}

.navOpen .hamburger span:nth-child(1) {
  top: 0;
  transform: translate(0, 1.2rem) scaleX(1.4) scaleY(1.4)  rotate(45deg);
}

.hamburger span:nth-child(2) {
  bottom: 1.5rem;
  left: 0;
}

.navOpen .hamburger span:nth-child(2) {
  bottom: 0;
  transform: translate(0, -1.2rem) scaleX(1.4) scaleY(1.4) rotate(-45deg);
}

a.navbar__label.is-current {
  color: #808080;
}

@media (hover: hover) {
  a.navbar__label:hover {
    color: #808080;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    margin: 0 1.5rem 0 auto;
    padding-block: 1.5rem;
    width: fit-content;
  }

  .navbar__logo {
    max-width: 18.5rem;
    top: 4rem;
  }

  .navbar__list {
    display: none;
  }

  .navdrawer {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/*___________________________
Footer
___________________________*/

.footer {
  background-image: url(../images/common/bg-footer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  padding-block: 2rem 3.3rem;
}

.footer__container {
  margin-inline: auto;
  max-width: 128rem;
  padding-inline: 2rem;
}

.footerNav {
  display: flex;
  gap: 3.6rem;
  justify-content: flex-end;
}

.footerNavList {
  display: flex;
  gap: 3rem;
}

.footerNavList__item a {
  font-family: var(--familyJost);
  font-size: 1.6rem;
  line-height: 1.05;
  transition: 0.3s;
}

.footerSnsList {
  align-items: center;
  display: flex;
  gap: 1.6rem;
}

.footerSnsList__item a {
  display: block;
  width: 1.6rem;
}

.footerLogo {
  margin-top: 9rem;
  max-width: 46.7rem;
}

.footerLogo.for-pc {
  display: block;
}

.footerNote, .footerNote a {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 4.5rem;
  text-align: center;
}

.footerNote .cookie-settings {
  display: inline-block;
  margin-block: 1rem;
}

@media (hover: hover) {
  .footerNavList__item a:hover {
    color: #808080;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    background-image: url(../images/common/bg-footer_sp.png);
    padding-bottom: 5.7rem;
  }

  .footerLogo {
    margin: 3rem auto 0;
    max-width: 19.5rem;
  }

  .footerLogo.for-pc {
    display: none;
  }

  .footerNav {
    flex-direction: column;
    margin-top: 6.2rem;
  }

  .footerNavList {
    align-items: center;
    flex-direction: column;
    gap: 3.6rem;
  }

  .footerSnsList {
    justify-content: center;
  }

  .footerNote {
    margin-top: 11rem;
  }
}
