/*
 *
 * RECRUIT ページ
 * LAST UPDATE : 2023/01/27
 *
 */

/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */
/* MV */
@media not all and (min-width: 1366px) {
    #pageTitle {
      aspect-ratio: 375/334;
      background: url("../img/recruit_mv_sp.jpg") no-repeat;
      background-size: cover;
    }
}
@media print,screen and (min-width : 1366px) {
    #pageTitle {
      aspect-ratio: 2/1;
      background: url("../img/recruit_mv.jpg") no-repeat;
      background-size: cover;
    }
}

/* 病院一覧 */

#r_info {
    color: #fff;
    background-color: #1c8cb8;
}

#r_info h2 {
    text-align: center;
}

#r_info .prefecture {
    margin-bottom: 80px;
}


#r_info h3 {
    display: flex;
    margin-bottom: 56px;
    align-items: center;
    font-size: 3em;
    font-weight: bold;
    white-space: nowrap;
}

#r_info h3::after {
    content: "";
    flex-grow: 1;
    display: block;
    width: 100%;
    height: 1px;
    margin-left: 24px;
    background-color: #ffffff;
}



#r_info .hospitals h4 {
    margin-bottom: 16px;
    padding: 24px 0;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    border: 1px solid #35a1cb;
    border-radius: 8px;
}



#r_info .hospitals h5 {
    display: flex;
    justify-content: space-between;
    color: #1c8cb8;
    margin: 0;
    /* font-size: 1.5em; */
    font-size: 1.25em;
    font-weight: 600;
    letter-spacing: var(--ls_50);
}

/* 募集中 */
.now_recruiting {
    display: inline-block;
    /* margin-bottom: 16px; */
    padding: 9px 16px 8px;
    color: #fff;
    font-size: 1rem;
    animation: recruiting_bg 3s infinite;
    background-color: var(--accent_color_yellow);
}
    @keyframes recruiting_bg {
        0% {background-color: var(--accent_color_yellow);}
        50% {background-color: #d8640e;}
        100% {background-color: var(--accent_color_yellow);}
    }



#r_info .details {
    color: #000;
    padding: 24px;
    border-radius: 8px;
    background-color: #fff;
}

#r_info .details a {
    color: #3f9dc3;
    text-decoration: underline;
}

#r_info .details p {
    /* margin-bottom: 1em; */
    line-height: 1.4;
}

/* 電話 */
#r_info .tel::before {
    content: url("../common/img/icon_tel.png");
    margin-right: 8px;
}

/* URL */
#r_info .url::before {
    content: url("../common/img/icon_url.png");
    margin-right: 8px;
}

/* インフォメーション */
#r_info .info {
    padding-left: 24px;
}
    #r_info .info::before {
        margin-left: -24px;
        content: url("../common/img/icon_info.png");
        margin-right: 8px;
    }


/* スマホ */
@media not all and (min-width: 1366px) {
    #r_info {
        padding: 56px 0 32px;
    }

    #r_info .hospitals {
        margin-bottom: 24px;
    }

    #r_info .ah_name {
        display: flex;
        justify-content: space-between;
    }

        #r_info .ah_name div:first-child {
            /* order: 2; */
        }

        #r_info .details h5 {
            /* margin-bottom: 40px; */
        }

        .now_recruiting {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
}

/* パソコン */
@media print,
screen and (min-width : 1366px) {
    #r_info {
        padding: 104px 0 72px;
    }

    #r_info .wrapper {
        width: 1266px;

    }


    #r_info .hospitals {
        margin-bottom: 20px;
    }


    #r_info .details {
        display: flex;
        justify-content: space-between;
    }

    #r_info .details>div {
        
        /* padding: 12px 0; */
    }


    #r_info .details>div:first-child {
        /* width: 33%; */
        margin-right: 24px;
        padding-right: 24px;
        border-right: 1px solid #1c8cb8;
    }
    #r_info .details>div:last-child {
        /* width: 67%; */
    }
    #r_info .details p {
        /* font-size: 1.25rem; */
    }
}


/* ---------------------------------------------------------------------------------------------

　   1/27追加

--------------------------------------------------------------------------------------------- */
#r_info .details>div:first-child {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: .5rem;
    align-items: center;
}
.url a {
    font-size: 14px;
    margin-left: 1rem;
}
/* スマホ */
@media not all and (min-width: 600px) {
    .url a {
        display: block;
    }
}
@media not all and (min-width: 1366px) {
    .url {
        margin-bottom: 24px;
    }
    .url a {
        margin: 0;
        word-break: break-all;
    }
    #r_info .details h5 {
        width: 85%;
        margin-bottom: 10px;
    }
}
/* パソコン */
@media print,
screen and (min-width : 1366px) {
    .url {
        display: flex;
        align-items: center;
    }
    #r_info .details>div {
        width: 50%;
    }
}