@charset "UTF-8";

/* ---------------------
command
--------------------- */
.page-hero {
    width: 100%;
    position: relative;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    width: calc(100% - 8vw);
    height: 100%;
    margin: 0 auto;
    border-left: solid 1px var(--c-border);
    border-right: solid 1px var(--c-border);
}

.page-title_sub {
    width: 100%;
    margin: 0;
    padding: 1rem 10vw;
    border-bottom: solid 1px var(--c-border);
    font-weight: 600;
    font-size: 1.875rem;
}

.page-read {
    width: 100%;
    margin: 0;
    padding: 1rem 10vw;
    border-bottom: solid 1px var(--c-border);
    font-weight: 600;
    font-size: 5vw;
}

.page-read .version {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.sec-title {
    color: var(--blue);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .page-read {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .page-title_sub {
        padding: 4rem 10vw;
        font-size: 3vw;
    }

    .page-read {
        font-size: 2vw;
        padding: 4rem 10vw;
    }

    .page-read .version {
        font-size: 1rem;
    }

}

@media (min-width: 1280px) {
    .sec-title {
        font-size: 1.7vw;
    }
}


/* ---------------------
feature
--------------------- */
.sec-feature {
    width: 100%;
    margin: 0 auto;
    border-bottom: solid 1px var(--c-border);
    position: relative;
}

.sec-feature::after {
    content: "";
    display: block;
    width: 100%;
    height: 3rem;
    border-top: solid 1px var(--c-border);
}

.sec-feature .head {
    width: calc(100% - 8vw - 2px);
    text-align: center;
    margin: 0 auto;
    padding: 2rem 7vw;
    background: var(--c-gry_bg);
    border-bottom: solid 1px var(--c-border);
}

.sec-feature .head .comment {
    margin: 1rem 0 0;
    line-height: 250%;
}

.sec-feature .contents {
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    background: #fff;
}

.sec-feature .contents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-feature .contents-list .contents-list-item {
    padding: 1.5rem 7vw;
    border-bottom: solid 1px var(--c-border);
}

.sec-feature .contents-list .contents-list-item:nth-last-child(1) {
    border-bottom: none;
}

.sec-feature .contents-list .contents-list-item .num {
    color: var(--blue);
}

.sec-feature .contents-list .contents-list-item .lead {
    font-size: 6.5vw;
    margin: 1rem 0;
}

.sec-feature .contents-list .contents-list-item .comment {
    line-height: 200%;
}

@media (min-width: 768px) {
    .sec-feature .head {
        text-align: left;
        width: calc(40% - 4vw);
        margin: 0 0 0 4vw;
        border-right: solid 1px var(--c-border);
        border-left: solid 1px var(--c-border);
        border-bottom: none;
    }

    .sec-feature .contents {
        width: calc(60% - 4vw);
        margin: 0;
        border-right: solid 1px var(--c-border);
    }

    .sec-feature .contents-list .contents-list-item .lead {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .sec-feature .head {
        width: calc(30% - 4vw);
        padding: 4rem 4vw;
    }

    .sec-feature .contents {
        width: calc(70% - 4vw);
    }

    .sec-feature .contents-list .contents-list-item {
        width: 50%;
        padding: 1.5rem 4vw;
        border-right: solid 1px var(--c-border);
    }

    .sec-feature .contents-list .contents-list-item:nth-child(2n) {
        border-right: none;
    }

    .sec-feature .contents-list .contents-list-item:nth-child(3) {
        border-bottom: none;
    }
}

@media (min-width: 1280px) {
    .sec-feature .contents-list .contents-list-item .lead {
        font-size: 1.9vw;
    }
}

/* ---------------------
flow
--------------------- */
.sec-flow {
    width: 100%;
    position: relative;
}

.sec-flow::before {
    content: "";
    display: block;
    width: 100%;
    height: 3rem;
    border-bottom: solid 1px var(--c-border);
}

.sec-flow .sec-title {
    border-bottom: solid 1px var(--c-border);
}

.sec-flow .sec-title span {
    display: block;
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    background: var(--c-gry_bg);
    padding: 1.5rem 7vw;
    text-align: center;
}

.sec-flow .contents {
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    padding: 1rem 7vw 7vw;
}

.flow-list {
    max-width: 350px;
    margin: 0 auto;
}

.flow-list .flow-list-item dt {
    position: relative;
    width: 25%;
}

.flow-list .flow-list-item dt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2rem;
    z-index: -1;
    height: 100%;
    width: 1px;
    border-left: solid 1px var(--blue);
}

.flow-list .flow-list-item dt.last:after {
    display: none;
}

.flow-list .flow-list-item dd {
    width: 75%;
    margin: 0;
    padding-bottom: 2rem;
}

.flow-list .flow-list-item .num {
    color: var(--blue);
}

.flow-list .flow-list-item .num span {
    display: block;
    padding: .5rem 0;
    background: #fff;
}

.flow-list .flow-list-item .title {
    font-size: 1.125rem;
    margin: .4rem 0 1rem;
}

@media (min-width: 1024px) {
    .sec-flow .contents {
        padding-top: 3rem;
    }

    .flow-list .flow-list-item .com {
        font-size: 0.875rem;
    }
}

@media (min-width: 1280px) {
    .flow-list {
        max-width: 600px;
    }

    .flow-list .flow-list-item .num {
        font-size: 1.625rem;
    }

    .flow-list .flow-list-item .title {
        font-size: 2rem;
    }
}

/* ---------------------
requirement
--------------------- */
.sec-requirement {
    width: 100%;
    position: relative;
}

.sec-requirement .sec-title {
    border-bottom: solid 1px var(--c-border);
    border-top: solid 1px var(--c-border);
}

.sec-requirement .sec-title span {
    display: block;
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    background: var(--c-gry_bg);
    padding: 1.5rem 7vw;
    text-align: center;
}

.sec-requirement .contents {
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    padding: 1rem 7vw 7vw;
}

.sec-requirement .contents .lead {
    font-size: 5vw;
}

.sec-requirement .block-btn {
    padding: 2rem 11vw 4rem;
    border-top: solid 1px var(--c-border);
}

.btn-blue {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 536px;
    background: var(--blue);
    border: solid 1px var(--blue);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    padding: 1rem 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sec-requirement .contents .lead {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {

    .sec-requirement .contents .lead,
    .sec-requirement .contents .comment {
        text-align: center;
    }

    .sec-requirement .contents .lead {
        font-size: 2rem;
        margin: 5rem 0 3rem;
    }

    .sec-requirement .block-btn {
        padding: 6rem 11vw 12rem;
    }

    .btn-blue {
        padding: 2rem;
    }
}




/* table style */
.table-style {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.table-style tr {
    display: block;
}

.table-style th,
.table-style td {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: solid 1px var(--c-border);
    font-size: 0.875rem;
}

.table-style th {
    text-align: left;
    vertical-align: baseline;
    color: var(--blue);
    background: var(--c-gry_bg);
}

@media (min-width: 768px) {
    .table-style tr {
        display: table-row;
    }

    .table-style th,
    .table-style td {
        display: table-cell;
        width: auto;
        padding: 15px;
    }

    .table-style th {
        width: 30%;
    }
}

@media (min-width: 1024px) {
    .table-style {
        margin: 4rem 0;
    }

    .table-style th,
    .table-style td {
        font-size: 1rem;
        padding: 1.5rem 2rem;
    }
}

/* ---------------------
採用情報トップ
--------------------- */
.text-right {
    text-align: right;
}

.employment-top {
    width: 100%;
    margin: 0;
    padding: 3rem 10vw;
    border-bottom: solid 1px var(--c-border);
}

.sec-idea .comment {
    line-height: 230%;
}

@media (min-width: 1280px) {
    .employment-top {
        padding: 5.5rem 10vw;
        text-align: center;
        line-height: 200%;
    }
}

/* 想い */
.sec-idea {
    border-bottom: solid 1px var(--c-border);
}

.sec-idea .inner {
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    background: var(--c-gry_bg);
}

.sec-idea .head {
    padding: 2rem 7vw;
}

.sec-idea .text-right {
    margin-bottom: 0;
}

.sec-title-sub {
    font-size: 1.25rem;
    line-height: 160%;
    font-weight: 600;
}

@media (min-width: 1024px) {

    .sec-idea .head {
        order: 2;
        width: calc(50% + 1.5rem);
        padding: 2rem 3rem 2rem 6rem;
    }

    .sec-idea .img {
        order: 1;
        width: calc(50% - 1.5rem);
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .sec-idea .img::after {
        content: "";
        position: absolute;
        top: 0;
        right: -3rem;
        width: 3rem;
        height: 100%;
        border-left: solid 1px var(--c-border);
        border-right: solid 1px var(--c-border);
    }
}

@media (min-width: 1280px) {
    .sec-idea .head {
        width: calc(50% + 3rem);
        padding: 3vw 3rem 3vw 9rem;
    }

    .sec-idea .sec-title {
        font-size: 1.25rem;
    }

    .sec-idea .sec-title-sub {
        font-size: 1.625rem;
    }

    .sec-idea .img {
        width: calc(50% - 3rem);
    }

    .sec-idea .img::after {
        right: -6rem;
        width: 6rem;
    }

}

/* 求める人財 */
.sec-desired::before,
.sec-desired::after {
    content: "";
    display: block;
    width: 100%;
    height: 3rem;
}

.sec-desired::before {
    border-bottom: solid 1px var(--c-border);
}

.sec-desired::after {
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
}

.sec-desired .sec-title,
.sec-flow-newgrad .sec-title {
    border-bottom: solid 1px var(--c-border);
}

.sec-desired .sec-title span,
.sec-flow-newgrad .sec-title span {
    display: block;
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    background: var(--c-gry_bg);
    padding: 1.5rem 7vw;
    text-align: center;
}

.sec-desired .mid {
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    padding: 2rem 7vw 1rem;
    border-bottom: solid 1px var(--c-border);
}

.sec-desired .mid .sec-title-sub {
    margin: 0;
}

.desired-grid {
    list-style: none;
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    padding: 0;
}

.desired-grid .desired-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-bottom: solid 1px var(--c-border);
}

.desired-grid .desired-item:nth-last-child(1) {
    border-bottom: none;
}

.desired-grid .desired-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    margin: auto;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    background: var(--c-gry_bg);
}

.desired-grid .desired-item .title {
    position: relative;
    margin: 0 0 1rem;
    padding: 8px 0 8px 54px;
    font-size: 1.0625rem;
    line-height: 160%;
    font-weight: 600;
}

.desired-grid .desired-item .title .num {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    width: 45px;
    aspect-ratio: 1 / 1;
    border: solid 1px var(--blue);
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    position: absolute;
    left: 0;
    top: 0;
}

.desired-grid .desired-item .list-style-indent {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: .5rem 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desired-grid .desired-item .list-style-indent li {
    padding-left: 1em;
    text-indent: -1em;
}

.desired-grid .desired-item .list-style-indent li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 2px;
    border-radius: 50%;
    background: var(--blue);
}

@media (min-width: 768px) {
    .sec-desired .mid {
        align-items: center;
        gap: 0 5%;
        padding: 3rem 7vw;
    }

    .sec-desired .mid .sec-title-sub {
        width: 25%;
    }

    .sec-desired .mid .comment {
        width: 70%;
        font-size: .875rem;
        line-height: 230%;
    }

    .desired-grid .desired-item {
        width: 50%;
        padding: 2.5rem;
        border-right: solid 1px var(--c-border);
    }

    .desired-grid .desired-item:nth-child(2n) {
        border-right: none;
    }

    .desired-grid .desired-item:nth-child(3n) {
        border-bottom: none;
    }

}

@media (min-width: 1280px) {

    .sec-desired::before,
    .sec-desired::after {
        height: 6rem;
    }

    .sec-desired .mid .sec-title-sub {
        font-size: 2.25rem;
    }

    .desired-grid .desired-item {
        padding: 4.5rem;
    }

    .desired-grid .desired-item .title {
        font-size: 1.875rem;
    }

    .desired-grid .desired-item .title .num {
        font-size: 1.25rem;
        top: 9px
    }
}

/* 募集要項 */
.bnr-guide {
    list-style: none;
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    padding: 0;
}

.bnr-guide .sec-title {
    width: 100%;
    margin-bottom: 1rem;
}

.bnr-guide .txt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    width: 100%;
    padding: 1.5rem 7vw;
    text-align: center;
}

.bnr-guide .block-link {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
    flex-direction: column;
}

.bnr-guide .block-link li {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.bnr-guide .btn {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    border: solid 1px var(--blue);
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
}

.bnr-guide .btn::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    width: 12px;
    height: 12px;
    background-image: url(../img/common/ico-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(94%) sepia(94%) saturate(0%) hue-rotate(185deg) brightness(107%) contrast(106%);
}

@media (min-width: 768px) {

    .bnr-guide .txt {
        width: calc(50% + 1.5rem);
        padding: 1.5rem 6rem 1.5rem 3rem;
    }

    .bnr-guide .img {
        width: calc(50% - 1.5rem);
    }

    .bnr-guide .img {
        position: relative;
    }

    .bnr-guide .img::after {
        content: "";
        position: absolute;
        top: 0;
        left: -3rem;
        width: 3rem;
        height: 100%;
        border-left: solid 1px var(--c-border);
        border-right: solid 1px var(--c-border);
    }
}

@media (min-width: 1280px) {
    .bnr-guide .txt {
        width: calc(50% + 3rem);
        padding: 1.5rem 9rem 1.5rem 3rem;
    }

    .bnr-guide .img {
        width: calc(50% - 3rem);
    }

    .bnr-guide .img::after {
        left: -6rem;
        width: 6rem;
    }
}

/* 採用の流れ（新卒） */
.sec-flow-newgrad::before,
.sec-flow-newgrad::after {
    content: "";
    display: block;
    width: 100%;
    height: 3rem;
}

.sec-flow-newgrad::before {
    border-bottom: solid 1px var(--c-border);
    border-top: solid 1px var(--c-border);
}

.sec-flow-newgrad::after {
    border-top: solid 1px var(--c-border);
}

.sec-flow-newgrad .flow-list {
    list-style: none;
    width: calc(100% - 8vw - 2px);
    max-width: none;
    margin: 0 auto;
    padding: 1.5rem 7vw;
    gap: 1rem 40px;
}

.sec-flow-newgrad .flow-list .flow-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
}

.sec-flow-newgrad .flow-list .flow-item .ico {
    width: 35%;
    max-width: 230px;
    position: relative;
}

.sec-flow-newgrad .flow-list .flow-item .ico::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: 1rem auto 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 12px solid var(--blue);
    border-bottom: 0;
}

.sec-flow-newgrad .flow-list .flow-item:nth-last-child(1) .ico::after {
    display: none;
}

.sec-flow-newgrad .flow-list .flow-item p {
    width: calc(60% - 1rem);
    font-size: .875rem;
    margin: 1rem 0 0;
}

.btm-bnr-guide {
    border-top: solid 1px var(--c-border);
}

.btm-bnr-guide>.flex {
    width: calc(100% - 8vw - 2px);
    margin: 0 auto;
    padding: 1.5rem 7vw;
    gap: 1rem;
}

.btm-bnr-guide .btn {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    background: #fff;
    border: solid 1px var(--blue);
    background: #fff;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    padding: 1.5rem 1rem;
}

.btm-bnr-guide .btn::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: var(--blue);
}

.btm-bnr-guide .btn::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 7px;
    width: 12px;
    height: 12px;
    background-image: url(../img/common/ico-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(94%) sepia(94%) saturate(0%) hue-rotate(185deg) brightness(107%) contrast(106%);
}

.btm-bnr-guide .btn .mid {
    font-size: 0.8125rem;
    opacity: 0.4;
    display: block;
    width: 100%;
}

@media (min-width: 768px) {

    .sec-flow-newgrad .flow-list {
        padding: 3rem 7vw;
    }

    .sec-flow-newgrad .flow-list .flow-item {
        width: calc(25% - 30px);
    }

    .sec-flow-newgrad .flow-list .flow-item .ico {
        width: 100%;
    }

    .sec-flow-newgrad .flow-list .flow-item .ico::after {
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 18px solid var(--blue);
        border-right: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        right: -30px;
        margin: auto 0;
    }

    .sec-flow-newgrad .flow-list .flow-item p {
        width: calc(100% - 30px);
        margin-top: 0;
        text-align: center;
    }

    .btm-bnr-guide>.flex {
        gap: 1rem 3rem;
    }

    .btm-bnr-guide .btn {
        width: calc(50% - 1.5rem);
    }
}

@media (min-width: 1280px) {

    .sec-flow-newgrad::before,
    .sec-flow-newgrad::after {
        height: 6rem;
    }

    .sec-flow-newgrad .flow-list {
        padding: 7vw;
    }

    .btm-bnr-guide>.flex {
        padding: 5vw 7vw;
    }

    .bnr-guide .block-link {
        gap: 27px;
    }

    .bnr-guide .sec-title {
        font-size: 1.875rem;
        margin-bottom: 47px;
    }

    .bnr-guide .btn{
        padding: 1.5rem;
    }

    .btm-bnr-guide .btn{
        padding: 3rem;
    }

    .btm-bnr-guide .btn .top {
        font-size: 1.625rem;
    }

    .btm-bnr-guide .btn .mid {
        font-size: 1.125rem;
    }
}