@charset "UTF-8";

html {
    background-color: #5f7e7b;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
}

#partition {
    display: flex;
    margin-top: 10rem;
}

article {
    width: 60vw;
    background-color: #f0efe6;
    border-radius: 3rem;
    margin: 0 5vw 3rem 10vw;
}

aside {
    width: 20vw;
    background-color: #f0efe6;
    border-radius: 3rem;
    margin: 0 10vw 3rem 0;
}

.article-title {
    margin: 6rem 0;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    /*font-style: italic;*/
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    margin: 0 0 2rem 6rem;
    font-size: 1.2rem;
    color: #444;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-label {
    font-weight: 600;
    color: #5f7e7b;
}

.meta-value,
.date {
    font-style: italic;
}

.main-image {
    margin-top: 3rem;
    text-align: center;

    img {
        width: 40vw;
        border-radius: 3rem;
        object-fit: cover;
    }
}

.article-sentence {
    padding: 3rem 5rem;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;

    p {
        font-size: 1.5rem;
        font-weight: 300;
        margin-block-start: 1rem;
        margin-block-end: 1rem;
    }
}

.annotation-image {
    display: flex;
    justify-content: center;

    img {
        width: 20vw;
        height: 30vh;
        object-fit: cover;
        margin: 1rem 2rem 3rem 0;
        border-radius: 1rem;
    }
}

.latest-articles {
    text-align: center;
    font-size: 2rem;
}

.side-line {
    width: 15vw;
    border: 2px dashed;
}

.news-side {
    list-style: none;

    li {
        width: 13vw;
        border-bottom: #5f7e7b 1px dashed;
        font-size: 1.3rem;
        padding: 0.7rem 0;
    }

    a {
        color: #000000;
    }
}

#hatano {
    object-position: top;
}

#text {
    object-position: light;
}

.smaller {
    color: #000000a0;
    font-size: 1rem;
}