@charset "utf-8";

/* ページ固有のスタイル */
.insta-card { 
    background: #fff; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    padding: 50px 30px; 
    margin-bottom: 40px; 
    text-align: center; 
}
.insta-card h2 { 
    font-size: 22px; 
    color: #333; 
    margin-bottom: 20px; 
    line-height: 1.4; 
}
.insta-card p { 
    font-size: 15px; 
    color: #555; 
    margin-bottom: 30px; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

.insta-widget-area { 
    margin-top: 40px; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid #eee; 
    background: #fff; 
    padding: 10px; 
}

.btn-insta-follow { 
    display: inline-block; 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    color: #fff; 
    padding: 15px 40px; 
    border-radius: 50px; 
    font-size: 18px; 
    font-weight: bold; 
    text-decoration: none; 
    transition: transform 0.3s; 
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3); 
}
.btn-insta-follow:hover { 
    transform: translateY(-3px); 
    opacity: 0.9; 
}

@media (max-width: 600px) {
    .insta-card { 
        padding: 40px 20px; 
    }
    .insta-card h2 { 
        font-size: 19px; 
    }
    .btn-insta-follow { 
        width: 100%; 
        padding: 12px 20px; 
        font-size: 16px; 
    }
}