@charset "shift_jis";

/*----------------
実施の流れ - FLEX版
----------------*/
ul.flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    padding: 0;
    flex-direction: column;
    width: 60%;
    margin: auto;
}

/* ボックス共通 */
ul.flow li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 1rem 10px 2rem;
    position: relative;
    color: #fff;
    border-radius: 6px;
    height: 100px;
    /* min-width: 200px; */
    z-index: 1;

}


/* 大学側 */
ul.flow li.univ {
    background: #5b85d9;
    background: linear-gradient(90deg, #5db0d9, #5b85d9);
    /*margin-right: 40px;*/
}

/* LEC側 */
ul.flow li.LEC {
    background: #F44336;
    background: linear-gradient(90deg, #ff9777, #f9764d);
    /*margin-right: 40px;*/
}

/* （右向き三角形） */
ul.flow li.LEC::after,
ul.flow li.univ::after {
    content: "";
    position: absolute;
    right: -60px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid #f9764d;
}

ul.flow li.univ::after {
    border-left: 60px solid #5b85d9;
}

ul.flow li {
    padding: 10px 20px;
    height: 80px;
}

ul.flow li.univ,
ul.flow li.LEC {
    margin-right: 30px;
}

ul.flow li.LEC::after,
ul.flow li.univ::after {
    right: -40px;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 40px solid #f9764d;
}

ul.flow li.univ::after {
    border-left: 40px solid #5b85d9;

}

ul.flow_color {
    display: flex;
    margin-bottom: 20px;
}

ul.flow_color li {
    position: relative;
    margin-right: 40px;
}

ul.flow_color li.color_LEC::after,
ul.flow_color li.color_univ::after {
    font-size: 30px;
    color: #f9764d;
    content: "■";
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);

}

ul.flow_color li.color_univ::after {
    color: #5b85d9;
}

ul.flow li {
    /* width: 90%; */
    padding: 1rem;
    text-align: center;
    /* font-size:1.2rem; */
}



@media (max-width: 768px) {
    ul.flow {
        width: 100%;
    }

    ul.flow li {
        font-size: 1.0rem;
    }
}


ul.flow li.univ {
    background: linear-gradient(180deg, #5db0d9, #5b85d9);
}

ul.flow li.LEC {
    background: linear-gradient(180deg, #ff9777, #f9764d);
}


/* ▼ に変更 */
ul.flow li.LEC::after,
ul.flow li.univ::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #f9764d;
    /* 下向き矢印 */
    border-bottom: 0;
}

ul.flow li.univ::after {
    border-top: 30px solid #5b85d9;
}

ul.flow li:last-child::after {
    content: none;
}

ul.flow li.univ,
ul.flow li.LEC {

    margin-right: 0px;
}



p.point {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #74ae4a;
}