@charset "UTF-8";


.artistModalBtn{
  padding-bottom: 0.2em;
}
.artistModalBtn figure{
  font-size: 0;
  aspect-ratio: 1/1;
}

.artistModalBtn h1 {
  margin-top: 0.35em;
  line-height: 1;
}
.articleList{
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.articleListModal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 10000;

  transition: .3s linear;
  pointer-events: none;
  opacity: 0;
}
.articleListModal.on{
  pointer-events: auto;
  opacity: 1;
}
.artistArticleHgroup{
  box-sizing: border-box;
}
.hc20y_artist{
  background: #fff;
  background: #f6f6f6;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
}
.articleListModal.on .hc20y_artist.swiper-slide.swiper-slide-active,
.hc20y_artist.on{
  pointer-events: auto;
  opacity: 1;
  display: block;
}
.artistModalBtn{
  cursor: pointer;
}
.profLead{
  font-weight: bold;
}
.artistArticleBody{
  margin: 12.8vw 0;
  padding: 0 7.68vw;
}
.profLead p + p{
  margin-top: 2em;
}
.photoList{
  margin-top: 3.6rem;
}
.photoList figure{
  margin: 1.2rem -3.84vw 0;
  font-size: 0;
}
.photoList figure figcaption{
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0.5em;
}
.modalClose{
  position: fixed;
  top: 2vw;
  right: 2vw;
  width: 12vw;
  height: 12vw;
  max-width: 60px;
  max-height: 60px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: 100;
}
.modalClose span{
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
}
.modalClose span:after,
.modalClose span:before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #666;
  top: 50%;
  left: 50%;
}
.modalClose span:after{
  transform: translate( -50%, -50%) rotate(-45deg);
}
.modalClose span:before{
  transform: translate( -50%, -50%) rotate(45deg);
}
.artistLink{
  margin-top: 4vw;
}
.artistLink ul li{
  list-style: none;
}
.artistLink ul li + li{
  margin-top: 2vw;
}
.artistLink a {
  color: var(--key-color);
  text-decoration: underline;
  /*font-size: 5.8vw;
  font-size: var(--fontsize-7);*/
  font-weight: 500;
  margin-right: 0.2em;
  display: inline-block;
}


@media screen and (min-width: 900px) {
  .artistArticleBody{
    margin: 6.4vw auto;
    padding: 0 1.923vw;
  }
  .articleList{
    margin-top: 6.4vw;
    margin-bottom: 6.4vw;
  }
  .photoList{
    margin: 6.4vw -3.84vw 0;
    margin: 6.4vw -4.5vw 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3.846vw;
    gap: 4.5vw;
  }
  .photoList figure{
    margin: 0em 0 0;
    width: calc( 50% - 3.846vw);
  }
  .artistLink a {
    font-size: ;
  }
  .artistLink ul li + li{
    margin-top: 1.2vw;
  }
}


