.banner{
    width: 100%;
    height: 300px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.banner-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.banner-text{
    position: absolute;
    width: 100%;
    max-width: 1280px;
    padding: 0 22px;
    left: 50%;
    top: 46%;
    transform: translate(-50%,-50%);
}
.banner-text h3{
    margin: 0;
    padding: 0;
    font-size: 40px;
    text-align: center;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}
.banner-text p{
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #ddd;
    text-align: center;
    line-height: 1.3;
}
.banner-image{
    width: 100%;
    height: 100%;
}
.banner-image .wap{
    display: none;
}
.banner-image .pc{
    width: 100%;
    height: 100%;
}
.banner-image .wap{
    width: 100%;
    height: 100%;
}
.banner-image .pc img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-image .wap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(max-width: 1068px){
    .banner{
        height: 240px;
    }
    .banner-text h3{
        font-size: 32px;
    }
    .banner-text p{
        font-size: 16px;
    }
}
@media(max-width: 734px){
    .banner-image .pc{
        display: none;
    }
    .banner-image .wap{
        display: block;
    }
}






.bottom-wrapper{
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    padding: 0 10px;
    margin-top: 10px;
}
.bottom-wrapper h4{
    margin: 0;
    margin: 30px 0;
    font-size: 24px;
    color: #1d1d1f;
    text-align: center;
    line-height: 1.1;
    font-weight: 600;
}
.bottom-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bottom-wrapper ul li{
    background-color: #fff;
    border-radius: 4px;
    padding: 18px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.bottom-wrapper ul li h5{
    font-size: 20px;
    line-height: 1.1;
    color: #1d1d1f;
    font-weight: 600;
    margin: 10px 0;
}
.bottom-wrapper ul li p{
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    line-height: 1.3;
}
.bottom-wrapper ul li p.name{
    font-size: 16px;
}
.bottom-wrapper a{
    color: #2468de;
}
.bottom-wrapper a:hover{
    color: #0f5ada;
}