@charset 'UTF-8';
/* ----------------------------------------------
　PC設定
------------------------------------------------*/
.c-title
{
    margin-bottom: var(--m100);
}

.c-tab-list
{
    max-width: unset;

}
.p-jobs
{
    margin-bottom: var(--m100);
}
.p-jobs__section
{
    display: none;
}
.p-jobs__section.is-active
{
    display: block;
}
.p-jobs__main
{
    position: relative;
    z-index: 1;
}
.p-jobs__main-inner
{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 0;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    transform: translateY(-50%);

    justify-content: space-between;
    align-items: flex-start;
}
.p-jobs__main-image
{
    position: relative;

    width: 66.66%;
    margin-left: auto;

    aspect-ratio: 800/540;
}
.p-jobs__main-image::before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: inline-block;

    width: 100%;
    height: 100%;

    content: '';

    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, .5) 65.945%, rgba(255, 255, 255, 0) 100%);
}
.p-jobs__main-image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.p-jobs__logo
{
    width: 10%;
    max-width: 100px;
}
.p-jobs__catch
{
    font-size: var(--fs20_40);
    font-weight: bold;

    color: var(--blue06);
}
.p-jobs__sub-catch
{
    font-size: var(--fs18_30);
    font-weight: bold;

    padding-bottom: var(--m40);

    color: var(--blue06);
}
.p-jobs__box
{
    display: flex;

    margin-top: var(--m65);
    padding-bottom: var(--m60);

    border-bottom: 1px solid var(--gray01);

    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 16px 0;
}
.p-jobs__box:first-of-type
{
    margin-top: var(--m75);
}
.p-jobs__text-area
{
    width: 68.75%;
}
.p-jobs__title
{
    font-size: var(--fs18_30);
    font-weight: bold;

    margin-bottom: var(--m16_25);

    color: var(--blue06);
}
.p-jobs__list li
{
    display: flex;

    align-items: baseline;
    grid-gap: 0 12px;
}
.p-jobs__list li::before
{
    display: inline-block;

    width: 12px;

    content: '';

    background-color: var(--main-col);

    aspect-ratio: 1/1;
}
.p-jobs__list-text
{
    font-size: var(--fs14_18);
    font-weight: 500;

    width: calc(100% - 24px);
}
.p-jobs__text
{
    font-size: var(--fs14_18);
    font-weight: 500;

    margin-top: var(--m35);
}
.p-jobs__text b
{
    font-size: var(--fs16_18);
    font-weight: bold;

    display: block;
}
.p-jobs__schedule-row
{
    position: relative;

    display: flex;

    align-items: center;
    justify-content: flex-end;
    grid-gap: var(--m16);
}
.p-jobs__schedule-row:not(:first-of-type) .p-jobs__schedule-round::before
{
    position: absolute;
    top: 0;
    left: 50%;

    display: inline-block;

    width: 10px;

    content: '';
    transform: translate(-50%, -100%);

    background: url(../images/jobs/arrow.svg) bottom center/contain no-repeat;

    aspect-ratio: 10/76;
}
.p-jobs__schedule-row:not(:last-of-type)
{
    margin-bottom: var(--m16_20);
}
.p-jobs__schedule-row:nth-of-type(even) .p-jobs__schedule-dd
{
    background-color: var(--gray03);
}
.p-jobs__schedule-dt
{
    display: flex;

    width: var(--m120);

    align-items: center;
    justify-content: center;
}
.p-jobs__schedule-round
{
    position: relative;
    z-index: 1;

    width: var(--m35);

    border: 2px solid var(--main-col);
    border-radius: 100%;
    background-color: var(--gray03);

    aspect-ratio: 1/1;
}
.p-jobs__schedule-round.big
{
    display: flex;

    width: 100%;

    align-items: center;
    justify-content: center;
}
.p-jobs__schedule-time
{
    font-size: var(--fs14_18);

    position: absolute;
    top: 50%;
    left: 0;

    transform: translate(-110%, -50%);
}
.p-jobs__schedule-text
{
    font-size: var(--fs16_30);
    font-weight: bold;

    color: var(--main-col);
}
.p-jobs__schedule-dd
{
    font-size: var(--fs14_18);
    font-weight: 500;

    width: 76.8%;
    padding: var(--m30) min(3vw, 50px);

    border-radius: var(--m10);
    background-color: var(--blue03);
}
.p-jobs__image
{
    position: relative;
    z-index: 1;

    overflow: hidden;

    width: 27.5%;

    aspect-ratio: 3/2;
}
.p-jobs__image img
{
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.p-jobs__image-list
{
    display: flex;
    flex-direction: column;

    width: 27.5%;

    grid-gap: var(--m100) 0;
}
.p-jobs__image-list .p-jobs__image
{
    width: 100%;
}

/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
@media all and (max-width: 620px)
{

    .p-jobs__main-image
    {
        width: 70%;

        aspect-ratio: 1/1;
    }
    .p-jobs__text-area
    {
        width: 100%;
    }
    .p-jobs__schedule-row
    {
        margin-bottom: 30px !important;
    }
    .p-jobs__schedule-dt
    {
        width: 20%;
    }
    .p-jobs__schedule-time
    {
        top: unset;
        bottom: 0;
        left: 50%;

        padding: .1em .5em;

        transform: translate(-40%, 110%);

        background-color: var(--main-white);
    }
    .p-jobs__schedule-dd
    {
        width: calc(80% - var(--m16));
    }
    .p-jobs__image
    {
        width: 100%;
    }
    .p-jobs__image-list
    {
        flex-direction: row;

        width: 100%;

        flex-wrap: wrap;
        justify-content: space-between;
        grid-gap: 16px 0;
    }
    .p-jobs__image-list .p-jobs__image
    {
        width: 48%;
    }
    .p-jobs__image-list .p-jobs__image:nth-of-type(1)
    {
        width: 100%;
    }
}
