@charset "UTF-8";
.newsList {
    list-style: none;
}
.newsList::after {
    content: "";
    display: block;
    clear: both;
}
.newsList_list {
    list-style: none;
}
.newsList_list li + li {
    margin-top: 16px;
}
.newsList_list::after {
    content: "";
    display: block;
    clear: both;
}
.newsList_list > li > a {
    background: #f1f8ff;
    display: flex;
    border-radius: 8px;
    text-decoration: none;
    min-height: 96px;
    padding: 26px 0;
    padding-left: 132px;
    flex-direction: column;
    justify-content: center;
    padding-right: 25px;
    transition-duration: .3s;
    transition-property: background-color, color;
    position: relative;
    z-index: 1;
}
.newsList_list > li > a.-noImage {
    padding-left: 10px;
}
.newsList_list > li > a::before {
    content: "";
}
.newsList_list > li > a::after {
    content: "";
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 21px;
    margin-top: auto;
    margin-bottom: auto;
    border: 3px solid #062580;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-bottom: none;
    border-left: none;
}
.newsList_thumb {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 18px;
    transition-duration: .3s;
    transition-property: transform;
}
.newsList_thumb > img {
    display: block;
    max-width: 100%;
    height: auto;
}
.newsList_info {
    display: flex;
    align-items: center;
}
.newsList_update {
    font-size: 12px;
    color: #808080;
    margin-right: 8px;
}
.newsList_categories {
    display: flex;
    align-items: center;
    margin-right: 5px;
    list-style: none;
}
[data-type="isTax"] .newsList_categories {
    display: none;
}
.newsList_categories > li {
    background: #0ECBDB;;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    padding: 0 5px;
    min-width: 49px;
    box-sizing: border-box;
}
.newsList_categories > li[data-slug="info"] {
    background-color: #0ECBDB;;
}
.newsList_categories > li[data-slug="event"] {
    background-color: #3B5DD0;
}
.newsList_categories > li[data-slug="report"] {
    background-color: #299CFF;
}
.newsList_new {
    line-height: 20px;
    background: #ff921e;
    width: 36px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}
.newsList_entryTitle {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
    line-height: 1.4;
}
.entry {
    background: #F7FBFF;
    border-radius: 8px;
    padding: 33px 30px 30px;
}
.entry_info {
    display: flex;
    align-items: center;
}
.entry_new {
    background: #ff921e;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
    width: 36px;
    text-align: center;
    margin-right: 10px;
}
.entry_update {
    color: #808080;
    font-size: 14px;
}
.entry_title {
    border-bottom: 4px solid #D0E1F5;
    color: #053FB3;
    font-size: 24px;
    line-height: 1.4;
    padding-bottom: 19px;
    margin-top: 18px;
    margin-bottom: 23px;
}
.areaEntry_backLink {
    max-width: 288px;
    margin: 34px auto 0;
}
.areaEntry_backLink > a::before {
    content: "";
}
.areaEntry_backLink > a::after {
    content: "";
}
.newsList_dList {
    list-style: none;
    display: flex;
    font-size: 12px;
    margin-right: 5px;
    min-height: 20px;
}
.newsList_dList-single {
    margin-left: 5px;
}
.newsList_dList::after {
    content: "";
    display: block;
    clear: both;
}
.newsList_dList > dt {
    background: #36b561;
    color: #fff;
    width: 80px;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.newsList_dList-closed > dt {
    background: #e1d4a7;
}
.newsList_dList > dd {
    border: 1px solid #36b561;
    color: #36b561;
    padding: 0 16px;
    box-sizing: border-box;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.newsList_dList-closed > dd {
    color: #e1d4a7;
    border-color: #e1d4a7;
}
@media screen and (min-width:1024px) {
    .newsList_list > li > a:hover {
        background: #daeafb;
        opacity: 1;
    }
    a:hover .newsList_thumb {
        transform: rotate(15deg);
    }
}
@media screen and (max-width:1023px) {
    .newsList_list > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .entry {
        padding: 25px;
    }
    .entry_title {
        font-size: 20px;
        border-bottom-width: 3px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width:767px) {
    .newsList_list > li > a {
        padding-left: 70px;
        min-height: 0;
    }
    .newsList_list > li > a::after {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }
    .newsList_thumb {
        width: 60px;
        height: 60px;
    }
    .newsList_info {
        flex-wrap: wrap;
    }
    .newsList_update {
        font-size: 10px;
    }
    .newsList_categories > li {
        line-height: 18px;
    }
    .newsList_new {
        line-height: 18px;
        font-size: 12px;
    }
    .newsList_entryTitle {
        font-size: 14px;
    }
    .entry {
        padding: 15px;
        border-radius: 5px;
    }
    .entry_info {
        flex-wrap: wrap;
    }
    .entry_new {
        line-height: 20px;
        font-size: 12px;
    }
    .entry_update {
        font-size: 12px;
    }
    .entry_title {
        font-size: 16px;
        margin-top: 5px;
        padding-bottom: 5px;
        border-bottom-width: 2px;
        margin-bottom: 10px;
    }
    .areaEntry_backLink {
        max-width: 100%;
        margin-top: 18px;
    }
    .newsList_dList {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 10px;
    }
    .newsList_dList > dt {
        width: 50px;
    }
    .newsList_dList > dd {
        padding: 0 10px;
    }
    .newsList_thumb {
        left: 6px;
    }
}
