main.main_slide_hp {
    padding-top: 40px;
} 
.banner {
    position: relative;
    height: 210px;
    width: 100%;
    overflow: hidden;
}
.slider {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.slide::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
    backdrop-filter: saturate(70%);
    opacity: 0.3;
}
.slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text {
    position: absolute;
    display: grid;
    grid-gap: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    text-align: center;
}
.slide .text h2,
.slide .text a {
    color: #FFF; 
}
.slide .text h2 {
    font-size: 23pt;
    letter-spacing: 1px;
    text-align: center;
    padding: 0;
}
.slide .text a {
    position: relative;
    width: max-content;
    margin: auto;
    line-height: 0.9;
    font-size: 18pt;
    font-weight: 500;
    letter-spacing: 1px;
    color: #f9a619;
}
.slide .text a:hover span {
    text-decoration: underline;
}
.slide .text a::after {
    font-family: 'fontello';
    content: "\eabc";
    padding-left: 2px;
    top: 0;
    font-size: 14pt;
}
@media only screen and (max-width:520px) {  
    main.main_slide_hp { 
        background-position-x: -282px;
    }    
}