@charset "utf-8";
/*main*/
h3 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 24px;
}
#message .main p {
  line-height: 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
#message-text {
  padding: 0 20px;
  margin-bottom: 90px;
}
#message-text div {
  max-width: 600px;
  margin: auto;
}
#message-text span {
  display: block;
}
#message-text p:last-child {
  margin-bottom: 90px;
}
@media screen and (min-width:961px) {
  #message-text {
    text-align: center;
  }
  #message-text div {
    max-width: 1920px;
  }
  #message .main p {
    font-size: 1rem;
  }
}
.artist_button {
  display: block;
  background: url("../../images/artist_button.jpg");
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  width: 300px;
  font-size: 2rem;
  color: #fefefe;
  line-height: 150px;
  text-align: center;
  transition: all 0.5s 0s ease;
}
.artist_button:hover, .artist_button:active {
  transform: scale(1.2, 1.2);
}
.overflow {
  width: 300px;
  overflow: hidden;
  border: 1px solid #ffffff;
  border-radius: 3px;
  box-shadow:
    0 0 0.1em #fff, 0 0 0.5em #fff;
  transition: all 0.5s 0s ease;
}
.overflow:hover, .overflow:active {
  box-shadow:
    -1px -1px #fff, 1px -1px #fff, 1px 1px #fff, -1px 1px #fff, 0 0 .1em #fff, 0 0 .1em #fff inset, 0 0 .5em #fff, 0 0 .5em #fff inset, 0 0 1em #fff, 0 0 1em #fff inset;
}
/*/main*/