@charset "UTF-8";

/* ------------------------------- 
職種紹介一覧
------------------------------- */
/* ナビボタン */
.works-list {
    gap: 15px 10px;
    padding: 0;
    margin: 40px 0;
    list-style: none;
}

.works-list-item {
    width: calc(50% - 5px);
}

.works-list-item .btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 16px;
    border: solid 1px #D9D9D9;
    text-decoration: none;
    color: var(--c-black);
    font-size: 14px;
    font-weight: 500;
}

.works-list-item .btn span {
    position: relative;
    padding-left: 12px;
}

.works-list-item .btn span::before {
    content: "●";
    font-size: 9px;
    color: var(--c-green);
    position: absolute;
    top: 5px;
    left: 0;
    transition: all 0.3s ease;
}

.works-list-item .btn:hover,
.works-list-item .btn:hover span::before {
    color: #fff;
}

.works-list-item .btn:hover {
    background: var(--c-green);
}

@media (min-width: 768px) {
    .works-list-item {
        width: calc(33.333% - 6.666px);
    }
}

@media (min-width: 1280px) {
    .works-list {
        gap: 20px;
        margin: 80px 0;
    }

    .works-list-item {
        width: auto;
    }

    .works-list-item .btn {
        padding: 20px 16px;
    }
}


/* 一覧 */
.works-grid {
    align-items: flex-start;
}

.works-grid-item {
    display: block;
    margin-bottom: 60px;
}

.works-grid-item .img,
.works-grid-item .txt {
    width: 100%;
}

.works-grid-item .img {
    position: static;
    height: auto;
}

.works-grid-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-grid-item .txt {
    padding: 20px 0;
    border-bottom: solid 1px #D9D9D9;
}

.works-grid-item .title {
    line-height: 1.5;
    margin-bottom: 30px;
}

.works-grid-item .title .en,
.works-grid-item .title .jp {
    display: block;
    margin: 0;
}

.works-grid-item .title .en {
    font-size: 14px;
    font-style: italic;
    font-weight: 200;
    color: var(--c-green);
    margin-bottom: 10px;
}

.works-grid-item .title .jp {
    font-size: 24px;
    font-weight: 400;
}

.works-grid-item .btn {
    display: block;
    width: 40px;
    height: 40px;
    margin: 30px 0 0 auto;
    position: relative;
}

.works-grid-item .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: solid 1px #000;
    border-radius: 50%;
    background-image: url(../img/common/ico-arrow-top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
    filter: invert(56%) sepia(27%) saturate(687%) hue-rotate(115deg) brightness(93%) contrast(91%);
    transform: rotate(90deg);
}


@media (min-width: 769px) {
    .works-grid-item {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0 120px;
    }

    .works-grid-item .img {
        width: 50%;
        height: 100vh;
    }

    .works-grid-item .txt {
        padding: 60px 0;
        width: calc(50% - 120px);
    }

    .works-grid-item .title {
        margin-bottom: 60px;
    }

    .works-grid-item .btn {
        width: 50px;
        height: 50px;
        margin: 140px 0 0 auto;
    }
}

/* ------------------------------- 
職種紹介詳細
------------------------------- */
/* 内容 */
.sec-works-detail .hero {
    position: relative;
    padding-bottom: 60px;
}

.sec-works-detail .hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 80%;
    background: #F9F9F9;
}

.sec-works-detail .info {
    align-items: baseline;
    gap: 20px 82px;
    margin-top: 80px;
}

.sec-works-detail .info .txt {
    width: 100%;
}

.sec-works-detail .info .catch {
    font-size: clamp(20px, 3.8vw, 26px);
    font-weight: 500;
    margin: 0 0 16px;
}

.sec-works-detail .info .desc {
    margin: 0;
}

.sec-works-detail .info .cap {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    border: solid 1px var(--c-green);
}

.sec-works-detail .info .cap .title {
    text-align: center;
    font-weight: 500;
    color: var(--c-green);
    border-bottom: dotted 1px var(--c-green);
    padding-bottom: 10px;
}

