/* -------------------- 親ページCSS -------------------- */



.child-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.child-page-card {
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.child-page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.child-page-card img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.child-page-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.child-page-card p {
    font-size: 0.9rem;
    color: #666;
}





