/* link.css - リンク集ページ専用スタイル */

/* メインコンテンツのスタイル */
main .inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}


/* セクションスタイル */
main section {
    margin-bottom: 40px;
}


/* ブログリストのスタイル */
#blog {
    list-style-type: none;
    padding: 0;
}

#blog li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    position: relative;
    padding-left: 25px;
}

#blog li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0c1"; /* リンクアイコン */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #0056b3;
}
#blog li:hover {
    transform: translateX(5px);
}

#blog a {
    color: #0056b3; 
    text-decoration: none;
    font-size: 1em; 
    display: block;
    padding: 3px 0; 
    border-bottom: 1px solid #e0e0e0;
}

#blog a:hover {
    color: #003d82;
    background-color: #f0f0f0;
}

/* お問い合わせ情報のスタイル */
main .contact-info {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

main .contact-info p {
    margin: 0;
    line-height: 1.6;
}

main .contact-info strong {
    color: #4CAF50;
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
    .inner {
        padding: 10px;
    }

    #blog a {
        font-size: 0.9em;
    }
}