@charset "utf-8";

.tel {
    text-align: center;
    margin: 10px 0;
    white-space: nowrap;
}

.tel-label {
    font-size: 30px; /* スマホ用にTEL.のサイズを調整 */
    font-weight: normal;
}

.tel-number {
    font-size: 54px; /* スマホ用に電話番号のサイズを調整 */
    margin-left: 5px;
    letter-spacing: 2px;
}


@media only screen and (max-width: 640px) {
    .tel {
        text-align: center;
        margin: 10px 0;
        white-space: nowrap;
    }

    .tel-label {
        font-size: 20px; /* スマホ用にTEL.のサイズを調整 */
        font-weight: normal;
    }

    .tel-number {
        font-size: 36px; /* スマホ用に電話番号のサイズを調整 */
        margin-left: 5px;
        letter-spacing: 2px;
    }
}