@charset "UTF-8";
/* CSS Document */

/**

----------------------------------------

お問い合わせページ

----------------------------------------

**/

div.contactwrap{
    position: relative;
    width: 100%;
    height: 1200px;
}
@media screen and (max-width: 769px) {
    div.contactwrap{
        height: 1250px;
    }
}

div.contactbase{
    position: absolute;
    width: 780px;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    background-color: #FFF;
    padding: 20px;
    border-radius: 20px;
}

div.contactform{
    
}

@media screen and (max-width: 769px) {
    div.contactbase{
        width: 85vw;
        padding: 3vw;
        border-radius: 3vw;
        left: 49%;
    }
}

/*tel*/


.telwrap{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #5496e1;
    margin: 0 auto;
    padding: 0 0 20px 0;
    line-height: 1.5;
    border-bottom: 2px solid #c0c0c0;
}
@media (max-width: 769px) {
    .telwrap {
        display: block;
        text-align :center;
        font-size: 3.5vw;
        padding: 0 0 4vw 0;
    }
}

.helpdesk{
    color: #404040;
    font-weight: 100; 
    font-size: 80%;
}

.tel_number {
    /* display: inline-block; */
    /* padding-left: 70px; */
    font-size: 28px;
}

.tel_number > a {
    text-decoration: none;
    color: #5496e1;
    font-size: 32px;
    position: relative;
    margin: 0 0 0 50px;
}
@media (max-width: 769px) {
    .tel_number > a {
        font-size: 4.5vw;
        position: static;
        align-items: center;
        margin: 0;
    }
}

.tel_number > a:before {
    content: "";
    background-color: #5496e1;
    display: inline-block;
    position: absolute;
    transform: translateY(10%);
    left: -40px;
    padding: 8px;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon_tel.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 40px;
}
@media (max-width: 769px) {
    .tel_number > a:before {
        position: static;
        width: 4vw;
        height: 4vw;
        background-size: 4vw;
        border-radius: 8vw;
        padding: 1.5vw;
        transform: translateY(20%);
        margin: 0 2vw 0 0;
        left: 0;
    }
}
