@charset "utf-8";
/* intro
-------------------------------------------- */
.intro .block_txt{
    width: 60%;
}
.intro .block_image{
    width: 40%;
}
.intro .block_image img{
    max-width: 44.3rem;
}
@media screen and (max-width: 768px) {
    .intro .block_txt,
    .intro .block_image{
        width: 100%;
    }
    .intro .block_image img{
        margin-inline: auto;
        display: block;
    }
}

/* 社員インタビュー
-------------------------------------------- */
.cont-interview .interview-wrap{
    gap: 2rem;
}
.cont-interview .interview-item {
   background-color: var(--white);
    border-radius: var(--border-radius);
    padding:2rem 3rem;
    width: calc(100% / 3);
}
.cont-interview .interview-info {
    display: flex;
    gap: 0 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.4rem;
    justify-content: space-between;
}
.cont-interview .interview-info img{
    border-radius: 100%;
    height: 6.2rem;
    width: 6.2rem;
    object-fit: cover;
}
.cont-interview .interview-info .profile{
    width: calc(100% - 6.2rem - 1.5rem);
}
.cont-interview .interview-info .name{
    font-size: clamp(1.8rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.cont-interview .interview-info .position{
    color: var(--blue);
    background-color: var(--lightblue);
    border: 0.1rem solid;
    font-size: 1.3rem;
    padding: .5rem 1rem 0.35rem;
    border-radius: 2rem;
}
@media screen and (max-width: 768px) {
    .cont-interview .interview-item{
        width: 100%;
    }
}
/* 募集要項
-------------------------------------------- */
.panel-item{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3.6rem;
}
.panel-item:not(:last-child){
    margin-bottom: 0.8rem;
}
.panel-item .panel-item-ttl{
    background-color: var(--lightblue);
    max-width: 18.6rem;
    width: 100%;
    text-align: center;
    font-weight: normal;
   padding: 1rem;
   color: var(--darkblue);
}
.panel-item .panel-item-data{
    background-color: var(--white);
    margin-block: 1rem;
    width: calc(100% - 12rem);
}
@media screen and (max-width: 768px) {
    .panel-item{
        gap: 2rem;
    }
    .panel-item .panel-item-ttl{
        max-width: 12rem;
    }
}
@media screen and (max-width: 414px) {
    .panel-item{
        flex-direction: column;
        gap: 0;
    }
    .panel-item .panel-item-ttl{
        max-width: 100%;
        text-align: left;
        padding: 0.5rem 1rem;
    }
    .panel-item .panel-item-data{
        width: 100%;
        padding-left: 1rem;
    }
    .panel-item:not(:last-child){
        margin-bottom: 1.2rem;
    }
}
/* 採用の流れ
-------------------------------------------- */
.cont-flow{
    border-radius: 2rem;
    max-width: 80rem;
}
.cont-flow .step-wrap{
    max-width:50.4rem;
    margin-inline:auto;
    counter-reset: step-num;
}
.cont-flow .step-item{
    position: relative;
    counter-increment: step-num;
   padding-left: 7rem;
}
.cont-flow .step-item:not(:last-child){  
    margin-bottom: 3.6rem;
}
.cont-flow .step-item:before{
    position: absolute;
   font-family: "Helvetica", Arial, sans-serif;
    left: 0;
    content: counter(step-num, decimal-leading-zero);
    z-index: 1;
    display: flex;
    text-align: center;
    width: 5rem;
    height: 5rem;
    color: var(--darkblue);
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}
.cont-flow .step-item:after{ 
    content: '';
    background-color:var(--white);
    width: 5rem;
    height: 5rem;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}
.cont-flow .step-item .ttl{
    font-size: clamp(1.8rem,1vw,2.4rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.cont-flow .step-item .txt{
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
    .cont-flow .step-wrap{
        padding-inline:1.5rem;
    }
}