/* 応募完了時SNS投稿用素材誘導 */
.share-section {
        text-align: center;
        margin: 30px auto;
        padding: 20px;
        background: #f9f9f9; 
        border-radius: 8px;
    }
    .share-title {
        font-weight: bold;
        font-size: 1.6rem;
        color: #333;
        margin-bottom: 15px;
    }
    .share-images {
        display: flex;
        justify-content: center;
        gap: 15px; 
        flex-wrap: wrap; 
    }
    .share-images img {
        max-width: 30%; 
        object-fit: contain;
    }
    .share-link-box {
        margin-top: 25px;
        text-align: center;
    }
    .share-link {
        display: inline-block;
        background-color: #ed005a;
        color: #fff; 
        padding: 12px 35px;
        font-size: 2rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s, opacity 0.3s;
    }
    .share-link:hover {
        opacity: 0.8;
        text-decoration: none;
    }
    .nobrk {
        display: inline-block;
    }
    @media screen and (max-width: 480px) {
        .share-images img {
            max-width: 28%; 
            gap: 10px;
        }
        .share-link {
            font-size: 1.5rem;
        }
        .share-section {
            padding: unset;
            background-color: unset;
        }
    }