@charset "UTF-8";
.entry {}
.entry_image {}
.entry_image > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.entry_info {
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    margin: 87px 0 28px;
}
.entry_update {
    font-size: inherit;
    font-weight: bold;
    margin-right: 30px;
}
.entry_update > time {}
.entry_title {
    font-size: inherit;
}
.entry_body {
    line-height: 2.8;
}
.entry_link {
    margin-top: 56px;
}
.entry_link > a {
    display: flex;
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    align-items: center;
    transition-duration: .3s;
    transition-property: background-color, color;
}
.entry_link > a::before {
    content: "";
    border: 4px solid #2d5a96;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left: none;
    margin-right: 15px;
    border-right-width: 6px;
    transition-duration: .3s;
    transition-property: border-color, color;
}
.entry_link > a::after {
    content: "";
}
@media screen and (min-width:1024px) {
    .entry_link > a:hover {
        color: #9e2227;
    }
    .entry_link > a:hover::before {
        border-right-color: #9e2227;
    }
}
@media screen and (max-width:1023px) {
    .entry {}
    .entry_image {}
    .entry_image > img {}
    .entry_info {
        font-size: 16px;
        display: block;
        margin: 25px 0 20px;
    }
    .entry_update {
        font-size: 12px;
    }
    .entry_update > time {}
    .entry_title {}
    .entry_body {
        line-height: 2;
    }
    .entry_link {
        margin-top: 20px;
    }
    .entry_link > a {
        font-size: 14px;
    }
    .entry_link > a::before {}
    .entry_link > a::after {}
}
