@charset "UTF-8";

.newgrad .sub-block {
    padding: 60px 0;
}

.newgrad .sub-block:last-child {
    padding-bottom: 120px;
}

.num-list01 {
    padding: 20px 20px 0;
}

.num-list01 li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.num-list01 li:last-child {
    margin-bottom: 0;
}

.num-list01 .num-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-family: var(--en-font);
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}

.num-list01 .text {
    width: calc(100% - 70px);
    padding: 5px 0 0;
}

.num-list01 .text .title {
    color: var(--main-color);
    font-size: min(4vw, 1.4rem);
    padding-bottom: 5px;
}

.num-list02 {
    padding: 20px 0 0;
}

.num-list02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.num-list02 li {
    width: 31.33%;
    background: #F2F6F6;
    padding: 20px;
}

.num-list02 .num-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-family: var(--en-font);
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    margin: 0 auto 10px;
}

.num-list02 .text {
    padding: 5px 0 0;
    text-align: center;
}

.num-list02 .text .title {
    color: var(--main-color);
    font-size: min(1.2vw, 1.4rem);
    padding-bottom: 15px;
    text-align: center;

}

.num-list02 .text p:not([class]) {
    font-size: 0.9rem;
    line-height: 1.6em;
}

.job-button {
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    margin-top: 20px;
    transition: all .4s;
    position: relative;
}

.job-button:last-child {
    margin-bottom: 0;
}

.job-button a {
    padding: 30px;
}

.job-button .button-title {
    color: #2986B2;
    font-size: min(4vw, 1.4rem);

}

.job-button .category-list {
    display: flex;
    margin: 10px 0 0;
}

.job-button .category-list>p {
    align-items: center;
    display: inline-block;
    background: #98B3B9;
    padding: 0 10px;
    color: #FFF;
    line-height: 1.6em;
}

.job-button .category-list ul {
    display: inline-block;
    margin-left: 8px;
    line-height: 1.6em;
}

.job-button .category-list ul li {
    display: inline-block;
    margin: 0 2px;
    border: 1px solid #98B3B9;
    background: #F2F6F6;
    padding: 0 10px;
    position: relative;
    line-height: 1.6em;
}

.job-button .text-more {
    font-size: 0.9rem;
    color: var(--main-color);
}

.job-button::after {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/common_img/arrow-green.svg');
    width: 12px;
    height: 12px;
    right: 10px;
    bottom: 10px;
}

@media (hover: hover) {
    .job-button:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}



.grd-button {
    width: 80%;
    max-width: 550px;
    padding: 25px 0;
    background-size: 250% auto;
    background-image: linear-gradient(135deg, rgba(7, 100, 128, 1)0%, rgba(75, 190, 141, 1) 40%, rgba(75, 190, 141, 1) 60%, rgba(7, 100, 128, 1) 100%);
    background-position: center right;
    border: none;
    position: relative;
    margin: 70px auto 0;
    color: #FFF;
    font-size: 16px;
    line-height: 1.4em;
    transition: all .5s;
    cursor: pointer;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.grd-button p {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-size: 20px;
}

.grd-button p:before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/common_img/window-white.svg");
    width: 10px;
    height: 10px;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}



@media (hover: hover) {
    .grd-button:hover {
        background-position: center left;
    }
}

.section-title {
    color: var(--main-color);
    display: block;
}



/* 全体コンテナ */
.flow {
    margin: 40px auto 0;
}


.flow-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 25px;
    position: relative;
}

.flow-item:last-child {
    margin-bottom: 0;
}

.flow-num {
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--en-font);
    font-size: 24px;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    flex-shrink: 0;
}

.flow-text {
    background-color: #F2F6F6;
    flex-grow: 1;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    font-size: min(4vw, 1.2rem);
}


.flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 15px;
    width: 24px;
    height: 13px;
    background-image: url('../img/common_img/flow-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
}



