@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------
 artist
---------------------------------------------------------- */
#artist_mv{
  background-color: #efefef;
}
/*---- PC ----*/
@media (min-width: 769px) {
  #artist_mv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  
  #artist_mv::after{
    content: "."; 
    display: block; 
    height: 0; 
    font-size:0;	
    clear: both; 
    visibility:hidden;
  }

  #artist_mv dt{
    width: 30%;
  }
  
  #artist_mv dd{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 70%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  #artist_mv dd img{
    width: 100%;
  }
}

/*---- SP ----*/
@media (max-width: 768px) {
  #artist_mv{
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #artist_mv dt{
    width: 50%;
    margin: 0 auto 30px;
  }
}

/*----------------------------------------------------------
 英訳
---------------------------------------------------------- */
.en_txt{
  background-color: #efefef;
  padding: 20px;
  font-size: 80%;
  position: relative;
  margin: 25px auto;
}

.en_txt::before,
.en_txt::after{
  font-family: 'icomoon';
  font-size: 30px;
  color: #999;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  display: inline-block;
  line-height: 1;
}

.en_txt::before{
  content: "\e977";
  top: -15px;
  left: 0;
}

.en_txt::after{
  content: "\e978";
  bottom: -15px;
  right: 0;
}

/*----------------------------------------------------------
 history
---------------------------------------------------------- */
.year_his dl{
  margin-bottom: 0.6em;
  text-align: left;
}

.year_his dl::after{
  content: "."; 
  display: block; 
  height: 0; 
  font-size:0;	
  clear: both; 
  visibility:hidden;
}

.year_his dl:last-child{
  margin-bottom: 0;
}

.year_his dt{
  width: 5em;
  float: left;
}

.year_his dd{
  float: right;
  width: 100%;
  margin-left: -5em;
  padding-left: 5em;
  box-sizing: border-box;
}

/*---- SP ----*/
@media (max-width: 768px) {
  .year_his dt{
    width: 4em;
  }

  .year_his dd{
    margin-left: -4em;
    padding-left: 4em;
  }
}