.stage {
    position: relative;
    background: url('../images/BG_stage_bottom.svg') center bottom no-repeat;
    background-size: 100% auto;
    background-color: var(--mainBlue);
}

.stage:before {
    content: '';
    margin: -5px 0 50px;
    width: 80%;
    max-width: 750px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.5);
}

.stage .en {
    color: white;
}

.stage_list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 50px 0 250px;
}

.stage_section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.stage_section .point {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 125px;
    border-radius: 125px;
    border: white 15px solid;
    color: white;
    font-size: 25px;
    font-weight: 900;
}

.stage_card {
    position: relative;
    padding: 35px 85px 35px 50px;
    border-radius: 75px;
    border: white 15px solid;
    transition: .3s;
    cursor: pointer;
}

.stage_card:hover {
    transform: scale(1.05);
}

.stage_card > img {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
}

.line--long {
    width: 250px;
    height: 0;
    border-top: white 15px solid;
}

.line--short {
    width: 50px;
    height: 0;
    border-top: white 15px solid;
}

.stage_02 {
    justify-content: flex-start;
}

.stage_02 .stage_card {
    margin-top: 100px;
}

.stage_02 .line {
    align-self: flex-start;
    width: 150px;
    height: 250px;
    border-right: white 15px solid;
    border-bottom: white 15px solid;
    border-bottom-right-radius: 50px;
}

.stage_03 {
    justify-content: flex-end;
}

.stage_03 .stage_card {
    margin-top: 50px;
    margin-right: 50px;
}

.stage_03 .line {
    align-self: flex-start;
    width: 350px;
    height: 175px;
    border-left: white 15px solid;
    border-bottom: white 15px solid;
    border-bottom-left-radius: 50px;
}

.stage_04 .stage_card {
    margin-top: 75px;
    margin-left: 50px;
}

.stage_04 .line {
    align-self: flex-start;
    width: 250px;
    height: 225px;
    border-right: white 15px solid;
    border-bottom: white 15px solid;
    border-bottom-right-radius: 50px;
}

.stage_05 {
    justify-content: flex-end;
}

.stage_05 .stage_card {
    margin: 75px 0;
}

.stage_05 .line {
    align-self: flex-start;
    width: 100px;
    height: 175px;
    border-left: white 15px solid;
    border-bottom: white 15px solid;
    border-bottom-left-radius: 50px;
}

.start,
.stage_01 .stage_card {
    background: #15bae7;
}

.stage_02 .stage_card {
    background: #2a94e5;
}

.stage_03 .stage_card {
    background: #fb5e5e;
}

.stage_04 .stage_card {
    background: #dad072;
}

.stage_05 .stage_card,
.end {
    background: #dd9465;
}



.stage_info_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999;
}

.stage_info {
    width: 100%;
    max-width: 750px;
    height: calc( 100% - 100px );
    padding: 50px;
    margin: 50px 0;
    border-radius: 15px;
    border: white 10px solid;
    background: white;
    z-index: 999999999999999;
    overflow-y: auto;
}

.stage_info::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}
   
.stage_info::-webkit-scrollbar-track {
    background: transparent;
}
   
.stage_info_st_01.stage_info::-webkit-scrollbar-thumb {
    background-color: #15bae7;
    border-radius: 10px;
}

.stage_info_st_02.stage_info::-webkit-scrollbar-thumb {
    background-color: #2a94e5;
    border-radius: 10px;
}

.stage_info_st_03.stage_info::-webkit-scrollbar-thumb {
    background-color: #fb5e5e;
    border-radius: 10px;
}

.stage_info_st_04.stage_info::-webkit-scrollbar-thumb {
    background-color: #dad072;
    border-radius: 10px;
}

.stage_info_st_05.stage_info::-webkit-scrollbar-thumb {
    background-color: #dd9465;
    border-radius: 10px;
}

.stage_info_title {
    margin-bottom: 25px;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.stage_info_title.st_01 {
    background: #15bae7;
}

.stage_info_title.st_02 {
    background: #2a94e5;
}

.stage_info_title.st_03 {
    background: #fb5e5e;
}

.stage_info_title.st_04 {
    background: #dad072;
}

.stage_info_title.st_05 {
    background: #dd9465;
}

.stage_info_table {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.stage_info_table_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.stage_info_table_row.head {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: #333 1px solid;
}

.stage_info_table_row + .stage_info_table_row {
    margin-top: 25px;
}

.stage_info_table_cell:first-child {
    flex: 1;
}

.stage_info_table_cell:last-child {
    flex: 2;
}



@media screen and (max-width: 1023px) {

    .stage {
        background-size: 200% auto;
    }

    .stage_list {
        margin: 0 0 125px 0;
    }

    .stage_section {
        flex-direction: column;
    }
    
    .stage_card {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        padding: 25px;
    }

    .stage_card > img {
        position: static;
        margin: -75px 0 25px;
    }

    
    .line--long {
        width: 10px;
        height: 50px;
        border-top: 0;
        background-color: white;
    }

    .line--short {
        width: 10px;
        height: 50px;
        border-top: 0;
        background-color: white;
    }

    .stage_02 {
        flex-direction: column-reverse;
    }

    .stage_02 .stage_card {
        margin: 0;
    }

    .stage_02 .line {
        align-self: center;
        width: 10px;
        height: 50px;
        border: 0;
        border-radius: 0;
        background-color: white;
    }

    .stage_03 {
        flex-direction: column;
    }

    .stage_03 .stage_card {
        margin: 0;
    }

    .stage_03 .line {
        align-self: center;
        width: 10px;
        height: 50px;
        border: 0;
        border-radius: 0;
        background-color: white;
    }

    .stage_04 {
        flex-direction: column-reverse;
    }

    .stage_04 .stage_card {
        margin: 0;
    }

    .stage_04 .line {
        align-self: center;
        width: 10px;
        height: 50px;
        border: 0;
        border-radius: 0;
        background-color: white;
    }

    .stage_05 {
        justify-content: flex-end;
    }

    .stage_05 .stage_card {
        margin: 0;
    }

    .stage_05 .line {
        align-self: center;
        width: 10px;
        height: 50px;
        border: 0;
        border-radius: 0;
        background-color: white;
    }

    .stage_info {
        width: calc( 100% - 50px );
        padding: 25px;
        margin: 25px 0;
        border-radius: 15px;
    }

    .stage_info_title {
        padding: 15px;
        border-radius: 15px;
    }
        
    .stage_info_table {
        font-size: 14px;
    }

    .stage_info_table_cell:first-child {
        flex: 2;
    }
    
    .stage_info_table_cell:last-child {
        flex: 3;
        margin-left: 10px;
    }
    
   
}