@charset "UTF-8";

/* --------- アンカーリンク --------- */
.link-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding:80px 0 0;
}
.link-list a{
    display: inline-block;
    width:300px;
    background: #e82727;
    padding:10px 0;
    text-align: center;
    color:#fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
}
.link-list a+a{margin-left:10px;}
.link-list a.btn-arrow::after{
    transform: rotate(90deg);
}
@media (min-width: 768px) {
    .link-list a:hover{
        background: #f26d58;
        transform: translateY(-10px);
    }
}
.link-list a:first-of-type{padding-right:20px;}

@media (max-width: 768px) {
    .link-list{padding:5vw 0 0;}
    .link-list a{
        width:100%;
        padding:3vw 0;
        margin-top:3vw;
    }
    .link-list a+a{margin-left:0;}
    .link-list a.btn-arrow::after{
        right: 2vw;
    }
    .link-list a+a{margin-left:0;}
    .link-list a:first-of-type{padding-right:0;}
}


/* ------------ 採用担当者からのメッセージ ------------- */
#recruiter.sec-recruiter{
    padding:80px 0;
}
#recruiter .recruiter-box{
    background: #f5f7f8;
    box-shadow: 0 0 15px rgba(205,169,173,0.8);
    padding:50px;
}
#recruiter .recruiter-image{
    width:30%;
    margin:0 auto;
}
#recruiter .recruiter-catch{
    font-size:30px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
#recruiter .recruiter-catch span{
    color:#e82727;
}
#recruiter .recruiter-catch span.red-b{
    font-size:50px;
}
#recruiter .recruiter-txt{
    text-align: center;
    border-top:1px solid #e82727;
    border-bottom:1px solid #e82727;
    padding:20px 0;
    margin:30px 0 40px;
}
#recruiter .recruiter-images{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#recruiter .recruiter-images p{
    width:calc(100%/3);
}
#recruiter .recruiter-images-txt{
    padding:50px ;
    background: #fff;
}
#recruiter .recruiter-con{margin-top:50px;}
#recruiter .recruiter-con-ttl{
    font-size:26px ;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    margin-bottom:20px;
}
#recruiter .recruiter-con-ttl::after{
    content:'';
    border-top:1px solid #e82727;
    width:100%;
}
#recruiter .recruiter-con-ttl:after {
  margin-left: 1em; 
}

@media (max-width: 768px) {
    #recruiter.sec-recruiter{
        padding:10vw 0;
    }
    #recruiter .recruiter-box{
        padding:4vw;
    }
    #recruiter .recruiter-image{
        width:80%;
        margin:0 auto 4vw;
    }
    #recruiter .recruiter-images p:nth-of-type(3){
    width:100%;
}
    #recruiter .recruiter-catch{
        font-size: 5vw;
    }
    #recruiter .recruiter-catch span.red-b{
        font-size:6vw;
    }
    #recruiter .recruiter-txt{
        padding:3vw 0;
        margin:4vw 0 4vw;
		text-align: left;
    }
    #recruiter .recruiter-images p{
        width:50%;
    }
    #recruiter .recruiter-images-txt{
        padding:4vw ;
    }
    #recruiter .recruiter-con{margin-top:5vw;}
    #recruiter .recruiter-con-ttl{
        font-size: 5vw ;
        margin-bottom:2vw;
        line-height: 1.5;
    }
    #recruiter .recruiter-con-ttl:after {
      margin-left: 0.5em; 
    }
}


/* ------------ 募集要項 ------------- */
#description.sec-description{
    padding:0 0 80px;
}
#description .description-con+.description-con{margin-top:50px;}
#description .description-con-ttl{
    background: #e82727;
    color:#fff;
    padding:10px 30px;
    font-size:24px;
    margin-bottom:20px;
}
#description .description-con-in{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px auto;
}
#description .description-box{
    width:calc((100% - 40px)/2);
    box-shadow: 0 0 15px rgba(205,169,173,0.8);
}
#description .description-box p{padding:20px 30px;}
#description .description-box-ttl{
    background: #f5f7f8;
    text-align: center;
    font-weight: 700;
}

#description .entry-box{
    background: #fdf8ce;
    box-shadow: 0 0 15px rgba(205,169,173,0.8);
    display: flex;
    align-items: center;
}
#description .entry-image{
    width:25%;
    position: relative;
    top:-20px;
}
#description .entry-txt{
    
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:34px;
    font-weight: 700;
    color:#e82727;
    position: relative;
    display: inline-block;
}
#description .entry-txt::after{
    position: absolute;
    content:'';
    background: url("../../img/recruit/icon_next.png") no-repeat center;
    background-size: contain;
    width:29px;
    height:29px;
    top:16px;
    right:-45px;
}

@media (max-width: 768px) {
    #description.sec-description{padding:0 0 10vw;}
    #description .description-con+.description-con{margin-top:7vw;}
    #description .description-con-ttl{
        padding:1vw 4vw;
        font-size: 4vw;
        margin-bottom:3vw;
    }
    #description .description-con-in{margin:5vw auto 7vw;}
    #description .description-box{width:100%;}
    #description .description-box p{padding:3vw 4vw;}
    #description .description-box+.description-box{margin-top:5vw;}
    #description .entry-box{ 
        flex-wrap: wrap;
        justify-content: center;
    }
    #description .entry-image{
        width:80%;
        position: relative;
        top:-5vw;
        margin:0 auto -3vw;
    }
    #description .entry-txt{ 
        font-size: 4vw;
        line-height: 1.5;
        padding-bottom:4vw;
    }
    #description .entry-txt::after{
        position: absolute;
        content:'';
        background: url("../../img/recruit/icon_next.png") no-repeat center;
        background-size: contain;
        width:3.467vw;
        height:3.467vw;
        top:6.933vw;
        right:-0;
    }
}











