@charset "utf-8";

/* ===================
company
===================== */

body {
    background-image: url(../images/companybackground_sp.jpg);
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.company__list {
    padding: 50px var(--contentpadding);
}

.company__item {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}

.company__title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 7px;
}

.company__txt {
    width: 171px;
    font-size: 1.4rem;
    line-height: normal;
}

.hr {
    margin-top: 10px;
}

.tel {
    display: none;
}

pre {
    font-family: "Noto Sans JP"
}

/* company pc */
@media screen and (min-width: 769px) {
    body {
        background-image: url(../images/companybackground_pc.jpg);
    }
    
    .company__list {
        padding: 100px 230px;
    }
    
    .company__title {
        font-size: 1.6rem;
        letter-spacing: 8px;
    }
    
    .company__txt {
        width: 577px;
        font-size: 1.6rem;
    }
    
    .hr {
        margin-top: 22px;
    }

    .tel {
        display: inline-block;
    }
    
    .spbr {
        display: none;
    }
}