/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .newgrad .sub-block {
        padding: 30px 0;
    }

    .newgrad .sub-block:last-child {
        padding-bottom: 80px;
    }

    .num-list01 {
        padding: 10px 10px 0;
    }

    .num-list01 .num-box {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        font-family: var(--en-font);
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    }

    .num-list01 .text {
        width: calc(100% - 46px);
        padding: 5px 0 0;
    }

    .num-list01 .text .title {
        color: var(--main-color);
        font-size: min(5.5vw, 1.2rem);
        padding-bottom: 0;
    }


    .num-list02 {
        padding: 20px 0 0;
    }

    .num-list02 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .num-list02 li {
        width: 100%;
        background: #F2F6F6;
        padding: 20px;
        margin-bottom: 10px;
    }

    .num-list02 .num-box {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        font-family: var(--en-font);
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        margin: 0 auto 10px;
    }

    .num-list02 .text {
        padding: 5px 0 0;
        text-align: center;
    }

    .num-list02 .text .title {
        color: var(--main-color);
        font-size: min(5vw, 1.2rem);
        padding-bottom: 10px;
        text-align: center;

    }

    .num-list02 .text p:not([class]) {
        font-size: 0.85rem;
        line-height: 1.6em;
    }

    .job-button {
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        margin-top: 15px;
        transition: all .4s;
        position: relative;
    }

    .job-button:last-child {
        margin-bottom: 0;
    }

    .job-button a {
        padding: 12px;
    }

    .job-button .button-title {
        color: #2986B2;
        font-size: min(4.5vw, 1.2rem);

    }

    .job-button .category-list {
        display: block;
        margin: 4px 0 0;
    }

    .job-button .category-list>p {
        align-items: center;
        display: inline-block;
        background: #98B3B9;
        padding: 0 10px;
        color: #FFF;
        font-size: min(3.2vw, 0.9rem);
        line-height: 1.6em;
    }

    .job-button .category-list ul {
        width: 100%;
        display: block;
        margin-left: 0;
        line-height: 1.2em;
    }

    .job-button .category-list ul li {
        display: inline-block;
        margin: 0 2px 5px 0;
        border: 1px solid #98B3B9;
        background: #F2F6F6;
        padding: 0 10px;
        position: relative;
        line-height: 1.6em;
        font-size: min(3.2vw, 0.9rem);
    }

    .job-button .text-more {
        font-size: 0.7rem;
        color: var(--main-color);
    }

    .job-button::after {
        content: "";
        display: block;
        position: absolute;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url('../img/common_img/arrow-green.svg');
        width: 12px;
        height: 12px;
        right: 10px;
        bottom: 10px;
    }

    .flow {
        margin: 40px auto 0;
    }

    .flow-item {
        display: flex;
        align-items: stretch;
        margin-bottom: 25px;
        position: relative;
    }

    .flow-item:last-child {
        margin-bottom: 0;
    }

    .flow-num {
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-family: var(--en-font);
        font-size: 16px;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        flex-shrink: 0;
    }

    .flow-text {
        background-color: #F2F6F6;
        flex-grow: 1;
        padding: 6px 10px;
        display: flex;
        align-items: center;
        line-height: 1.6em;
        font-size: min(4vw, 1rem);
    }


    .flow-item:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 5px;
        width: 24px;
        height: 13px;
        background-image: url('../img/common_img/flow-arrow.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        z-index: 1;
    }

}



.faq .sub-block,
.event .sub-block {
    padding: 60px 0;
}

.event .sub-block:last-child,
.faq .sub-block:last-child {
    padding-bottom: 120px;
}

.faq-list {
    margin: 30px auto 0;
}

.faq-item-q,
.faq-item-a {
    display: flex;
    align-items: stretch;
    margin: 0;
    width: 100%;
}

.faq-item-q {
    background-color: #F2F6F6;
}

.faq-item-a {
    margin-bottom: 20px;
}

.faq-item-a:last-of-type {
    margin-bottom: 0;
}

.faq-label {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    font-weight: 500;
    line-height: 50px;
    font-size: 20px;
    font-family: var(--en-font);
}

.faq-item-q .faq-label {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    color: #fff;
}

.faq-item-a .faq-label {
    background-color: #000;
    color: #fff;
}

.faq-text {
    width: 100%;
    padding: 12px 20px;
    line-height: 1.6;
}

.faq-item-q .faq-text {
    color: #008b8b;
}

.faq-item-a .faq-text a {
    color: var(--main-color);
    text-decoration: underline;
}

