.artist-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "name sns"
    "photo text"
    "spotify text";
  gap: 20px;
  align-items: start;
}

.artist-name{
  grid-area:name;
}

.artist-photo {
  grid-area: photo;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0px;
}

.artist-spotify {
  grid-area: spotify;
}

.artist-sns {
  grid-area: sns;
  justify-self: end; /* 右寄せ */
  align-self: start; /* 上揃え */
  margin-right:70px
}

.artist-text {
  grid-area: text;
}

.artist-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.artist-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.2s;
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.artist-card:hover {
  transform: scale(1.03);
}

.event-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "flyer etext";
  gap: 20px;
  align-items: start;
}

.event-banner{
  grid-area: banner;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.event-flyer{
  grid-area: flyer;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-text{
  grid-area: etext;
}