@charset "UTF-8";
/*
----------------------------
ページ内リンク
社員インタビュー
----------------------------*/


/*
ページ内リンク
----------------------------*/
.pageAnkerLink{
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
}

.pageAnkerLink .linkItem{
    list-style: none;
    width: 33.33%;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.pageAnkerLink .linkItem a{
    display: block;
    border: 1px solid var(--base-color);
    color: var(--base-color);
    text-align: center;
    position: relative;
    padding: 15px 25px 15px 15px;
    transition: .3s;
}

.pageAnkerLink .linkItem a:after{
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--base-color);
    border-right: 2px solid var(--base-color);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    right: 10px;
    transition: .3s;
}

.pageAnkerLink .linkItem a:hover{
    background: var(--color-orange);
    color: #fff;
    border: 1px solid var(--color-orange);
}

.pageAnkerLink .linkItem a:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width: 768px) {
    .pageAnkerLink{
        display: block;
        margin-right: auto;
        margin-left: auto;
        max-width: 600px;
    }
    .pageAnkerLink .linkItem{
        width: 100%;
    }
}



/*
社員インタビュー
----------------------------*/
.interviewBlock {
    margin-bottom: 150px;
}
.interviewInfoFlex {
    display: flex;
    align-items: stretch;
    position: relative;
}

.interviewInfo_left,
.interviewInfo_right{
    width: 50%;
}

.interviewInfo_right{
    overflow: hidden;
    height: 100%;
    /* min-height: 400px; */
    position: absolute;
    background: #ccc;
    right: 0;
}

.interviewInfo_right img{
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.interviewInfo_left {
    background: var(--base-color);
    color: #fff;
    padding: 50px;
}

.interviewInfo_left .name_ttl{
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.interviewInfo_left .name_Item{
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.interviewInfo_left .name_Item .name_main {
    font-size: 1.5em;
}

.interviewInfo_left .name_place{
    margin-bottom: 7px;
    font-size: 1.4rem;
    font-weight: 400;
}

.interviewInfo_left .name_history{
    font-size: 1.4rem;
    font-weight: 400;
}

.interviewInfo_left .name_history .career {
    background: var(--color-blue);
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    padding: 3px 5px;
}

.interviewInfo_left .name_history .recruit {
    background: var(--color-orange);
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    padding: 3px 5px;
}

.interviewInfo_left .name_group .ttl{
    font-size: 1.3rem;
    display: inline-block;
    padding: 5px;
    color: var(--base-color);
    background: #fff;
    margin-bottom: 5px;
}

.interviewInfo_left .name_group .txt{
    font-size: 1.4rem;
    line-height: 1.7;
}

@media screen and (max-width: 1366px) {
    .interviewInfo_left{
        padding: 30px;
    }
}

@media screen and (max-width: 800px) {
    .interviewInfoFlex {
        display: block;
        max-width: 600px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        border-radius: 20px;
        overflow: hidden;

        position: inherit;
    }
    .interviewInfo_left,
    .interviewInfo_right{
        width: 100%;
        position: inherit;
    }
    .interviewInfo_right img {
        position: inherit;
    }
}

@media screen and (max-width: 768px) {
    .interviewBlock {
        margin-bottom: 100px;
    }
}


/*
社員インタビュー 本文
----------------------------*/
.interviewTextBlock .interview_ttl {
    color: var(--base-color);
    font-size: 2.2rem;
    line-height: 1.7;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}

.interviewTextBlock .interview_ttl:after{
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--base-color);
}

.interviewTextBlock .interview_txt {
    letter-spacing: .2px;
}


.interviewImgFlex {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
}

.interviewImgFlex .linkItem{
    list-style: none;
    width:  25%;
    margin-right: 10px;
    margin-left: 10px;
}




/*
1日の流れ
----------------------------*/
.routineBlock {
    margin-bottom: 90px;
}

.routineBlock .routine_ttl{
    display: inline-block;
    color: #fff;
    background: var(--base-color);
    padding: 5px;
    font-size: 2.6rem;
    font-weight: bold;
}
 
.routine .contentTable {
    background: inherit;
}
.routine .contentTableRow {
    align-items: stretch;
    border-top: none;
}


.routine .contentTableHead {
    padding: 25px 0;
    border-right: 2px solid var(--base-color);
    position: relative;
    text-align: left;
    padding-right: 20px;
    flex-basis: 100px;
}

.routine .contentTableBody {
    padding-left: 40px;
    border-top: none;
}

.routine .contentTableHead:after {
    content: "";
    position: absolute;
    right: -11px;
    top: 25px;
    width: 20px;
    height: 20px;
    background-color: var(--base-color);
    border-radius: 10px;
}

.routine .contentTableRow:first-child .contentTableHead:before {
    content: '';
    height: 50%;
    bottom: 0;
    right: -2px;
    width: 2px;
    position: absolute;
    background: #f6f6f6;
    top: 0;
}

.routine .contentTableRow:last-child .contentTableHead:before {
    content: '';
    height: 50%;
    bottom: 0;
    right: -2px;
    width: 2px;
    position: absolute;
    background: #f6f6f6;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .routine .contentTableRow {
        flex-wrap: nowrap;
    }
}



/*
画像 横並び
----------------------------*/
.recruitmentImgFlex {
    display: flex;
    flex-wrap: wrap;
}

.recruitmentImgFlex img{
    width: 25%;
}

@media screen and (max-width: 640px) {
    .recruitmentImgFlex img{
        width: 50%;
    }
}


/*
テーブル
----------------------------*/
.requirementsListWrap {
    line-height: 1.5;
}

.requirementsListWrap .contentTableHead {
    flex-basis: 200px;
}

@media screen and (max-width: 768px) {
    .requirementsListWrap .contentTableHead {
        flex-basis: 100%;
    }
}