@charset "utf-8";

/* ==========================================
仕事を知る
========================================== */

.job-decoration01 {
    max-width: 47.3rem;
    width: 100%;
    left: -7.5rem;
    bottom: 35rem;
}

.job-decoration02 {
    max-width: 50.1rem;
    width: 100%;
    right: -17rem;
    bottom: -10.7rem;
}

.job-wrapper {
    padding: 14rem 0 22rem;
}

.job-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 0 2.5rem;
    margin: 15rem 0 0;
    position: relative;
}

.job-area:nth-child(even) {
    flex-direction: row-reverse;
    padding: 0 2.5rem 0 0;
}

.job-area:first-child {
    margin: 0 auto;
}

.job-img-block {
    max-width: 41.3rem;
    width: 35.14%;
    position: relative;
}

.job-text-block {
    max-width: 60rem;
    width: 51.06%;
}

.job-img-block:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #FDE4DB;
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transform: rotate(-7deg);
}

.job-img {
    aspect-ratio: 15 / 19;
    box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
    position: relative;
}

.job-category-box {
    max-width: 21rem;
    width: 100%;
    height: 21rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF2ED;
    border: solid 0.3rem #EACABE;
    border-radius: 50%;
    box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
    padding: 1rem;
    text-align: center;
}

.job-category-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--c-secondary);
}

.job-category-text {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.45em;
    margin: 1rem 0 0;
}

.job-category-text-small {
    line-height: 1.13em;
}

.job-title {
    margin: 4rem 0 0;
}

.job-text {
    margin: 4rem 0 0;
}

/* ==========================================
スケジュール
========================================== */

.day-frame {
    padding: 1rem;
    border-radius: 1rem;
    background: url(../../../../uploads/job_day_bg.jpg) no-repeat center / cover;
}

.day-frame-inner {
    border: solid 0.1rem var(--c-secondary);
    border-radius: 1rem;
    padding: 11rem 1.5rem 12rem;
}

.day-btn-block {
    max-width: 95.3rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3.5rem;
    margin: 9rem auto 0;
}

