@charset "utf-8";
.report ul.page-numbers {
    display: flex;
    align-items: center;
}
.report .page-wrap ul.page-numbers li{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #151A8C;
    color: #151A8C;
    border-radius: 10px;
    margin: 0 5px;
	font-size: 18px;
}
.report .page-wrap .current {
    margin: 0;
}
/*テキストリンク*/
.link_txt_box {
    width: fit-content;
    margin: 0 auto 60px;
    position: relative;
    padding: 20px 70px 20px 20px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 1.25rem;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 2px 2px 3px  rgb(0 0 0 / 40%);
    transition: 0.3s;
}
.link_txt_box .fa-stack {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    color: #c5c5c5;
    font-size: 18px;
}
.link_txt_box .fa-play {
    color: #fcfcfc;
}
.link_txt_box:hover {
    box-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
}
@media (max-width: 575px) {
	.link_txt_box span {
		display: none;
	}
}