@media (hover: hover) {
    .faq-item-a .faq-text a:hover {
        text-decoration: none;
    }
}

@media screen and (max-width: 768px) {

    .event .sub-block,
    .faq .sub-block {
        padding: 30px 0;
    }

    .event .sub-block:last-child,
    .faq .sub-block:last-child {
        padding-bottom: 80px;
    }
}


.event .main-text {
    font-size: 48px;
    text-align: center;
    line-height: 1.4em;
    padding-bottom: 30px;
}

.num-list03 {
    padding: 20px 0 0;
}

.num-list03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.num-list03 li {
    width: 31.33%;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    padding: 20px;
}

.num-list03 .num-box {
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 30px;
    font-family: var(--en-font);
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    margin: 0 auto 10px;
    text-align: center;
    padding: 9px 0 0;
}

.num-list03 .num-box span {
    font-size: 12px;
    font-weight: 600;
    line-height: 0.6em;
    display: block;
    position: relative;
}

.num-list03 .text {
    padding: 5px 0 0;
    text-align: center;
}

.num-list03 .text .point-text {
    color: var(--main-color);
    font-size: min(2vw, 1.3rem);
    padding-bottom: 15px;
    text-align: center;
}

.event .centered-text {
    text-align: center;
    padding: 40px 0 0;
}

.event .lead-text {
    font-size: min(2.2vw, 1.4rem);
    padding: 10px 0;
}

.event .lead-text~p {
    padding-bottom: 20px;
}



@media screen and (max-width: 768px) {
    .event .main-text {
        font-size: 24px;
        text-align: center;
        line-height: 1.4em;
        padding-bottom: 10px;
    }

    .num-list03 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .num-list03 li {
        width: 100%;
        margin-bottom: 10px;
    }

    .num-list03 .num-box {
        color: #fff;
    }

    .num-list03 .text .point-text {
        color: var(--main-color);
        font-size: min(5vw, 1.2rem);
        padding-bottom: 15px;
        text-align: center;
    }

    .event .lead-text {
        font-size: min(4.4vw, 1.1rem);
        padding: 10px 0;
    }
}


.recruit-content>.content-wrap {
    padding: 60px 0;
}

.recruit-content .sub-block {
    padding: 0 0 80px;
}

.recruit-content .diversity-inside-block {
    padding-bottom: 80px;
}

.recruit-content .sub-block:last-of-type {
    padding: 0 0 60px;
}

.recruit-content .diversity-inside-block:last-of-type {
    padding: 0 0 0;
}

.recruit-content .centered-text {
    text-align: center;
    padding: 0 0 50px;
}


/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .recruit-content>.content-wrap {
        padding: 30px 0;
    }

    .recruit-content .sub-block {
        padding: 0 0 40px;
    }

    .recruit-content .diversity-inside-block {
        padding: 0 0 40px;
    }

    .recruit-content .sub-block:last-of-type,
    .recruit-content .diversity-inside-block:last-of-type {
        padding: 0 0 0;
    }
}



.recruit-content .interview-index {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 2%;
}

.recruit-content .grid-item {
    box-sizing: border-box;
    width: calc((100% - 6%) / 4);
    margin-bottom: 2%;
}

.interview-index li .txt {
    padding: 10px 0 0;
}

.interview-index li .txt .name-label {
    display: flex;
    align-items: center;
}

.interview-index li .txt .name-label span:nth-child(1) {
    font-size: 1.2rem;
}

.interview-index li .txt .name-label span:nth-child(2) {
    color: var(--main-color);
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
}

.interview-index li .txt .job-label span:nth-child(1) {
    font-size: 0.9rem;
    color: #FFF;
    display: inline-block;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    line-height: 1.4em;
    padding: 3px 10px;
    margin-right: 15px;
}

.interview-index li .txt .job-label {
    font-size: 15px;
}