.sec-works-detail .info .cap .list {
    justify-content: center;
    gap: 10px 0;
    list-style: none;
    padding: 0 2rem 20px;
    margin: 0;
}

.sec-works-detail .info .cap .list .list-item {
    position: relative;
    padding-left: 14px;
    width: 100%;
}

.sec-works-detail .info .cap .list .list-item::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: var(--c-green);
    position: absolute;
    top: 11px;
    left: 0;
}

@media (min-width: 768px) {
    .sec-works-detail .hero {
        padding-bottom: 108px;
    }

    .sec-works-detail .info .cap .list {
        padding: 0 4rem 20px;
    }
}

@media (min-width: 1024px) {
    .sec-works-detail .info .txt {
        width: 55%;
    }

    .sec-works-detail .info .cap {
        width: calc(45% - 82px);
    }
}

/* スタッフボイスバナー */
.bnr-staff {
    text-align: center;
    display: block;
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background: var(--c-green);
}

.bnr-staff .txt,
.bnr-staff .btn {
    position: relative;
    z-index: 2;
}

.bnr-staff .txt {
    color: #fff;
    text-align: center;
}

.bnr-staff .txt .en,
.bnr-staff .txt .jp {
    display: block;
}

.bnr-staff .txt .en {
    font-size: clamp(30px, 5vw, 54px);
    font-style: italic;
    font-weight: 200;
}

.bnr-staff .txt .jp {
    font-size: clamp(14px, 3.8vw, 16px);
    font-weight: 500;
}

.bnr-staff .btn {
    margin-bottom: 10px;
    padding: 11px 70px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: var(--c-green);
    border-radius: 100px;
    border: solid 1px #fff;
    overflow: hidden;
}

.bnr-staff .btn span {
    position: relative;
    z-index: 1;
}

.bnr-staff .btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--c-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

.bnr-staff:hover .btn::before {
    transform: scaleX(1);
    transform-origin: left;
}

.bnr-staff .btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    width: 17px;
    height: 8px;
    margin: auto 0;
    background-image: url(../img/common/ico-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(86deg) brightness(104%) contrast(101%);
}

.bnr-staff .img {
    width: 100%;
}

.bnr-staff .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.bnr-staff:hover .img img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .bnr-staff {
        text-align: left;
        border-left: solid 10px var(--c-green);
        margin: 104px 0;
    }

    .bnr-staff::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
    }

    .bnr-staff .txt,
    .bnr-staff .btn {
        position: absolute;
        z-index: 2;
    }

    .bnr-staff .txt {
        top: 50%;
        left: 5vw;
        margin: 0;
        transform: translate(0, -50%);
        text-align: left;
    }

    .bnr-staff .btn {
        padding: 33px;
        top: 50%;
        right: 3vw;
        margin-bottom: 0;
        transform: translate(0, -50%);
        border: none;
    }

    .bnr-staff .btn span {
        display: none;
    }
}

@media (min-width: 1024px) {
    .bnr-staff .btn {
        padding: 11px 70px;
    }

    .bnr-staff .btn span {
        display: block;
    }
}


/* 流れ */
.sec-flow {
    padding: 60px 0;
    background: url(../img/works/flow-bg.jpg) no-repeat center;
    background-size: cover;
}

.flow-inner {
    text-align: center;
    max-width: 816px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #fff;
    clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
}

.flow-title {
    margin: 0 0 10px;
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 400;
}

.flow-cate {
    display: inline-block;
    font-size: clamp(14px, 3.8vw, 16px);
    font-weight: 500;
    color: var(--c-green);
    border: solid 1px var(--c-green);
    padding: 2px 12px;
}

.flow-list {
    gap: 10px 0;
    list-style: none;
    padding: 40px 0 0;
    margin: 40px 0 0;
    border-top: dotted 1px var(--c-green);
}

.flow-list-item {
    justify-content: center;
    gap: 10px;
    padding-bottom: 30px;
    position: relative;
}

.flow-list-num {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    font-size: 30px;
    font-weight: 200;
    line-height: 1;
    width: 80px;
    height: 80px;
    background: url(../img/works/flow-ico.png) no-repeat center;
    background-size: contain;
    color: #fff;
}

