@charset "UTF-8";

/* メイン部 */
.main {
    /* height: 100vh; */
    width: 100%;
}

/* コンテンツ1START */
.container1_main{
    margin-top: 30px;
    height: auto;
}
.container1_area{
    width: 100%;
    /* height: 100%; */
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.recruit_title{
    width: 90%;
    height: auto;
    text-align: center;
    font-size: 45px;
    line-height: normal;
    color: #2C7FC3;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 100px;
}
.recruit_sub_title{
    font-size: 25px;
    line-height: normal;
    color: #000000;
    margin-left: 20px;
}


/* エントリーエリアSTART */
.entry_area{
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;    
}
.entry_area h1{
    margin-top: 20px;
    text-align: center;
}
.entry_area p{
    margin-top: 20px;
    text-align: center;
}
.link_button1_content{
    background-color:#2C7FC3;
    border: 2px solid #2C7FC3;
    border-radius: 0.5em;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-top: 20px;
}
.link_button1_content a{
    text-decoration: none;
    color: #ffffff;
    line-height: 1.8;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
}
/* コンテンツ1END */

/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
    main {
        width: 100vw;
        height: auto;
    }
    
    /* コンテンツ1START */
    .container1_main{
        margin-top: 10px;
        height: auto;
    }
    .container1_area{
        width: 100%;
        height: auto;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }
    .recruit_title{
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 30px;
        line-height: normal;
        color: #2C7FC3;
        font-family: "Mochiy Pop One", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-top: 0;
    }
    .recruit_sub_title{
        font-size: 15px;
        line-height: normal;
        color: #000000;
        margin-left: 20px;
    }
    
    /* エントリーエリアSTART */
    .entry_area{
        margin-top: 10px;
        width: 100%;
        height: auto;
    }
    .entry_area h1{
        margin-top: 10px;
        text-align: center;
        font-size: 20px;
    }
    .entry_area p{
        margin-top: 10px;
        text-align: center;
        font-size: 10px;
    }
    .link_button1_content{
        margin-top: 10px;
    }
    .link_button1_content a{
        font-size:15px;
    }
}