/* クラス名の衝突を防ぐため、接頭辞 sl- を付与しています */
.sl-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 0; /* 基準点 */
}

.sl-background {
    position: fixed;
    top: -50px; /* ぼかしの縁が白くならないよう少し広げる */
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.6); /* 40pxのぼかしと少し暗く調整 */
    z-index: 1;
    transform: scale(1.1); /* ぼかしによる端の欠け防止 */
}

.sl-container {
    position: relative; /* z-indexを有効にするために必須 */
    z-index: 10; /* 背景(-1)より大きい数字にする */
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    font-family: -apple-system, sans-serif;
}

.sl-header {
    text-align: center;
    padding: 40px 20px;
}

.sl-artwork {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    margin-bottom: 25px;
}

.sl-artist-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.sl-release-title {
    color: #888;
    font-size: 0.95rem;
}

.sl-store-list {
    padding: 25px;
    position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}

.sl-store-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sl-store-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.sl-icon {
    width: 30px; /* お好みのサイズに */
    height: 30px;
    object-fit: contain;
}

.sl-custom-amazon {
    width: 30px;
    height: 30px;
    background-color: #00A8E1; /* Amazon Musicのブランドカラー */
    border-radius: 50%; /* 円形にする */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px; /* 中のロゴの大きさを調整 */
    box-sizing: border-box;
}

.sl-custom-amazon svg {
    width: 100%;
    height: 100%;
}

.sl-btn {
    text-decoration: none;
    color: #111;
    border: 1px solid #111;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.2s;
}

.sl-btn:hover {
    background-color: #111;
    color: #fff;
}

.sl-footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.75rem;
    color: #aaa;
}