#wrap {background-color: #fff;}
body {background-color: #0a6ebd;}

header {
    height: 19rem;
    display: flex;flex-direction: column;align-items: center;
    background-color: #0a6ebd;
    border-radius: 0 0 6rem 6rem;
}
header div {
    width: 100%;
    
}
header img {margin: 2rem;height:3.5rem;}
header ul {
    width: 100%;
}
header ul {
    border-top: 1px solid rgba(255, 255, 255, .5);
}
header ul li {
    
    display: flex;
}
header ul li a {
    display: flex;justify-content: center;align-items: center;
    width: calc(100% / 3);
    height: 3rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1rem;
}
header ul li:nth-of-type(1) a {border-right: 1px solid rgba(255, 255, 255, .5);}
header ul li:nth-of-type(2) a {border-right: 1px solid rgba(255, 255, 255, .5);}

.last {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0a6ebd;
    background-color: #fff;
    position: relative;
    padding-bottom: 3rem;
    text-align: center;
}
.last img {
    position: absolute;
    left: 50%; top: -3rem;
    width: 1.5rem;
    transform: translateX(-50%) rotate(-90deg);
    /* animation: infinite 1s btn_arrow linear; */
}




.caution {
    width: fit-content;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #666;
    position: relative;
    top: -8.5rem;
    font-family: 'pretendard', sans-serif;
}
.up {
    position: fixed;
    right: 1.2rem;
    bottom: 2rem;
    width: 3rem;
    height: 3rem;
    background: url('../img/top.png') no-repeat center/cover;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, .2);
}
.up.ani {
    animation: .5s btn_ani cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes btn_ani {
    0% {
        transform: scale(.8) translateY(1rem);
    }
    100% {
        transform: scale(1) translateY(0rem);
    }
}