/* 全体の設定 */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* セクション */
section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

section ol {
    margin-left: 20px;
    list-style-type: decimal;
}

/* アーティスト情報 */
.artist-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.artist-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* アーティストセクション */
.artist {
    text-align: center;
    margin-bottom: 20px;
}

.artist-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.artist-name {
    font-size: 1.2em;
    margin-top: 10px;
}

.artist-description {
    font-size: 1em;
    margin-top: 5px;
    color: #666;
}

/* 価格表 */
.pricing-item {
    margin-bottom: 20px;
}

.pricing-item h3 {
    margin-bottom: 10px;
}

.pricing-item img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 10px auto;
}

.pricing-item video {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 10px auto;
}

/* リンク */
a {
    color: #1a0dab;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    section {
        padding: 10px;
    }

    .artist-info {
        flex-direction: column;
        align-items: center;
    }

    .artist-icon {
        width: 80px;
        height: 80px;
    }

    .pricing-item img, .pricing-item video {
        max-width: 100%;
    }
}
