/**
 * リンク集ページ専用スタイル
 * ルール: グラデーション、シャドウ、角丸は使用禁止
 */

/* ========================================
   Links Page Styles
   ======================================== */

/* Links Section */
.links {
    margin-bottom: 60px;
}

/* Link Cards Grid */
.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Link Card */
.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #ffffff;
    border: 2px solid #DDCDBF;
    text-decoration: none;
    color: #333333;
    transition: background-color 0.3s ease;
}

.link-card:hover {
    background-color: rgba(221, 205, 191, 0.1);
    text-decoration: none;
    color: #333333;
}

/* Link Icon */
.link-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(221, 205, 191, 0.2);
    font-size: 2rem;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Link Content */
.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    color: rgb(70, 72, 88);
    line-height: 1.3;
}

.link-content p {
    font-size: var(--min-font-size, 1.125rem);
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
    color: #555555;
}

/* Page Header */
.page-header {
    margin: 30px 0 20px 0;
}

.page-header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin: 0;
}

.page-header p {
    font-size: var(--min-font-size, 1.125rem);
    font-weight: 300;
    color: #666666;
    text-align: center;
    margin: 10px 0 0 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .link-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .link-card {
        padding: 20px;
    }

    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .link-content h3 {
        font-size: 1.1rem;
    }

    .link-content p {
        font-size: var(--min-font-size, 1.125rem);
    }

    .page-header h2 {
        font-size: 1.5rem;
    }
}





