
/* ========================================
   モーダルオーバーレイ
   ======================================== */
.sample-image-modal[data-v-e67dc0bc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ========================================
   モーダルコンテンツ
   ======================================== */
.modal-content[data-v-e67dc0bc] {
    background-color: white;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.modal-body[data-v-e67dc0bc] {
    padding: 24px;
}

/* ========================================
   閉じるボタン
   ======================================== */
.modal-close[data-v-e67dc0bc] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    line-height: 1.7;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
}
.modal-close[data-v-e67dc0bc]:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* ========================================
   画像表示エリア
   ======================================== */
.modal-image-container[data-v-e67dc0bc] {
    width: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.modal-image[data-v-e67dc0bc] {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* ========================================
   商品情報エリア
   ======================================== */
.modal-info[data-v-e67dc0bc] {
    text-align: center;
}
.item-title[data-v-e67dc0bc] {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.5;
}
.talent-name[data-v-e67dc0bc] {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

/* ========================================
   ジャンルタグ
   ======================================== */
.item-genres[data-v-e67dc0bc] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}
.genre-tag[data-v-e67dc0bc] {
    display: inline-block;
    padding: 6px 12px;
    background-color: #e9ecef;
    border-radius: 16px;
    font-size: 13px;
    color: #495057;
}

/* ========================================
   アクションボタン
   ======================================== */
.modal-actions[data-v-e67dc0bc] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.modal-actions a[data-v-e67dc0bc] {
    min-width: 180px;
    text-decoration: none;
}

/* ========================================
   レスポンシブ対応（SP）
   ======================================== */
@media (max-width: 767px) {
.sample-image-modal[data-v-e67dc0bc] {
        padding: 10px;
}
.modal-content[data-v-e67dc0bc] {
        max-height: 95vh;
}
.modal-body[data-v-e67dc0bc] {
        padding: 16px;
}
.modal-close[data-v-e67dc0bc] {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 18px;
}
.modal-image-container[data-v-e67dc0bc] {
        max-height: 300px;
        margin-bottom: 16px;
}
.modal-image[data-v-e67dc0bc] {
        max-height: 300px;
}
.item-title[data-v-e67dc0bc] {
        font-size: 18px;
        margin-bottom: 10px;
}
.talent-name[data-v-e67dc0bc] {
        font-size: 14px;
        margin-bottom: 12px;
}
.item-genres[data-v-e67dc0bc] {
        margin-bottom: 20px;
}
.genre-tag[data-v-e67dc0bc] {
        font-size: 12px;
        padding: 5px 10px;
}
.modal-actions[data-v-e67dc0bc] {
        flex-direction: column;
        gap: 10px;
}
.modal-actions a[data-v-e67dc0bc] {
        width: 100%;
        min-width: auto;
}
}
