/* main */
.kv {
    height: 100dvh;
    background-image: url(../img/kv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.to-place {
    display: inline-block;
    color: #000;
    position: absolute;
    top: 10%;
    right: 5%;
}

.to-place p {
    font-size: 20px;
    background-color: #a6eefb;
    border-radius: 10px;
    padding: 0.8em  0.8em 0.8em 0.8em;
    box-shadow: 1px 1px 2px;
}

.to-place:hover {
    color: #0c9cb5;
}

.to-place:hover p {
    background-color: #fff;
}

h2 {
    font-size: clamp(20px,5.3vw,38px);
}

@media(max-width:900px) {
    .kv {
        height: 80dvh;
    }

    .to-place {
        top: 3%;
        right: 3%;
    }

    .to-place p {
        font-size: 12px;
    }
}

/* レコメンド */
.rec {
    margin: 60px auto;
    padding: 60px 20px;
    background-color: #0e9fb927;
}

h2 {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}


/* 最新の求人 */
.latest {
    margin-bottom: 120px;
}
@media(max-width:900px) {
    .latest {
        margin-bottom: 60px;
    }
}

/* コンタクト */
.contact {
    margin-bottom: 120px;
}
@media(max-width:900px) {
    .contact {
        margin-bottom: 60px;
    }
}

.contact-text {
    border: #0c9cb5 5px solid;
    background-color: #0c9cb55c;
    border-radius: 10px;
    width: 100%;
    padding: 18px;
    font-size: clamp(12px,3.2vw,16px);
    line-height: 250%;
}

.contact-text a {
    padding-left: 3em;
    position:relative;
    font-size: clamp(14px,3.7vw,18px);
    font-weight: bold;
}

.contact-text a::before {
    position: absolute;
    content: "";
    background-image: url(../img/mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 1em;
}

.contact-text a:hover {
    color: #0c9cb5;
}

/* エリア */s
.area {
    margin-bottom: 120px;
}
@media(max-width:900px) {
    .area {
        margin-bottom: 60px;
    }
}

.area-box {
    border: #0c9cb5 5px solid;
    background-color: #0c9cb55c;
    border-radius: 10px;
    width: 100%;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2em;
    grid-row-gap: 1em;
}

@media(max-width:760px) {
    .area-box {
        padding: 20px;
        grid-column-gap: 1em;
    }
  }

.link-place {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
}

@media(max-width:760px) {
    .link-place {
        height: 100px;
    }
}


.link-place.kanto {background-image: url("../img/kanto.jpg");}
.link-place.kansai {background-image: url("../img/kansai.jpg");}
.link-place.tokai {background-image: url("../img/tokai.jpg");}
.link-place.hokkaido {background-image: url("../img/hokkaido.jpg");}
.link-place.tohoku {background-image: url("../img/tohoku.jpg");}
.link-place.koshinetsu {background-image: url("../img/koshinetsu.jpg");}
.link-place.tyugoku {background-image: url("../img/tyugoku.jpg");}
.link-place.kyusyu {background-image: url("../img/kyusyu.jpg");}

.link-place::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #ffffff90;
}

.link-place:hover::after{
    background-color: #ffffff17;
    transition: .3s;
}

.link-place p {
    position: relative;
    z-index: 3;
    font-size: clamp(16px,4.73vw,36px);
}


.link-place:hover p {
    transition: .3s;
    color: #fff;
    text-shadow: 1px 1px 1px 1px #000;
}

