@charset "UTF-8";

/* ----------
  共通部分
-------------*/
body {
  font-family: "Poppins", "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .05em;
  color: #333333;
}

a {
  text-decoration: none;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* PC・スマホ表示切り替え */
.pc-only {
  display: block;
}

.sp-only {
  display: none; /* PCではスマホ用を隠す */
}
/* ----------
  サイト全体設定
-------------*/
.section {
  padding: 90px 0;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

ul {
  list-style: none;
}


/* アーティスト詳細ページ */
.artist-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.artist-text-col {
  width: 48%;
  flex-shrink: 1;
  min-width: 0;
}

.artist-sub-title {
  display: block;
  font-size: 13px;
  color: #797979;
  margin-bottom: 8px;
}

.artist-name {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.artist-bio p {
  font-size: 14px;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 28px;
}

.artist-img-col {
  width: 48%;
  flex-shrink: 0;
}

.artist-img-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* リンク */
.artist-link-wrap {
  margin-top: 80px;
}

.instagram-link {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  padding: 5px 0;
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}

.instagram-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ホバー時は文字が少し薄くなり、矢印が右へ動く */
.instagram-link:hover {
  opacity: 0.7;
}

.instagram-link:hover .arrow {
  transform: translateX(4px);
}
/* 戻るボタン */
.back-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 180px;
  padding: 12px 0;
  background-color: #f8f8f8;
  color: #333333;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-arrow {
  font-size: 20px;
  line-height: 1;
}

.back-btn:hover {
  background-color: #dcdcdc;
  color: #ffffff;
}

/* フッター */
.footer {
  padding: 30px;
  background-color: #ffffff;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #797979;
}

/* レスポンシブ（768px以下） */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .artist-name {
  font-size: 26px;
}
  .artist-inner {
    flex-direction: column;
    gap: 30px;
  }

  .artist-text-col {
    width: 100%;
  }

  .artist-bio p {
    font-size: 10px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .artist-link-wrap {
    margin-top: 40px; 
  }

  .instagram-link {
    font-size: 12px; 
    font-weight: bold;
  }
  .artist-img-col {
    width: 100%;
    position: static;
  }

  .back-btn-container {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .back-btn {
    width: 150px;
    padding: 10px 0;
    font-size: 16px;
  }
  
  
}