@charset "UTF-8";

.float_call{
    position: absolute;
    top: 5px;
    right: 20px;
    width: fit-content;
    z-index: 30;
}

.float_call_text_group{
    height: 60px;
    border-radius: 50px;
    background-color: #00ff00;

}

.float_call_text_group > img {
    width: 25px;
    height: 25px;
    margin: auto 10px;

}.float_call_text_group > span{
    white-space: nowrap;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 25px;
    width: fit-content;
    height: fit-content;
    margin: auto;
    margin-right: 20px;
}

.call_button{
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #1ce109;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: auto;
    display: block;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);

}.call_button_group{
    display: flex;
    width: fit-content;
    margin: auto;

}.call_button_group > img {
    width: 40px;
    height: 40px;
    margin: auto 0;
    margin-left: 15px;  

}.call_button_group > div{
    width: fit-content;
    white-space: nowrap;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: clamp(35px, 2.5vw, 45px);
    padding: 10px;
    margin-right: 10px;
}

.call_button_msg{
    color: black;
    font-size: clamp(20px, 3.5vw, 30px);
    width: fit-content;
    margin: 10px auto;
}

.call_container{
    position: absolute;
    top: 10px;
    right: 20px;
    width: 100px;
    height: 50px;
}

.pc_container > img{
    width: 40px;
    height: 40px;
    margin: auto;
}

.mobile_container > img {
    max-width: 200px;
    max-height: 90px;
    margin: auto;
    width: 40vw;
    height: 20vw;
}

.pc_container > span, .mobile_container > span {
    width: fit-content;
    height: fit-content;
    margin: auto;
    padding: 0 10px;
    font-size: 30px;
}
@media (min-width: 768px) {
    .mobile_container {
        display: none;
    }

    .call_container{
        width: 30%;
    }

    .call_container a:nth-child(2){
        display: none;
    } 

}@media (max-width: 767px) {
    .pc_container {
        display: none;
    }

    .call_container{
        width: 60%;
    }

    .call_container a:nth-of-type(1){
        display: none;
    }
}