/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 1023px) {
    .recruit-content .grid-item {
        box-sizing: border-box;
        width: calc((100% - 4%) / 3);
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 768px) {
    .interview-index-content {
        padding: 40px 0 0;
    }

    .recruit-content .interview-index {
        position: relative;
        display: flex;
        margin: 20px auto 0;
    }

    .gutter-sizer {
        width: 2%;
    }

    .recruit-content .grid-item {
        box-sizing: border-box;
        width: calc((100% - 2%) / 2);
        margin-bottom: 4%;
    }

    .interview-index li .txt {
        padding: 5px 0 0;
    }

    .interview-index li .txt .name-label {
        display: flex;
        align-items: center;
    }

    .interview-index li .txt .name-label span:nth-child(1) {
        font-size: min(4vw, 0.9rem);
    }

    .interview-index li .txt .name-label span:nth-child(2) {
        color: var(--main-color);
        font-family: var(--en-font);
        font-size: 11px;
        font-weight: 600;
        padding-left: 10px;
    }

    .interview-index li .txt .job-label span:nth-child(1) {
        font-size: min(3.3vw, 0.8rem);
        padding: 2px 5px;
        margin-right: 10px;
    }

    .interview-index li .txt .job-label {
        font-size: 12px;
    }
}


.recruit-content .outline-ttl {
    text-align: center;
    color: #2986B2;
    font-size: min(5vw, 2rem);
    padding-bottom: 40px;
}

.recruit-content .outline-ttl.color-jimu {
    color: #3D8D71;
}

.job-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2.5%;
    padding: 20px 0 0;
}

.job-detail>li {
    width: 48.5%;
    margin-bottom: 2.5%;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    padding: 20px 30px 15px;
    position: relative;
}

.job-detail>li.full-width {
    width: 100%;
}

.job-detail>li>.dot-list {
    margin-top: 10px;
}

.job-detail>li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    transform: translateX(-50%);
}

.job-detail>li .ttl {
    text-align: center;
    color: var(--main-color);
    font-size: min(3.6vw, 1.4rem);
    padding-bottom: 10px;
}

.recruit-content .section-lead {
    font-size: min(3.6vw, 1.4rem);
    padding: 20px 0 40px;
}

.recruit-content .career-path {
    margin-bottom: 40px;
}

.pr-box {
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pr-box .text {
    width: 50%;
}

.pr-box .insert {
    width: 45%;
}

.path-sub-ttl,
.pr-box .text .pr-ttl {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: var(--main-color);
    font-size: min(3vw, 1.2rem);
    margin-bottom: 5px;
}

.path-sub-ttl {
    margin-bottom: 10px;
}

.path-sub-ttl::before,
.pr-box .text .pr-ttl::before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
}


.voice-box {
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.voice-box .text {
    width: 80%;
    order: 2;
    display: flex;
    align-items: center;
}

.voice-box .insert {
    width: 16%;
    order: 1;
}

.voice-box .insert p {
    text-align: center;
    padding: 4px 0 0;
}

@media screen and (max-width: 768px) {
    .recruit-content .outline-ttl {
        text-align: center;
        color: #2986B2;
        font-size: min(7vw, 1.4rem);
        padding-bottom: 30px;
    }

    .job-detail {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 2.5%;
        padding: 20px 0 0;
    }

    .job-detail>li {
        width: 100%;
        margin-bottom: 20px;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        padding: 20px 20px 15px;
        position: relative;
    }

    .job-detail>li .ttl {
        text-align: center;
        color: var(--main-color);
        font-size: min(5vw, 1.4rem);
        padding-bottom: 5px;
    }

    .recruit-content .section-lead {
        font-size: min(4vw, 1.4rem);
        padding: 0 0 40px;
    }

    .recruit-content .career-path {
        margin-bottom: 40px;
    }

    .pr-box {
        margin-bottom: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .pr-box .text {
        width: 100%;
        padding-bottom: 20px;
    }

    .pr-box .insert {
        width: 100%;
    }

    .path-sub-ttl,
    .pr-box .text .pr-ttl {
        position: relative;
        padding-left: 20px;
        font-weight: 500;
        color: var(--main-color);
        font-size: min(5vw, 1.2rem);
        margin-bottom: 5px;
    }
}


@media screen and (max-width: 480px) {
    .voice-box {
        margin-bottom: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .voice-box .text {
        width: 100%;
        order: 2;
        display: flex;
        align-items: center;
    }

    .voice-box .insert {
        width: 100%;
        max-width: 120px;
        margin: 0 auto 10px;
        order: 1;
    }
}