/* インスタグラム画像表示用スタイル */
.instagram-image {
    position: relative;
}

.instagram-source {
    margin-top: 10px;
    text-align: center;
}

.instagram-source a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #e4405f;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #e4405f;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.instagram-source a:hover {
    background-color: #e4405f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(228, 64, 95, 0.3);
}

.instagram-source a i {
    font-size: 16px;
}

/* インスタグラムアイコンのアニメーション */
.instagram-source a:hover i {
    animation: instagram-pulse 0.6s ease-in-out;
}

@keyframes instagram-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .instagram-source a {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* インスタグラム画像にバッジを追加 */
.instagram-image::before {
    content: "Instagram";
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
} 