/* -------------------
    求人応募 エントリー
    -------------------*/
    #entry .ja-title{
        text-align: center;
        margin-bottom: 60px;
        font-size: 28px;
    }
    #entry .inner{
        width: 90%;
        margin: 180px auto 100px;
    }
    .flow-list{
        display: flex;
        flex-wrap: wrap;
        gap: 60px 20px;
        justify-content: space-between;
    }
    .flow-list li{
        width: calc((100% - 40px) / 3);
    }
    .flow-list li img{
        margin-bottom: 28px;
        width: 100%;
        border-radius: 12px;
    }
    .flow-list li .title {
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 30px;
    }
    
    .flow-list li .title span {
        background-color: var(--green);
        font-size: 12px;
        font-weight: 300;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        height: 22px; 
        flex-shrink: 0; 
    }
    
    .flow-list li .text{
        font-size: 16px;
    }
    .flow-list li .text span{
        font-size: 12px;
    }
    #entry .c-balloon-btn__body,
    #entry .c-balloon-btn__body a{
        width: 420px;
        height: 100px;
        font-size: 22px;
        line-height: 100px;
        padding: 0;
        border-radius: 50px;
    }
    #entry .c-balloon-btn__body a::after{
        width: 24px;
        height: 24px;
        right: 40px;
    }
    @media screen and (max-width:768px) {
        #entry{
            margin-bottom: 100px;
        }
        #entry .mv-section{
            margin-bottom: 80px;
        }
        #entry .inner{
            margin: 90px auto 50px;
        }
        .flow-list{
            display: block;
        }
        .flow-list li{
            width: 100%;
            margin-bottom: 40px;
        }
        .flow-list li img{
            width: 100%;
            margin-bottom: 20px;
        }
        .flow-list li .title{
            font-size: 15px;
            margin-bottom: 10px;
            gap: 10px;
            letter-spacing: 0;
        }
        .flow-list li .title span{
            font-size: 10px;
        }
        .flow-list li .text{
            font-size: 14px;
        }
    }