/* 화면 */
#screen {
    margin: 0;
    z-index: 2; 
    width: 100%; 
    height: 490px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: scroll;
}

/* 버튼 */
a {
    text-decoration: none;
    color: black;
}

td div {
    width: 60px;
    height: 60px;
    background-color: rgb(243, 226, 208);
    font-size: 12px;
    font-weight: 500;
    margin: 0px 5px 2px 5px;
    border-radius: 20px;
    line-height: 60px;
}

.non-click {
    background-color: rgb(243, 226, 208);

}

.click {
    background-color: brown;
    color: white;
    font-weight: 900;
    transform: rotate(5deg) scale(1.1);
    transition: all 0.7s
}

 /* 2. PLAN */

.wrapper {
    overflow: hidden;
    background-color: rgb(114, 26, 26); 

}

ul.plan {
    margin-bottom: 100px;
    margin-top: 1800px;
}

ul {
    margin-left: -30px;
    margin-top: 20px;
    list-style: none;
    position: relative;
    padding: 1px 100px;
    color: #fff;
    font-size: 13px;

    /* 중간 dashed 선 */
    &:before {
            content: '';
            width: 1px;
            height: 100%;
            position: absolute;
            border-left: 2px dashed black;
        }
    
}

/* 항목 */
li {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 6px;
    width: 220px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.08);

    /* 중간중간 떨어지게 하는 것 */
    &:not(:first-child) {
        margin-top: 60px;
    }

    /* 하얀 선 */
    > span {
        width: 2px;
        /* height: 100%; */
        background: #fff;
        left: -30px;
        top: 0;
        position: absolute;

        &:before, &:after {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid #fff;
            position: absolute;
            background: #f0be07;
            left: -5px;
            top: 0;
        }
    }

    span:after{
        top: 100%;
    }
            
    > div {
        margin-left: 10px;
    }

    /* 종각역 사진 */
    > #first {
        position: absolute;
        top: 70px;
        > img {
            positioN: absolute;
            top: -54px;
            width: 160px;
        }
    }
    
}

div {
    .title, .type {
        font-weight: 600;
        font-size: 14px;
        padding-bottom: 10px;
    }
    .info {
        font-weight: 300;
    }
    > div {
        margin-top: 5px;
    }
}

span.number {
    height: 100%;
    span {
        position: absolute;
        font-size: 10px;
        left: -40px;
        font-weight: bold;
        &:first-child {
            top: 0;
        }
        &:last-child {
            top: 100%;
        }
    }
}

/* 버튼 컨트롤 */
#info.plan, #info.game, #info.mission
#plan.info, #plan.mission, #plan.game, 
#game.info, #game.plan, #game.mission
#mission.info, #mission.plan, #mission.game
    {
    display: none;
}

#info.info, #plan.plan, #game.game, #mission.mission {
    display: block;
}

#plan, #game, #mission {
    display: none;
}
