/*-list-*/

.blog-list {
    max-width: 95%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
}

.blog-list-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.blog-card {
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
    position: relative;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: block;
}



.blog-card-thumbnail {
    width: 100%;
    height: 200px;

    & img {
        object-fit: contain;
        height: 100% !important;
    }
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-card-content {
    box-sizing: border-box;
    padding: 40px 20px;
    flex-grow: 1;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 15px;
}

.blog-card-excerpt {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #999;
}

.blog-pagination {
    text-align: center;
    margin-top: 3rem;
}

/*-/list-*/

/*-shosai-*/


.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.post-content {
    & p {
        font-size: 1rem;
        line-height: 1.8;
        color: #444;
    }
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.post-navigation a {
    color: #007bff;
    text-decoration: none;
}

/*-shosai-*/

/*--about-list--*/
.about-list {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.about-card {
    margin-right: 4%;
    margin-bottom: 20px;
    width: 48%;

    &:nth-child(2n) {
        margin-right: 0;
    }
}

.about-card-link {
    width: 100%;
    display: block;
}

.about-card-thumbnail {
    width: 100%;
    height: 200px;

    & img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
        object-fit: contain;
    }
}

.about-card-content {
    margin-top: 20px;
}

.about-card-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fd9915;
}

.about-card-excerpt {
    text-align: left;
    color: #fd9915;
    font-size: 14px;
}

/*--/about-list--*/