@charset "UTF-8";
@import 'variables.css';

html, body {
  overflow-x: hidden;
}
body {
  background: #F6F6F6;
}
.p-artist__mv {
  position: relative;
}
.p-artist__image {
  width: 100%;
  height: auto;
}
.p-artist__copy {
  max-width: 910px;
  width: 100%;
  margin: 10rem auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-artist__contents {
  position: relative;
  padding-bottom: 13rem;
}
.p-artist__item {
  padding-top: 12rem;
  position: relative;
}
.p-artist__item:not(:first-child) {
  border-top: 1px solid var(--gray-secondary);
  margin-top: 10rem;
}
.p-artist__item--doremi-brothers::before {
  content: "";
  position: absolute;
  top: 57rem;
  left: -15rem;
  background-image: url(../img/artist/bg-icon-doremi-brothers.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 324px;
  height: 410px;
}
.p-artist__item--gatagottone::before {
  content: "";
  position: absolute;
  top: 57rem;
  right: -15rem;
  background-image: url(../img/artist/bg-icon-gatagottone.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 312px;
  height: 410px;
}
.p-artist__item--bic-band::before {
  content: "";
  position: absolute;
  top: 49rem;
  left: -15rem;
  background-image: url(../img/artist/bg-icon-bic-band.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 324px;
  height: 410px;
}
.p-artist__item__container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
.p-artist-box__visual {
  position: relative;
}
.p-artist-box__text {
  background: var(--white);
  padding: 2rem;
}
.p-artist-box__header {
  display: flex;
  gap: 2rem;
}
.p-artist-box__name,
.p-artist-box__description {
  width: calc((100% - 2rem) / 2);
}
.p-artist-box__name {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  border-left: 6px solid var(--green);
  padding-left: 1.5rem;
  height: fit-content;
}
.p-artist-box__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.55;
}
.p-artist-box__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 3rem;
}
.p-artist-box__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--green);
  padding: 0.4rem 1.5rem;
  background: var(--light-green);
  border-radius: 21px;
}
.p-artist-tab {
  margin: 4rem auto 0;
  max-width: 1040px;
  width: 100%;
}
.p-artist-tab__buttons {
  display: flex;
  gap: 1.5rem;
  position: relative;
}
.p-artist-tab__button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: calc((100% - 1.5rem) / 2);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.0148em;
  color: var(--green);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: none;
  cursor: pointer;
  background: var(--light-green);
}
.p-artist-tab__button.is-active {
  background: var(--light-gray);
}
.p-artist-tab__button--inactive {
  flex-direction: column;
  line-height: 1;
  color: rgba(99, 165, 69, 0.4);
}
.p-artist-tab__contents {
  position: relative;
}
.p-artist-tab__content {
  display: none;
}
.p-artist-tab__content.is-active {
  display: block;
  background: var(--light-gray);
}
.p-artist-tab__inner {
  padding: 6rem;
}
.p-artist-tab__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 2;
  vertical-align: middle;
  color: var(--gray);
}
.p-artist-tab__images {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
}
.p-artist-tab-image-slider {
  display: none;
  overflow: hidden;
  margin-top: 3rem;
}
.p-artist-tab-image-slider__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-artist-tab-image-slider__navigations {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-artist-tab-image-slider__swiper-button-prev,
.p-artist-tab-image-slider__swiper-button-next {
  position: relative;
  top: inherit;
  width: 40px;
  height: 40px;
  margin-top: 0;
  border: 1px solid var(--gray);
  border-radius: 50%;
}
.p-artist-tab-image-slider__swiper-button-prev {
  left: inherit;
}
.p-artist-tab-image-slider__swiper-button-next {
  right: inherit;
}
.p-artist-tab-image-slider__swiper-button-prev::before,
.p-artist-tab-image-slider__swiper-button-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  height: 8px;
}
.p-artist-tab-image-slider__swiper-button-prev::before {
  background-image: url("../img/common/arrow-left--black.svg");
}
.p-artist-tab-image-slider__swiper-button-next::before {
  background-image: url("../img/common/arrow-right--black.svg");
}
.p-artist-tab-image-slider__swiper-button-prev::after,
.p-artist-tab-image-slider__swiper-button-next::after {
  display: none;
}
.p-artist-tab-image-slider__swiper-wrapper {
  margin-top: 1rem;
}
.p-artist-tab__profile-image {
  width: calc((100% - 4rem) / 3);
}
.p-artist-tab__bottom {
  margin-top: 4rem;
  border-top: 1px solid var(--gray-secondary);
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-artist-tab-bottom-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.p-artist-tab-bottom-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.65;
  background: var(--green);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 115px;
  position: relative;
  margin-right: 22.5px;
}
.p-artist-tab-bottom-item__title::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22.5px 0 22.5px 20px;
  border-color: transparent transparent transparent var(--green);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
}
.p-artist-tab-bottom-item__list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.p-artist-tab-bottom-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--black);
  vertical-align: middle;
  text-decoration: underline;
}
.p-artist-tab__main {
  display: none;
}
.p-artist-tab__main.is-active {
  display: block;
}
.p-artist-tab__toggle {
  margin: 4rem auto 0;
}
.p-artist-gallery__swiper {
  overflow: hidden;
}
.p-artist-gallery__swiper:not(:first-child) {
  padding-top: 4rem;
  border-top: 1px solid var(--gray-secondary);
  margin-top: 4rem;
}
.p-artist-gallery__swiper-wrapper {
  margin-top: 2rem;
}
.p-artist-gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-artist-gallery__title {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 3.4rem;
  letter-spacing: 0.0148em;
  vertical-align: middle;
  color: var(--green);
}
.p-artist-gallery__navigations {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-artist-gallery__swiper-button-prev, 
.p-artist-gallery__swiper-button-next {
  position: relative;
  top: inherit;
  width: 50px;
  height: 50px;
  margin-top: 0;
  border: 1px solid var(--gray);
  border-radius: 50%;
}
.p-artist-gallery__swiper-button-prev {
  left: inherit;
}
.p-artist-gallery__swiper-button-next {
  right: inherit;
}
.p-artist-gallery__swiper-button-prev::after,
.p-artist-gallery__swiper-button-next::after {
  display: none;
}
.p-artist-gallery__swiper-button-prev::before,
.p-artist-gallery__swiper-button-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 10px;
}
.p-artist-gallery__swiper-button-prev::before {
  background-image: url("../img/common/arrow-left--black.svg");
}
.p-artist-gallery__swiper-button-next::before {
  background-image: url("../img/common/arrow-right--black.svg");
}
.p-artist-gallery__image {
  width: 100%;
}
.p-artist-gallery__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.55;
  letter-spacing: 0.0148em;
  vertical-align: middle;
  margin-top: 1.5rem;
}
.p-artist-gallery__item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.p-artist-gallery__button {
  margin: 4rem auto 0;
  padding-left: 4.6rem;
  width: 290px;
  height: 75px;
}
@media screen and (max-width: 1279px) {
  .p-artist__item--doremi-brothers::before {
    width: 250px;
    height: auto;
    aspect-ratio: 162 / 205;
    top: 42rem;
  }
  .p-artist__item--gatagottone::before {
    width: 250px;
    height: auto;
    aspect-ratio: 156 / 205;
    top: 39rem;
  }
  .p-artist__item--bic-band::before {
    width: 250px;
    height: auto;
    aspect-ratio: 162 / 205;
    top: 45rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-artist__item--doremi-brothers::before {
    width: 150px;
    left: -6rem;
    top: 37rem;
  }
  .p-artist__item--gatagottone::before {
    width: 150px;
    right: -6rem;
    top: 36rem;
  }
  .p-artist__item--bic-band::before {
    width: 150px;
    left: -6rem;
    top: 55rem;
  }
}
@media screen and (max-width: 767px) {
  .p-artist__copy {
    margin-top: 2.5rem;
    font-size: 2.4rem;
    letter-spacing: 0.03em;
  }
  .p-artist__item:first-child {
    padding-top: 6rem;
  }
  .p-artist__item:not(:first-child) {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
  }
  .p-artist__item--doremi-brothers::before {
    width: 190px;
    left: -14rem;
    top: 48rem;
  }
  .p-artist__item--gatagottone::before {
    width: 190px;
    right: -12rem;
    top: 39rem;
  }
  .p-artist__item--bic-band::before {
    display: none;
  }
  .p-artist-box__text {
    padding: 2rem 1rem 4rem 2.5rem;
    width: calc(100% - 2.5rem);
    margin-top: -5rem;
    margin-left: 0;
    position: relative;
  }
  .p-artist-box__header {
    flex-direction: column;
    gap: 1rem;
  }
  .p-artist-box__visual {
    width: 100vw;
    margin-left: -3rem;
  }
  .p-artist-box__name {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    border-left: 5px solid var(--green);
    padding-left: 1.3rem;
  }
  .p-artist-box__name,
  .p-artist-box__description {
    width: 100%;
  }
  .p-artist-box__description {
    font-size: 1.4rem;
    line-height: 1.65;
  }
  .p-artist-box__labels {
    margin-top: 2rem;
  }
  .p-artist-box__label {
    font-size: 1.2rem;
    padding: 0.25rem 1.5rem;
  }
  .p-artist-tab__toggle {
    margin: 3rem auto 0;
  }
  .p-artist-tab {
    margin: 3rem auto 0;
  }
  .p-artist-tab__buttons {
    gap: 1rem;
  }
  .p-artist-tab__button {
    font-size: 1.6rem;
    width: calc((100% - 1rem) / 2);
    height: 60px;
  }
  .p-artist-tab__inner {
    padding: 2rem;
  }
  .p-artist-tab__text {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
  .p-artist-tab__bottom {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  .p-artist-tab-bottom-item {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .p-artist-tab-bottom-item__title {
    width: 110px;
    height: 35px;
    margin-right: 15px;
  }
  .p-artist-tab-bottom-item__title::before {
    border-width: 17.5px 0 17.5px 15px;
  }
  .p-artist-tab-bottom-item__list {
    gap: 1.2rem;
  }
  .p-artist-tab-bottom-item__text {
    font-size: 1.2rem;
  }
  .p-artist-tab-bottom-item__icon {
    width: 30px;
    height: 30px;
  }
  .p-artist-tab__images {
    display: none;
  }
  .p-artist-tab-image-slider {
    display: block;
  }
  .p-artist-gallery__title {
    font-size: 2.4rem;
  }
  .p-artist-gallery__navigations {
    gap: 0.8rem;
  }
  .p-artist-gallery__swiper-button-prev,
  .p-artist-gallery__swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .p-artist-gallery__swiper-wrapper {
    margin-top: 1rem;
  }
  .p-artist-gallery__button {
    width: 260px;
    height: 70px;
    margin: 2rem auto 0;
    padding-left: 4rem;
  }
  .p-artist-gallery__caption {
    font-size: 1.2rem;
  }
}