@charset "UTF-8";
:root {
    --fontBaseSize: 16;
}
* {
    box-sizing: border-box;
}

.__smallText {
    font-size: calc(1rem * 14 / var(--fontBaseSize));
    line-height: 1;
}

/* ---------------------- */
.newsBlockArea:not(:first-child) {
    margin-block-start: 35px;
}
@media (width <= 960px) {
    .newsBlockArea:not(:first-child) {
        margin-block-start: 42px;
    }
}

.newsBlockArea:last-child {
    margin-block-end: 0;
}

@media (width <= 960px) {
    .newsBlockArea img {
        display: block;
        margin-inline: auto;
        width: 80%;
        height: auto;
    }
}

.newsTitle {
    margin-block-end: 15px;
}
@media (width <= 960px) {
    .newsTitle img {
        margin-inline: inherit;
        width: 100%;
        height: auto;
    }
}
._news66_text{
    line-height: 1.8;
    margin-block-end: 8px;
}

.examContent{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    @media (width <= 960px) {
        justify-content: flex-start;
        flex-flow: row wrap;
    }
    .examCard{
        width: 200px;
        @media (width <= 960px) {
            width: 100%;
        }
        dt{
            letter-spacing: -1.0px;
            color: #595757;
            font-size: calc(1rem * 30 / var(--fontBaseSize));
            font-weight: bold;
            border-block-end: 1px solid #595757;
        }
        dd{
            margin-block-start: 10px;
            font-size: calc(1rem * 22 / var(--fontBaseSize));
            line-height: 1.4;
        }
    }
}
.examPhoto{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-block-start: 24px;
    @media (width <= 960px) {
        display: block;
        img{
            width: 100%;
            height: auto;
        }
    }
}
