<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/* =====================
pageNav
===================== */
.pageNav{
        display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
        -webkit-flex-wrap : wrap;
        -ms-flex-wrap : wrap;
            flex-wrap : wrap;
            margin-bottom: 24px;
}
.pageNav &gt; li{
    width: 25%;
    padding: 4px;
}
@media screen and (max-width: 767px) {
    .pageNav{
        margin-bottom: 0;
    }
    .pageNav &gt; li{
    width: 50%;
    padding: 4px;
}
}
/* =====================
btn-pageNav
===================== */
.btn-pageNav{
border: 1px solid #ABD0F5;
font-weight: bold;
display: block;
padding: 0 8px;
position: relative;
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
               flex-direction : column;

        -webkit-flex-direction : column;
            -ms-flex-direction : column;
            text-align: center;
height: 80px;
}
.btn-pageNav.current{
    background: #EFF7FF;
    color: #0071E2;  
}
.hover .btn-pageNav:hover{
    background: #EFF7FF;
    color: #0071E2;
}
@media screen and (max-width: 767px) {
    .btn-pageNav{
        font-size: 1.1rem;
        height: 40px;
        line-height: 1.2;
    }
}

/* =====================
  syllabary
===================== */
.syllabary{
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
       -webkit-flex-wrap : wrap;
        -ms-flex-wrap : wrap;
            flex-wrap : wrap;
}
.syllabary &gt; li{
    position: relative;
}
.syllabary &gt; li:before{
    content:"";
    top: 50%;
    left: 0;
    transform: translate(0 , -50%);
    background: #ABD0F5;
    width: 1px;
    height: 24px;
    position: absolute;
}

