@charset "utf-8";
/* artist css */

.bg_imgbox {
background: url("../img/artist/title_bg.jpg");
background-size: cover;
}
@media all and (max-width : 767px ){
.bg_imgbox {
background: url("../img/artist/title_bg_sp.jpg") ;
background-size: cover;
}
}

.artist_box_wrap {
display: flex;
flex-wrap: wrap;
}
.artist_box {
width: calc(25% - 90px / 4);
margin-right: 30px;
margin-bottom: 40px;
}

@media all and (max-width : 820px ){
.artist_box {
width: calc(25% - 60px / 4);
margin-right: 20px;
margin-bottom: 30px;
}
}

@media all and (max-width : 767px ){
.artist_box {
width: calc(50% - 15px / 2);
margin-right: 15px;
margin-bottom: 20px;
}
.artist_box:nth-child(2n) {
margin-right: 0px;
}
}


.artist_box:nth-child(4n) {
margin-right: 0px;
}
.artist_imgbox {
margin-bottom: 10px;
}
.profile_box {
margin-left: 10px;
}
.profile_box dt {
font-family: "fot-tsukumin-pr6n", sans-serif;
font-weight: 300;
font-size: 1.8rem;
line-height: 100%;
margin-bottom: 10px;
}

@media all and (max-width : 820px ){
.profile_box dt {
font-size: 1.4rem;
line-height: 130%;
}
}

.profile_box dd {
font-size: 1.2rem;
color: #999;
line-height: 100%;
}

@media all and (max-width : 767px ){
.profile_box dt {
font-size: 1.2rem;
margin-bottom: 5px;
line-height: 120%;
}
.profile_box dd {
font-size: 1.0rem;
}
}

.artist_imgbox {
background: #000;
overflow: hidden;
}
.artist_imgbox img {
width: 100%;
transition-duration: 0.7s;	
}
.artist_imgbox img:hover {
transform: scale(1.05);	
transition-duration: 0.7s;	
opacity: 0.8;
}


/* アーテスト詳細
-------------------------------------------------- */

.artist_img {
width: 42.8%;
}
.artist_profile {
width: 50%;
}
.artist_name {
font-family: "fot-tsukumin-pr6n", sans-serif;
font-weight: 300;
font-size: 2.4rem;
line-height: 110%;
margin-bottom: 10px;
}
.instrument {
font-size: 1.2rem;
line-height: 100%;
color: #999;
margin-bottom: 30px;
}
.artist_txt {
font-size: 1.4rem;
line-height: 200%;
}
.artist_wrap {
display: flex;
justify-content: space-between;
margin-bottom: 80px;
}

@media all and (max-width : 820px ){
.artist_name {
font-size: 2.0rem;
}
.instrument {
margin-bottom: 20px;
}
.artist_txt {
line-height: 180%;
}
}

@media all and (max-width : 767px ){
.artist_img {
width: 100%;
margin-bottom: 15px;
}
.artist_profile {
width: 100%;
}
.artist_name {
font-size: 1.6rem;
line-height: 120%;
margin-bottom: 10px;
}
.instrument {
font-size: 1.0rem;
line-height: 100%;
margin-bottom: 20px;
}
.artist_txt {
font-size: 1.2rem;
line-height: 160%;
}
.artist_wrap {
display: flex;
justify-content: space-between;
flex-direction: column;
margin-bottom: 25px;
}

}