.day-btn-nurse:before {
    background-image: url(../../../../uploads/job_day_btn_icon01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 3rem;
}

.day-btn-care:before {
    background-image: url(../../../../uploads/job_day_btn_icon02.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2rem;
}

.day-btn-manager:before {
    background-image: url(../../../../uploads/job_day_btn_icon03.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 3.2rem;
}

/* ----- モーダル ----- */

.modal {
    display: none;
}

.modaal-container {
    max-width: 179rem;
    width: 100%;
    background: var(--c-white);
    padding: 14rem 0 19.5rem;
    position: relative;
}

.modaal-wrapper .modaal-close {
    background: var(--c-primary);
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 9999999999999;
}

.modaal-content {
    max-width: 123rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.modaal-wrapper .modaal-close:hover {
    opacity: 0.65;
}

.modaal-wrapper .modaal-close:hover:before, .modaal-wrapper .modaal-close:hover:after {
    background: var(--c-white);
}

.modal-header {
    max-width: 76.8rem;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: url(../../../../uploads/job_day_bg.jpg) no-repeat center / cover;
    margin: 0 auto;
}

.modal-header-inner {
    border: solid 0.1rem var(--c-secondary);
    border-radius: 1rem;
    padding: 4rem 1.5rem 3.5rem;
    text-align: center;
}

.modal-header-sub-title {
    max-width: 52rem;
    width: 100%;
    background: var(--c-white);
    color: var(--c-secondary);
    border-radius: 10rem;
    padding: 0.2rem 1.5rem;
    margin: 1.5rem auto 0;
}

.modal-body {
    margin: 10rem 0 0;
}

.modaal-content-container {
    padding: 0;
}

.flow-area {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    position: relative;
}

.flow-block {
    width: 50%;
}

.flow-time {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.44em;
    padding: 0 2.5rem 1.2rem;
    position: relative;
}

.flow-time:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
}

.flow-time:after {
    content: "";
    position: absolute;
    bottom: -1.2rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    z-index: 5;
}

.flow-text {
    font-weight: bold;
    padding: 0 2.5rem;
    margin: 1.2rem 0 0;
}

.flow-block:nth-child(odd) {
    margin-right: auto;
}

.flow-block:nth-child(odd) .flow-time {
    color: var(--c-secondary);
}

.flow-block:nth-child(odd) .flow-time:before, .flow-block:nth-child(odd) .flow-time:after {
    background: var(--c-secondary);
}

.flow-block:nth-child(odd) .flow-time:after {
    right: -1.2rem;
}

.flow-block:nth-child(even) {
    margin-left: auto;
}

.flow-block:nth-child(even) .flow-time {
    color: var(--c-primary);
}

.flow-block:nth-child(even) .flow-time:before, .flow-block:nth-child(even) .flow-time:after {
    background: var(--c-primary);
}

.flow-block:nth-child(even) .flow-time:after {
    left: -1.2rem;
}

.flow-area:before {
    content: "";
    display: block;
    width: 0.1rem;
    height: 100%;
    background-image: linear-gradient(to top, var(--c-gray), var(--c-gray) 6px, transparent 6px, transparent 12px);
    background-size: 0.1rem 1.2rem;
    background-repeat: repeat-y;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.modal-close-btn {
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    margin: 5rem auto 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

    /* ==========================================
    仕事を知る
    ========================================== */

    .job-wrapper {
        padding: 8rem 0 10rem;
    }

    .job-decoration01 {
        max-width: 29.5rem;
        left: -4rem;
        bottom: 20rem;
    }
    
    .job-decoration02 {
        max-width: 28rem;
        right: -9rem;
        bottom: -5.3rem;
    }

    .job-category-box {
        max-width: 18rem;
        height: 18rem;
    }
    
    .job-category-number {
        font-size: 2rem;
    }
    
    .job-category-text {
        font-size: 2.8rem;
    }

    .job-category-text-small {
        font-size: 2.4rem;
    }
    
    .job-text {
        margin: 3rem 0 0;
    }
    
    .job-area {
        margin: 10rem 0 0;
    }

    /* ==========================================
    スケジュール
    ========================================== */

    .day-frame-inner {
        padding: 8rem 1.5rem;
    }
    
    .day-btn-block {
        gap: 2.5rem;
        margin: 6rem 0 0;
    }

    .day-btn-nurse:before {
        background-size: 2rem;
    }
    
    .day-btn-care:before {
        background-size: 1.5rem;
    }
    
    .day-btn-manager:before {
        background-size: 2rem;
    }

    /* ----- モーダル ----- */

    .modaal-container {
        padding: 8rem 0 10rem;
    }
    
    .modal-header-inner {
        padding: 3rem 1.5rem;
    }
    
    .modal-header-sub-title {
        margin: 1rem auto 0;
    }
    
    .modal-body {
        margin: 8rem 0 0;
    }
    
    .flow-area {
        gap: 6rem;
    }
    
    .flow-time {
        padding: 0 2rem 1rem;
    }
    
    .flow-time:after {
        width: 2rem;
        height: 2rem;
        bottom: -1rem;
    }

    .flow-time {
        font-size: 2.6rem;
    }
    
    .flow-block:nth-child(odd) .flow-time:after {
        right: -1rem;
    }
    
    .flow-block:nth-child(even) .flow-time:after {
        left: -1rem;
    }
    
    .modal-close-btn {
        margin: 3rem auto 0;
    }
    
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

    /* ==========================================
    仕事を知る
    ========================================== */

    .job-area {
        max-width: 59rem;
        width: 100%;
        display: block;
        padding: 1.5rem 1.5rem 2rem;
        margin: 10rem auto 0;
    }

    .job-area:nth-child(even) {
        padding: 0;
    }
    
    .job-img-block {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .job-text-block {
        max-width: 100%;
        width: 100%;
        margin: 6rem auto 0;
    }
    
    .job-category-box {
        margin: -16rem 0 0 auto;
    }

    .job-category-box {
        max-width: 16rem;
        height: 16rem;
        position: absolute;
        top: -2rem;
        right: -1rem;
        margin: auto;
    }
    
    .job-category-text {
        font-size: 2.4rem;
        margin: 0.5rem 0 0;
    }
    
    .job-category-text-small {
        font-size: 2rem;
    }

    /* ==========================================
    スケジュール
    ========================================== */

    .day-btn-block {
        grid-template-columns: repeat(1,1fr);
        gap: 1.5rem;
    }
    
    .day-btn {
        margin: 0 auto;
    }

    .day-btn br {
        display: none;
    }

    /* ----- モーダル ----- */
    
    .flow-area:before {
        left: 2rem;
        right: auto;
    }
    
    .flow-block {
        width: calc(100% - 2.1rem);
    }
    
    .flow-block:nth-child(odd) {
        margin-right: 0;
        margin-left: auto;
    }
    
    .flow-block:nth-child(odd) .flow-time:after {
        right: auto;
        left: -1rem;
    }

    .flow-time {
        font-size: 2.2rem;
    }
    
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

    .job-category-number {
        font-size: 1.4rem;
    }
    
    .job-category-text {
        font-size: 2rem;
    }
    
    .job-category-box {
        max-width: 12.4rem;
        height: 12.4rem;
        padding: 0;
    }
    
    .job-category-text-small {
        font-size: 1.8rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */