*{
    color: #0C0C0C;
}

html, body {
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

#main_wrap{
    margin: 0 auto;
    width: min(500px, 100vw);
    background-color: #fff;
    padding: 40px
}

#main_wrap .top{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 31vh;
    max-height: 180px;
    padding: 30px 0px;
}

#main_wrap .status_bar{
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #F0F2F6;
}

#main_wrap .status_bar::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #2C56B8;
}

#main_wrap .top h1{
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3em;
}

#main_wrap .top h3{
    font-size: 1rem;
    line-height: 1.3em;
}

#main_wrap .bottom{
}

#main_wrap .bottom ul li{
    border-bottom: 2px solid #F0F2F6;
    width: 100%;
    font-size: 1.1rem;
    padding: 17px 0;
}

#main_wrap .bottom ul li:last-of-type{
    border: 0;
}

#main_wrap .bottom ul li h2{
    font-weight: 600;
    line-height: 1.6em;
}

#main_wrap .bottom ul li span{
    color: red;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 10px;
}

#main_wrap .bottom .button{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 30px;
}

#main_wrap .bottom .button .btn a{
    padding: 10px 0;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #F0F2F6;
	text-decoration:none;
}

#main_wrap .bottom .button .btn:last-of-type a{
    border: 0;
}

#main_wrap .bottom .button .btn a > div{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main_wrap .bottom .button .btn a > div img{
    max-width: 28px;
    min-width: 19px;
    max-height: 28px;
    min-height: 18px;
}

#main_wrap .bottom .button .btn h2{
    font-size: 1.09rem;
    font-weight: 600;
}

#main_wrap .bottom .button .btn .arrow_circle{
    max-width: 22px;
}