/* =====================================================
   CosmeCafe Artist Page (Scoped)
   ===================================================== */

.cc-artistpage {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px 120px;
  word-break: normal;
  line-height: 1.8;
  color: #444;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.cc-artistpage * {
  box-sizing: border-box;
}

/* グローバル上書き */
.cc-artistpage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-artistpage a {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
}

/* =====================================================
   HERO
   ===================================================== */

.cc-artist-hero {
  margin-bottom: 120px;
}

.cc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cc-hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: #f3f3f3;
}

.cc-artist-name {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
}

.cc-artist-copy {
  font-size: 20px;
  margin-bottom: 24px;
  color: #666;
}

.cc-artist-area {
  font-size: 16px;
  margin-bottom: 24px;
  color: #888;
}

.cc-artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-artist-tags span {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 30px;
  background: #f6f6f6;
  color: #555;
}

/* =====================================================
   SECTION TITLE
   ===================================================== */

.cc-sec-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
  color: #222;
}

/* =====================================================
   STYLE
   ===================================================== */

.cc-artist-style {
  margin-bottom: 140px;
}

.cc-style-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.cc-style-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cc-style-image {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #f3f3f3;
}

.cc-style-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.cc-style-desc {
  color: #666;
  margin-bottom: 20px;
}

.cc-style-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-style-tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #555;
}

/* =====================================================
   BEFORE AFTER
   ===================================================== */

.cc-artist-ba {
  margin-bottom: 140px;
}

.cc-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cc-ba-image {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #f3f3f3;
}

.cc-ba-desc {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  color: #666;
}

/* =====================================================
   PROFILE
   ===================================================== */

.cc-artist-profile {
  margin-bottom: 120px;
}

.cc-profile-text {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  white-space: pre-line;
}

/* =====================================================
   SERVICE
   ===================================================== */

.cc-artist-service {
  margin-bottom: 120px;
}

.cc-service-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cc-service-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

/* =====================================================
   MESSAGE
   ===================================================== */

.cc-artist-message {
  margin-bottom: 80px;
}

.cc-message-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: #faf7f7;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  color: #555;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

  .cc-hero-grid,
  .cc-style-item,
  .cc-ba-grid {
    grid-template-columns: 1fr;
  }

  .cc-artist-name {
    font-size: 32px;
  }

  .cc-style-list {
    gap: 70px;
  }

  .cc-artistpage {
    padding: 60px 16px 80px;
  }

}


.cc-hero-cta {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.cc-hero-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 28px;
  background: #059669;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: .2s;
}
.cc-artistpage .cc-hero-btn a{color:#fff;}
.cc-hero-btn:hover {
  background: #047857;
}


.cc-breadcrumb {
  margin-bottom: 60px;
  font-size: 14px;
  color: #888;
}
.cc-sec-lead {
  text-align: center;
  color: #777;
  margin: -30px 0 60px;
}

/* ===== PROFILE ===== */

.cc-profile-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cc-profile-image {
  text-align: right;
}

.cc-profile-image img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* セクションとのバランス調整 */
.cc-profile-text {
  line-height: 1.9;
  font-size: 15px;
}

/* SP対応 */
@media (max-width: 900px) {
  .cc-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cc-profile-image {
    text-align: center;
  }

  .cc-profile-image img {
    max-height: 360px;
  }
}

/* ===== CTA ===== */

.cc-artist-cta {
  margin: 140px 0 60px;
  padding: 100px 40px;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.cc-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cc-cta-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: .05em;
}

.cc-cta-text {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 35px;
}

.cc-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #059669;
  color: #059669;
  border-radius: 999px;
  font-weight: 500;
  transition: .25s;
}

.cc-cta-btn:hover {
  background: #059669;
  color: #fff;
}

/* 戻るリンクは分離 */

.cc-backlink {
  text-align: center;
  margin-bottom: 120px;
}

.cc-backlink a {
  color: #777;
  font-size: 14px;
}