@charset "UTF-8";

.bar{
    padding: 5rem 0;
    background: #0066c5;
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
.bar_wrap{
    max-width: 100%;
}
.bar_line::before{
    max-width: 1170px;
    position: absolute;
    content: "";
    width: calc(100% - 5%);
    height: 2px;
    background: #fff;
    top: calc(50% - 1px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.bar_box{
    position: relative;
    z-index: 2;
    background: #0066c5;
    width: fit-content;
    padding: 0 4rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bar_lead{
    color: #fff;
    font-weight: 700;
    font-size: 250%;
    line-height: 1;
    margin-right: 3rem;
}
.bar_btn a{
    text-decoration: none;
}
.bar_btn span{
    position: relative;
    color: #0066c5;
    font-weight: 700;
    padding: 0.7rem 5rem 0.8rem 3rem;
    background: #fff;
    border-radius: 20px;
    border: 3px solid #c11a1a;
    transition: all 0.5s 0s ease;
}
.bar_btn span::before{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #0066c5;
    border-radius: 50%;
    transition: all 0.5s 0s ease;
}
.bar_btn span::after{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s 0s ease;
}

@media (max-width: 768px){
.bar_box{
    display: block;
}
.bar_lead{
    text-align: center;
    margin-right: 0;
    font-size: 6.5vw;
}
.bar_btn{
    margin-top: 3rem;
    text-align: center;
}
}

