
.contact_tel, .contact_form {
    width: 100%;
    margin-bottom:40px;
    display:none;
}

.contact_tel h4, .contact_form h4 {
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px 10px;
    margin-top: 0;
    text-align: center;
    background: #58cfe1;
    color: #fff;
    font-size: 18px;
    line-height: 1.4em;
}
.contact_tel ul{
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 10px 0px;
}
.contact_tel ul li{
    text-align: center;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    word-break: break-all;
    display:inline-block;
    margin:0;
    padding:0;
}
.contact_tel ul li.left{
    width:46%;
    padding:2% 0;
    text-align:right;
}
.contact_tel ul li.right{
    width:46%;
    padding:2% 0;
    text-align:left;
}

.contact_tel ul li a{
    text-align: center;
    font-size: 23px;
    line-height: 1.3;
    word-break: break-all;
}

/* recaptchaの表示用設定 */
.g-recaptcha div:first-child {
    margin: 30px auto;
}
.btn-primary[disabled] {
    background-color: #ffc494;
}

/* お問い合わせ完了画面のチェックマーク */
.check {
    height: 20em;
    width: 100%;
    line-height: 20em;
}
.check > i {
    color: #4597a1;
    font-size: 20em;

    /* アニメーションの設定 */
    transform-origin: center;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-iteration-count: 4;
    animation-direction: alternate;
}

/* アニメーションの設定 */
@keyframes fadeIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

/* スマホの場合のみ表示 */
@media only screen and (max-width: 500px) {
    .contact_tel, .contact_form {
        display:block;
    }
    .contact_tel h4, .contact_form h4 {
        padding: 15px 0px;
    }
    .contact_tel ul li {
        display:block;
        padding:0;
    }
    .contact_tel ul li.left {
        width:100%;
        text-align:center;
        padding:0;
    }
    .contact_tel ul li.right {
        width:100%;
        text-align:center;
        padding:0;
    }

    /* お問い合わせ完了画面のチェックマーク */
    .check {
        height: 10em;
        width: 100%;
        line-height: 10em;
    }
    .check > i {
        color: #4597a1;
        font-size: 10em;

        /* アニメーションの設定 */
        transform-origin: center;
        animation-name: fadeIn;
        animation-duration: 0.2s;
        animation-iteration-count: 4;
        animation-direction: alternate;
    }
}
