@charset "utf-8";

/*------------------------*/
/*高校生向け採用情報*/
/*-------------------------*/

/*ボタン*/
.about ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.about li {
    margin: 0 20px;
}
.about li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 42px 15px 20px;
    background: url('../img/icon_arrow_w.png') no-repeat right 10px center;
    background-size: 28px;
    background-color: #005aba;
    border-radius: 50px;
    text-align: center;
    line-height: 100%;
}
.about li a:hover {
    transition-duration: 0.5s;
    background-color: #b1d558;
}


/*-------------------------*/
/*メッセージ*/
/*-------------------------*/
#message {
    background-image: url('../img/illust11.png'), url('../img/bg_wave_single_g.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: right 5vw bottom, center bottom;
    background-size: 16vw, auto;
    padding-bottom: 140px;
}

#message .about {
    margin-top: 50px;
}
#message .about a {
    min-width: 160px;
}

/*ご挨拶*/
.greeting {
    max-width: 1000px;
    margin: 0 auto;
}
.greeting p {
    /*16-20*/
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    line-height: 180%;
}



/*-------------------------*/
/*選考プロセス*/
/*-------------------------*/
#process {
    background: url('../img/bg_wave_single_w.svg') no-repeat center bottom;
    background-color: #F0F5F9;
    padding-top: 1px; /*余白対策*/
    margin-top: -1px;
    padding-bottom: 140px;
}
#process .headline {
    margin-bottom: 40px;
}
#process .about {
    margin-top: 50px;
}
#process .about a {
    min-width: 200px;
}


.flow {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.flow dt {
    /*16-20*/
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
.flow dd b {
    /*16-20*/
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
.flow dd {
    /*16-28*/
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
}



/*お知らせ*/
.events {
    max-width: 1080px;
    margin: 50px auto;
    padding: 0 40px;
}
.events .event~.event {
    margin-top: 20px;
}
.event {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 30px;
    background-color: #fff;
}
.event h3 {
    margin: 0;
    /*18-20*/
    font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
    padding-left: 32px;
    background: url('../img/icon_bell.png') no-repeat left center;
    background-size: 24px;
}
.event .ttl {
    width: 18vw;
    margin-right: 30px;
}
.event .txt {
    flex: 1;
}
.event .txt p:first-child {
    margin-top: 0;
}


/*-------------------------*/
/*お問い合わせ*/
/*-------------------------*/
#information {
    padding-bottom: 100px;
}
#information .headline {
    margin-top: 0;
}

/*お問い合わせ*/
.contact {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.contact dt {
    /*18-20*/
    font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
    font-weight: bold;
    margin-bottom: 20px;
}
.contact dd {
    margin: 0 0 10px;
    line-height: 140%;
}
.contact .entry {
    margin-top: 40px;
}





/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1279px) {
    #message {
        background-image: url('../img/illust11.png'), url('../img/bg_wave_single_g.svg');
        background-repeat: no-repeat, no-repeat;
        background-position: center bottom, center bottom;
        background-size: 240px, auto;
        padding-bottom: 340px;
    }
}

@media screen and (max-width: 979px) {
    .about li {
        margin: 0 20px 20px;
    }
    .about li a {
        padding: 12px 40px 12px 20px;
        background-size: 24px;
     }

    #process {
        padding-bottom: 80px;
    }
    
    .flow dt {
        width: 140px;
    }
}

@media screen and (max-width: 779px) {
    .about li {
        width: calc((100% / 2) - 40px);
        margin: 0 20px 20px;
    }
    .about li a {
        max-width: 220px;
        margin: 0 auto;
    }

    .flow dt {
        width: 100px;
    }
    .flow dd {
        padding: 10px 0;
    }

    #information .headline {
        margin-top: 40px;
    }
    .event {
        flex-direction: column;
    }
    .event .ttl {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 579px) {
    .about ul {
        flex-direction: column;
        align-items: center;
    }
    .about li {
        width: 100%;
    }

    #process {
        padding-bottom: 40px;
    }

    .events {
        margin: 50px auto;
        padding: 0 20px;
    }
    .event {
        padding: 20px;
    }
    .event .ttl {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 379px) {
    .flow dt {
        width: 80px;
    }
}