.flow-list-num::before {
    content: "step";
    width: 100%;
    display: block;
    font-size: 12px;
}

.flow-list-txt {
    text-align: left;
}

.flow-list-txt .title {
    font-size: clamp(18px, 3.8vw, 20px);
    font-weight: 500;
    text-align: center;
    color: var(--c-green);
    margin: 0 0 10px;
}

.flow-list-txt .com {
    margin: 0;
}

@media (min-width: 768px) {
    .flow-inner {
        padding: 60px;
    }

    .flow-list-item {
        justify-content: flex-start;
        gap: 0 43px;
        padding-bottom: 70px;
    }

    .flow-list-item::after {
        content: "";
        position: absolute;
        left: 38px;
        bottom: 0;
        width: 3px;
        border-radius: 3px;
        background: #D9D9D9;
        height: calc(100% - 90px);
    }

    .flow-list-item:nth-last-child(1) {
        padding-bottom: 0;
    }

    .flow-list-item:nth-last-child(1)::after {
        display: none;
    }

    .flow-list-txt {
        width: calc(100% - 123px);
    }

    .flow-list-txt .title {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .sec-flow {
        padding: 130px 0;
    }

    .flow-inner {
        padding: 60px 100px 100px;
    }

    .flow-list-item::after {
        left: 70px;
        height: calc(100% - 150px);
    }

    .flow-list-num {
        font-size: 50px;
        width: 140px;
        height: 140px;
    }

    .flow-list-num::before {
        font-size: 18px;
    }

    .flow-list-txt {
        width: calc(100% - 183px);
    }
}


/* ボタン群 */
.info-btn-grid {
    gap: 23px;
    list-style: none;
    padding: 0;
    margin: 100px 0;
}

.btn-grid-item {
    width: 100%;
}

.btn-grid-item .btn {
    display: block;
    width: 100%;
    height: 100%;
    font-size: clamp(14px, 3.8vw, 18px);
    font-weight: 500;
    text-decoration: none;
    color: var(--c-black);
    background: #fff;
    border: solid 1px var(--c-green);
    padding: 20px 70px 20px 30px;
    position: relative;
    overflow: hidden;
}

.btn-grid-item .btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto 0;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--c-green);
}

.btn-grid-item .btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto 0;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    background-image: url(../img/common/ico-arrow-top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
    filter: invert(99%) sepia(6%) saturate(426%) hue-rotate(268deg) brightness(117%) contrast(100%);
    transform: rotate(90deg);
}

.works-btn-grid {
    list-style: none;
    padding: 0;
    margin-bottom: 100px;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
}

.works-btn-grid .works-btn-grid-item {
    width: 100%;
    text-align: center;
    order: 3;
}

.works-btn-grid .works-btn-grid-item.prev {
    order: 1;
}

.works-btn-grid .works-btn-grid-item.next {
    order: 2;
}

.works-btn-grid .works-btn-grid-item .btn {
    text-decoration: none;
    color: var(--c-black);
    position: relative;
}

.works-btn-grid .works-btn-grid-item .btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 57px;
    height: 9px;
    background-image: url(../img/works/ico-yajirushi.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.works-btn-grid .works-btn-grid-item.prev .btn {
    padding-left: 60px;
}

.works-btn-grid .works-btn-grid-item.prev .btn::before {
    left: 0;
    transform: scale(-1, 1);
}

.works-btn-grid .works-btn-grid-item.next .btn {
    padding-right: 60px;
}

.works-btn-grid .works-btn-grid-item.next .btn::before {
    right: 0;
}

@media (min-width: 768px) {
    .btn-grid-item {
        width: calc(33.333% - 15.332px);
    }

    .btn-grid-item .btn {
        padding: 38px 70px 38px 30px;
    }

    .works-btn-grid {
        gap: 0;
    }

    .works-btn-grid .works-btn-grid-item {
        width: 33.333%;
        order: 2;
    }

    .works-btn-grid .works-btn-grid-item.prev {
        text-align: left;
        order: 1;
    }

    .works-btn-grid .works-btn-grid-item.next {
        text-align: right;
        order: 3;
    }
}