@charset "utf-8";

/* ===== news.css ===== */
/* -- articleBox -- */
.articleBox {
    line-height: 1.5;
    margin-top: 5.3rem;
}
.articleBox .mtS {
    margin-top: 1.2rem;
}
.articleBox .mt {
    margin-top: 2.4rem;
}
.articleBox .mtM {
    margin-top: 5.2rem;
}
.articleBox .mtL {
    margin-top: 7.6rem;
}
.articleBox .txtFc {
    font-weight: bold;
    color: #967F00;
}
.articleBox a[target="_blank"]::after {
    display: inline-block;
    position: relative;
    top: -0.1rem;
    margin-left: 1.1rem;
    width: 1.5rem;
    height: 1.1rem;
    background: url(/asset/img/common/blank.svg) no-repeat 0 0/100% auto;
    content: "";
}
.articleBox a.pdf::after {
    display: inline-block;
    position: relative;
    top: 0.1rem;
    margin-left: 1.1rem;
    width: 1.1rem;
    height: 1.3rem;
    background: url(/asset/img/common/pdf.svg) no-repeat 0 0/100% auto;
    content: "";
}

/* -- txtPager -- */
.txtPager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10.2rem;
}
.txtPager > .center {
    margin: 0 10rem;
}
.txtPager a {
    color: #967F00;
    position: relative;
}
.txtPager > .prev a::before,
.txtPager > .next a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1rem;
    height: 2.2rem;
    background: url(/asset/img/common/arrow.svg) no-repeat 0 0/100% auto;
    content: "";
}
.txtPager > .prev a {
    padding-left: 2.5rem;
}
.txtPager > .prev a::before {
    left: 0;
}
.txtPager > .next a {
    padding-right: 2.5rem;
}
.txtPager > .next a::before {
    right: 0;
    transform: scaleX(-1);
}
@media screen and ( max-width: 900px ) {
    .txtPager > .center {
        margin: 0 3.5rem;
    }
}