@charset "UTF-8";

/* ==========================================================================
   Instagram誘導バナー（あたたかみ重視デザイン）
   ========================================================================== */
.instagram-banner-box {
    background-color: #ffffff;
    border: 2px solid #ffecb3;
    border-radius: 30px; /* 全体と合わせた優しい丸角 */
    padding: 35px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.03);
}

.insta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 70%;
}

.insta-emoji {
    font-size: 40px;
    background-color: #fff3cd;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* まんまるの背景 */
}

.insta-text h3 {
    font-size: 20px;
    color: #d35400;
    margin-bottom: 5px;
}

.insta-text p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* あたたかみのあるインスタ風グラデーションボタン */
.insta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #e74c3c 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px; /* 丸みのある可愛いボタン */
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

/* ボタンにマウスを乗せたときの優しい動き */
.insta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* スマホ用のレスポンシブ表示（縦並びに変身） */
@media (max-width: 768px) {
    .instagram-banner-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .insta-content {
        flex-direction: column;
        max-width: 100%;
        gap: 15px;
    }
    
    .insta-btn {
        width: 100%;
        text-align: center;
    }
}