.search-pagetitle{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: min(6.9vw, 200%);
    line-height: 1.2;
    margin-bottom: 20px;
    gap: .7em;
    color: #30408c;
}
.search-pagetitle::before,
.search-pagetitle::after{
    content: "";
    display: block;
    flex: 1;
    height: 6px;
    border-top: 1px solid #7383cf;
    border-bottom: 1px solid #7383cf;
}


.search-word-block{
    font-size: 85%;
    margin-bottom: 4em;
}
.search-word-block .block{
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    gap: 6px 1em;
}
.search-word-block .block + .block{
    margin-top: 10px;
}
.search-word-block .txt{
    font-weight: bold;
}
.search-word-block .inner{
    flex: 1;
}
@media (max-width:480px){
    .search-word-block .block{
        flex-direction: column;
    }
}