/* Artists詳細ページ専用CSS */

#artists-detail .mobile-content {
  overflow-y: auto;
  height: 100vh;
  z-index: 1;
}

.artist-content {
  padding: 20px;
}

.artist-content h1 {
  font-size: 24px;
  font-weight: bold;
  color: #002C49;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #E6522A;
}

.artist-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #E6522A;
}

.artist-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.artist-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.artist-info p {
  margin: 15px 0;
  line-height: 1.8;
  font-size: 14px;
}

.artist-info strong {
  color: #E6522A;
  font-weight: bold;
}

.back-button {
  display: inline-block;
  background-color: #E6522A;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #002C49;
  color: #ffffff;
}

/* レスポンシブ対応 */
@media screen and (min-width: 768px) {
  .artist-content h1 {
    font-size: 28px;
  }

  .artist-content h3 {
    font-size: 24px;
  }

  .artist-details {
    display: block;
  }

  .artist-image {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .artist-content {
    padding: 40px;
  }

  .artist-content h1 {
    font-size: 32px;
  }

  .artist-content h3 {
    font-size: 26px;
  }
}
