@charset "UTF-8";
/* CSS Document */

.artist_data{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto 60px;
    padding: 0;
    list-style: none;
}

.artist_data li{
    width: 48%;
}

.artist_data li img{
  display: block;
  width: 100%;
  height: auto;
}
.artist_data li img.border{
  display: block;
  width: calc(100% - 2px);
  height: auto;
  border: 1px solid #ccc;
}

.artist_data li:last-child img{
  max-width: 160px;
  height: auto;
}
.artist_data li p{
  font-size: 0.8rem;
  margin: -0.5rem 0 0;
}

h2{
  font-size: 1.4rem;
}

/* 一定以上のサイズの場合marginを調整する */
@media screen and (min-width: 1160px) {

.mBtmx2{
    margin: 0 auto 120px;
}

}


/* スマホ用メディアクエリ */

@media screen and (max-width: 768px) {

.artist_data{
    flex-direction: column;
    justify-content: flex-start;
}

.artist_data li{
    width: 100%;
}
.artist_data li:first-child{
    margin: 0 0 30px;
}

}




/* ページトップへ */
#for_top {
    background: rgba(255,255,255,0.5);
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

#for_top img{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 767px) {
#for_top {
  width: 44px;
  height: 44px;
  bottom: 5px;
  right: 5px;
}
#for_top img{
  width: 50%;
  height: auto;
}
}