.clmn2{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1480px;
}
.clmn-news{
    order: 2;
    width: 26%;
}
.news-wrap{
    margin: 40px 20px;
    padding: 0;
    width: calc(100% - 40px);
    position: sticky;
    top: 40px;
    border: 1px solid #2659aa;
    border-radius: 8px 8px;
    box-sizing: border-box;
}
.news-wrap h2{
    background: -webkit-gradient(linear,left top,right top,from(#2659aa),to(#007bbb));
    background: linear-gradient(to right,#2659aa 0,#007bbb 100%);
    border-radius: 6px 6px 0 0;
    color: #fff;
    padding: 18px 16px;
}
.news-wrap dl{
    padding: 20px 16px;
}
.news-wrap dt{
    margin-bottom: 5px;
    font-size: 90%;
}
.news-wrap dd:not(:last-child){
    border-bottom: 1px solid #bdc4cd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.news-wrap dd a{
    color: #fba035;
    text-decoration: underline;
    transition: .3s;
}

.header-high{
    justify-content: center;
}
.header-link a{
    border: 1px solid #2659aa;
    border-radius: 5px;
    color: #2659aa;
    display: inline-block;
    margin: 10px;
    padding: 5px 20px;
    transition: .3s;
}

.view-info{
    position: relative;
    display: block;
    margin: 10px;
    padding: 10px;
    background-color: #62bdee;
    border-radius: 4px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    transition: .3s all;
}

.view-info:hover{
    background-color: #fba035;
}

.view-info:after{
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.clmn-contents{
    order: 1;
    width: 74%;
}

.ico-new{
    display: inline-block;
    padding: 2px 8px;
    background-color: #d70052;
    border-radius: 4px;
    color: #fff;
    font-size: small;
}

dt .ico-new{
    margin-left: 10px;
}

.question .ico-new{
    margin-right: 10px;
}

.btn.primary{
    background-color: #f75d4c;
    border-bottom-color: #e72d00;
}

@media (hover: hover) {
    .news-wrap dd a:hover{
        color: #62bdee;
    }
    .header-link a:hover{
        background-color: #2659aa;
        color: #fff;
    }
}
@media screen and (max-width:768.98px) {
    .clmn2{
        display: block;
    }
    .clmn-news{
        width: 100%;
    }
    .news-wrap{
        padding-left: 20px;
    }
    .clmn-contents{
        width: 100%;
    }
    .header-high{
        height: auto;
    }
}