.column-contents{
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 30px;
    align-self: stretch;
    flex-wrap: wrap;
    width:95%;
    max-width:960px;
    margin:auto;
    padding:10px 0px 60px 0px;
}
.column-contents img{
    width:100%;
    display:inline-block;
    vertical-align:bottom;
}

.keyword-box{
    display:flex;
    width:100%;
    justify-content: center;
    align-items: center;
    padding:0px 0px 10px 0px;
}
form{
    display:flex;
    justify-content:center;
    width:100%;
}
input[type="text"]{
    display: flex;
    font-size:14px;
    padding:16px 15px;
    align-items: center;
    border-radius:6px 0 0 6px;
    border: 1px solid #B3A175;
    background: #FFF;
    width:432px;
}
input[type="text"]::placeholder{
    font-size:14px;
    color:#9E9EA7;
}
input[type="text"]:focus {
    outline: none;
    box-shadow: none;
}
input[type="submit"]{
    display:flex;
    width: 48px;
    height:52px;
    justify-content:center;
    align-items:center;
    border-radius: 0 6px 6px 0;
    border: 1px solid #B3A175;
    background: #B3A175;
    background-image: url(../column/images/search.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position:center center;
    cursor: pointer;
}
.column-contents .new{
    width:100px;
    height:100px;
    display: block;
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
}
.column{
    display: flex;
    flex-direction: column;
    width:300px;
    gap: 15px;
    position: relative;
}

.column-contents ul{
    list-style:none;
    padding:0;
    margin:0;
    font-size: 11px;
    font-style: normal;
    font-weight:normal;
    line-height: 120%;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}
.column-contents ul li{
    display: flex;
    padding: 4px 8px;
    gap: 10px;
    border-radius: 2px;
}
.column-contents .category-list li{background: #B3A175;}
.column-contents .category-list a{color:#FFF;}
.column-contents .tag-list li{
    border: 1px solid #B3A175;
    background: #FFF;
}
.column-contents .tag-list a{color:#B3A175}

.column-contents .category{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #555;
    font-size: 12px;
    font-weight: normal;
    line-height: 26px;
    letter-spacing: 0.48px;
}
.column-contents h3{
    font-size: 18px;
    font-weight:normal;
    line-height: 28px;
    letter-spacing: 0.72px;
    margin:5px 0px;
    height:84px;
}
.column-contents h3 > a{color:#555}

.page-box{
    display:flex;
    width:100%;
    justify-content: center;
    padding:10px 0px 0px 0px;
}
.page-box ul{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}
.page-box ul li{
    display: flex;
    width: 30px;
    padding: 3px 0;
    justify-content: center;
    align-items: center;
    border: 1px solid #B3A175;
    background: #FFF;
    font-size:14px;
    font-weight:normal;
    line-height: 24px;
    letter-spacing: 0.56px;
    text-align: center;
    color:#FFF;
}
.page-box ul .now_page{
    border: 1px solid #B3A175;
    background: #B3A175;
}
.page-box ul li a{
    color: #B3A175;
    display: block;
    width:100%;
}
.sp-banner{display:none;}
.contents-keywords{
    width:100%;
    color: #B3A175;
    font-size: 20px;
    line-height: normal;
    margin:0;
}
@media screen and (max-width: 768px){
    h2.main_title{margin-bottom:0px;}
    .column-contents{
        width:calc(100% - 40px);
        gap:40px;
        padding:30px 0px;
    }
    .column-contents .new{
        width:80px;
        height:80px;
    }
    .column-contents h3{height:auto;}
    input[type="text"]{width:85%;}
    .column{
        width:100%;
        max-width:auto;
        margin:auto;
    }
    .page-box{margin-bottom:-30px;}
    .pc-banner{display:none;}
    .sp-banner{
        display:flex;
        width:100%;
    }
    .keyword-box{padding:0;}
    .contents-keywords{font-size: 16px;}
}