@charset "UTF-8";

/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

#contents{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
#contents #news01{
    width: 70%;
}
#contents #news02{
    width: 20%;
}

#contents .newsBox{
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #dfe4e8;
}

#contents .newsBox .date{
    margin-bottom: 20px;
    padding: 8px 15px 10px;
    background: #fff;
    line-height: 1;
    display: table;
}

#contents .newsBox:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
#contents .newsBox .image{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
#contents .newsBox .image img{
    width: 49%;
    margin-bottom: 2%;
    display: block;
}

#contents .sideList li{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dfe4e8;
    font-size: 12px;
}
#contents .sideList li a{
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#contents .sideList li a::after{
    content: "";
    display: inline-block;
    width: 0.35em;
    height: 0.35em;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    margin-left: 6px;
}


/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/

/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
}
    
/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {
        
}


/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    #contents{
        flex-direction: column-reverse;
    }
        
    
    #contents #news01{
        width: 100%;
    }
    
    #contents .newsBox .date{
        font-size: 12px;
        margin-bottom: 10px;
    }
    #contents .newsBox .image{
        margin-top: 20px;
    }
    #contents .newsBox {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    
    #contents #news02 {
        width: 100%;
        overflow-x: scroll;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    #contents .sideList {
        display: flex;
    }
    #contents .sideList li{
        padding: 0;
        margin: 0 25px 0 0;
        border-bottom: none;
    }
    #contents .sideList li a{
        justify-content: flex-start;
    }
    
        
}

