
/* ========================================
   グリッドレイアウト
   ======================================== */
.attribute-images-grid[data-v-eae4c3dc] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

/* ========================================
   画像アイテム
   ======================================== */
.attribute-image-item[data-v-eae4c3dc] {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 141.4%; /* A4比率 (1:√2) */
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
}
.attribute-image[data-v-eae4c3dc] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   ホバー効果
   ======================================== */
.attribute-image.clickable[data-v-eae4c3dc] {
    transition: opacity 0.2s;
}
.attribute-image-item:hover .attribute-image.clickable[data-v-eae4c3dc] {
    opacity: 0.8;
}

/* ========================================
   レスポンシブ対応（SP）
   ======================================== */
@media (max-width: 767px) {
.attribute-images-grid[data-v-eae4c3dc] {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 24px;
}
}
