/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.tb { display: none !important;}
.sp { display: none !important; }
/* タブレットで見たときは"tb"のclassがついた画像が表示される */
@media only screen and (max-width: 1025px) {
    .pc { display: none !important; }
    .sp { display: none !important; }
    .tb { display: block !important;}
    }
    @media only screen and (max-width: 1025px) {
        img { max-width: 100%; }
        }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
.tb { display: none !important;}
}
@media only screen and (max-width: 750px) {
   img { max-width: 100%; }
   }
.pc {
    position: relative;
}
.pcimg {
    margin-top: 2%;
}
.pcLINE {
    position: absolute;
    top: 10%;
    right: 10px;
    width: 3.8%;
    position: fixed;
}
.pcrecruit {
    position: absolute;
    top: 45%;
    right: 10px;
    width: 3.8%;
    position: fixed;
}
.pcLINEcontact {
    width: 70%;
    height: 20%;
    display: block;
    margin: auto;
}
.pccompany {
    width: 100%;
    height: 30%;
    padding-top: 0.3%;
    display: block;
    margin: auto;
}
.tb {
    position: relative;
}
.tbimg {
    margin-top: 2%;
}
.tbLINE {
    position: absolute;
    top: 10%;
    right: 10px;
    width: 5%;
    position: fixed;
}
.tbrecruit {
    position: absolute;
    top: 27%;
    right: 10px;
    width: 5%;
    position: fixed;
}
.tbLINEcontact {
    width: 86%;
    height: 20%;
    display: block;
    margin: auto;
}
.tbcompany {
    width: 100%;
    height: 100%;
    padding-top: 1%;
    display: block;
    margin: auto;
}
.sp {
    position: relative;
}
.spimg {
    margin-top: 2%;
}
.spLINE {
    position: absolute;
    top: 7%;
    right: 10px;
    width: 9%;
    position: fixed;
}
.sprecruit {
    position: absolute;
    top: 29%;
    right: 10px;
    width: 9%;
    position: fixed;
}
.spLINEcontact {
    width: 86%;
    height: 20%;
    display: block;
    margin: auto;
}
.spbcompany {
    width: 100%;
    height: 100%;
    padding-top: 1%;
    display: block;
    margin: auto;
}
