@charset "utf-8";

h1 {
    text-align: center;
    font-size: 30px;
    padding: 15px;
    border: 2px solid rgb(239, 125, 31);
    margin: 8px 2px;
    color: rgb(239, 125, 31);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    background-image: url(kaisyagaiyoImgs/doroneImg3.svg);
    background-repeat: no-repeat;
    background-size: 90px auto;
    background-position: 10px;
}



table {
    background-color: aliceblue;
    width: 100%;
    margin: 10px 0px;

}

tr {
    background-color: antiquewhite;
    border-bottom: 2px solid white;
}

th {
    width: 30%;
    height: 50px;
    padding: 0px 15px;
    background-color: bisque;
    vertical-align: middle;
}

td {
    height: 65px;
    padding: 0px 15px;
    vertical-align: middle;
}

/* 求人案内 */
.recruit {
    text-align: center;
}

.recruit th {
    text-align: center;
    background-color: rgb(216, 237, 255);
}

.recruit td {
    text-align: center;
    background-color: aliceblue;
}



/* バナー */

img[src*="banner.png"] {
    display: block;
    width: 70%;
    height: auto;
    margin: 20px auto 30px;
    box-shadow: 4px 4px 4px;
}

/*====================ブレイクポイント スマホ：768px以下====================*/
@media only screen and (max-width:768px) {

    /* バナー */
    img[src*="banner.png"] {
        width: 80%;
    }

}