.syllabary &gt; li:last-child:after{
    content:"";
    top: 50%;
    right: 0;
    transform: translate(0 , -50%);
    background: #ABD0F5;
    width: 1px;
    height: 24px;
    position: absolute;
}
@media screen and (max-width: 767px) {
    .syllabary{
            -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 1.2rem;
    padding: 0 4px;
    }
}
/* =====================
  btn-anc
===================== */
.btn-anc{
    display : -webkit-inline-box;
    display : -ms-inline-flexbox;
    display : -webkit-inline-flex;
    display : inline-flex;
    position: relative;
    padding: 8px 16px;
    padding-left: 40px;

}
.btn-anc:after {
    width: 40px;
    height: 8px;
    background: url(/img/arrow-down_blue.svg);
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0 , -50%);
    background-repeat: no-repeat;
}
.btn-anc:before {
    content: "";
    background: #0071E2;
    width: 0;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.hover .btn-anc:hover{
    background: #EFF7FF;
}
.hover .btn-anc:hover:before{
    width: 100%;
}
@media screen and (max-width: 767px) {
    .btn-anc{
        padding: 16px 8px;
        padding-left: 18px;
    }
    .btn-anc:after{
        width: 24px;
        height: 4px;
    }
}
/* =====================
  card-job job-detail
===================== */
.job-detail{
    font-size: 1.4rem;
    flex:1;
}
.job-detail &gt; li{
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 12px 0;
    /* border-bottom: 1px solid #E1E1E1; */
}
.job-detail.job-detail_S &gt; li{
padding: 4px;
}
.job-detail &gt; li:last-child{
    border-bottom: none; 
}
.job-detail &gt; li .item{
    font-weight: bold;
    font-weight: bold;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 96px;
}
.job-detail .ico{
    width: 20px;
    margin-right: 8px;
    margin-top: -2px;
}

.job-detail .cont{
    flex:1;
}
.job-detail .cont.calendar{
    font-size: 1.4rem;
}

.job-detail .workLocation{
  height: calc( 1.3em * 2 );
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
    .job-detail{
        font-size: 1.3rem;
    }
    .job-detail .workLocation{
      height: auto;
  }
  .job-detail &gt; li{
        -webkit-flex-wrap : wrap;
        -ms-flex-wrap : wrap;
            flex-wrap : wrap;
            border-bottom: none;
  }
  .job-detail &gt; li .item{
    width: 72px;
    font-size: 1.2rem;
}
.job-detail .cont{
    font-size: 1.2rem;
}
.job-detail .ico{
    width: 16px;
    margin-right: 2px;
    margin-top: 0;
}
.job-detail .cont.calendar{
    font-size: 1.2rem;
}
}

/* =====================
card-close
===================== */

.card-close{
        background: #fff;
    border: 3px solid #ABD0F5;
    border-radius: 8px;
    padding: 16px;
    display: block;
    margin: 8px;
}
.card-close .ttl{
    font-weight: bold;
    padding: 2px 0;
    margin: 8px auto;
    height: 40px;
}

.card-close .job-detail &gt; li{
padding: 4px 0;
}

.card-close .job-detail &gt; li:nth-child(2){
    height: 40px;
}
.card-close .job-detail &gt; li .item{
    font-size: 1.3rem;
    width: 70px;
}
.card-close .job-detail .ico{
    width: 16px;
    margin-right: 4px;
}
.card-close .job-detail .cont{
    font-size: 1.2rem;
    height: 40px;
}

@media screen and (max-width: 767px) {
    .card-close .ttl{
        font-size: 1.3rem;
    }
}
/* =====================
.card-close .job-detail
===================== */
.card-close .job-detail &gt; li .timeWrap{
        display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.card-close .job-detail &gt; li .timeWrap:first-child{
    margin-right: 8px;
    height: 40px;
}

.card-close-head{
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.card-close-head .job-num{
font-size: 1.1rem;
}
.card-close-head .icoList{
    width: 50%;
}
.card-close{

    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.hover .card-close:hover{
        -webkit-box-shadow: 0 4px 16px rgba(0,0,0,.2);
       -moz-box-shadow: 0 4px 16px rgba(0,0,0,.2);
            box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
/* =====================
job-num
===================== */
.job-num{
    font-size: 1.3rem;
}
.job-num .num{
    font-weight: bold;
}
@media screen and (max-width: 767px) {
.job-num{
    font-size: 1.0rem;
    line-height: 1;
}
.job-num .num{
    display: block;
    width: 85px;
}
}

/* =====================
slick
===================== */
.slick-prev, .slick-next{
    width: 32px;
    height: 32px;
}
.slick-prev {
  left: -12px;
}
.slick-next {
  right: -12px;
}

@media screen and (max-width: 767px) {
    .slick-prev, .slick-next{
        top: 50%;
    }
}

/* =====================
facilityList
===================== */
.facilityList{
        display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
        -webkit-flex-wrap : wrap;
        -ms-flex-wrap : wrap;
            flex-wrap : wrap;
}
.facilityList .pic {
    border: 1px solid #ABD0F5;
    height: 142px;
    max-width: 240px;
    margin-right: 16px;
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    /* 2022-02-07 */
    text-align: center;

}
.facilityList .pic img{
    max-width: 90%;
}
.facilityList .detail{
    flex:1;
    pointer-events:none;
}
.facilityList &gt; li{
width: 50%;
margin-bottom: 24px;
}
@media screen and (max-width: 1080px) {
    .facilityList .pic {
        width: 180px;
    }
}
@media screen and (max-width:928px) {
    .facilityList .pic {
        width: 100%;
        margin-bottom: 8px;
    }
}
@media screen and (max-width:928px) {
    .facilityList .pic {
        width: 100%;
        margin-right: 0;
    }
}
/* =====================
facilityBox
===================== */
.facilityBox{
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.facilityList &gt; li:nth-child(even) .facilityBox{
    padding-left: 16px;
}
.facilityList &gt; li:nth-child(odd) .facilityBox{
    padding-right: 16px;
}

.facilityBox .ttl{
    margin-bottom: 16px;
font-size: 1.8rem;
font-weight: bold;
}
.facilityBox .txt{
    margin-bottom: 16px;
    font-size: 1.4rem;
    pointer-events: none;
}

.facilityBox .btn-apply{
max-width: 160px;
    padding: 4px;
    font-size: 1.3rem;
}

/* 2022/02/07  マウスオン追加*/
/* .facilityBox .pic:hover {
        opacity: 0.5 ;
} */

.facilityBox :hover {

    opacity: 0.7 ;

}

.ico-wanted :hover{
    pointer-events:none;
}

.ico-wanted :hover{
    pointer-events:none;
}

@media screen and (max-width: 928px) {
.facilityBox{
                   flex-direction : column;

        -webkit-flex-direction : column;
            -ms-flex-direction : column;
}
}

@media screen and (max-width: 767px) {
.facilityList &gt; li:nth-child(even) .facilityBox{
    padding-left: 8px;
}
.facilityList &gt; li:nth-child(odd) .facilityBox{
    padding-right: 8px;
}

.facilityBox .ttl{
    margin-bottom: 8px;
font-size: 1.4rem;
font-weight: bold;
}
.facilityBox .txt{
    font-size: 1.2rem;
    margin-bottom: 8px;
}
}



/* =====================
facilityDetail
===================== */
.facilityDetail{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}
.facilityDetail .picMain{
    margin-bottom: 24px;
}

.facilityDetail .picMain img{
    width: 100%;
}

/* =====================
fd-01
===================== */
.fd-free{
    margin-bottom: 40px;
}
/* =====================
fd-01
===================== */
.fd-01 {
    margin-bottom: 40px;

    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.fd-01 .pic{
    border: 1px solid #ABD0F5;
    width: 40%;
    margin-right: 16px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    min-height: 320px;
}
.fd-01 .pic img{
    max-width: 90%;
}
.fd-01 .cont{
    flex:1;
}
.fd-01 .ttl-common{
    margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
   .fd-01 {

               flex-direction : column;

        -webkit-flex-direction : column;
            -ms-flex-direction : column;
   } 
   .fd-01 .pic{
    width: 100%;
    min-height: 1px;
    margin-bottom: 16px;
   }
}
/* =====================
.fd-01 .logoArea
===================== */
.fd-01 .logoArea{
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 16px 0;
    padding: 8px 0;
    border-top: 1px solid #ABD0F5;
    border-bottom: 1px solid #ABD0F5;

}
.fd-01 .logoArea .logo{
    max-width: 100px
}
.fd-01 .logoArea .logo img{
    width: 100%;
}
.fd-01 .logoArea .name{
padding-left: 16px;
flex: 1;
}
/* =====================
accessArea
===================== */
.accessArea{
    display:         flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    font-size: 1.4rem;
}
.accessArea .ttl{
    width: 100px;
    font-weight: bold;

    padding-right: 16px;
}
.accessArea .txt{
    flex:1;
}

/* =====================
accessArea
===================== */
.contactArea{
    padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contactArea .tbl-common &gt; li .cont{
    font-size: 1.2rem;
    text-align: center;
  }  
}

.timeWrap .cont.time {
    width: 105px;
}

@media screen and (max-width: 1100px) {
    .timeWrap .calendar {
        min-width: 220px;
    }
  }
@media screen and (max-width: 764px) {
    .timeWrap .calendar {
        min-width: 200px;
        width: 100%;
    }
  }</pre></body></html>