@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    line-height: 1;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    vertical-align: bottom;
}

.container{
    width: 960px;
    margin: 0 auto;
}

.header-logo{
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-logo .svg{
    width: 170px;
    height: 35px;
    display: flex;
    justify-content: space-between;
}

.g-nav{
    margin-bottom: 40px;
}

.g-nav>ul{
    display: flex;
    background-color: #000;
    color: #fff;
}

.g-nav li{
    height: 50px;
    width: 200px;
    border-right: 1px solid #fff;
}

.g-nav a{
    display: block;
    line-height: 50px;
    text-align: center;
}

.wrapper{
    display: flex;
    justify-content: space-between;
}

.main{
    width: 65%;
}

.main .main-header{
    position: relative;
}

.main h2{
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.main .date{
    width: 100px;
    height: 60px;
    box-sizing: border-box;
    display: block;
    background-color: #0097d8;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    right: 0;
    top: 0;
}

.main h3{
    color: #555;
    font-weight: lighter;
    margin-bottom: 16px;
}

.main p{
    line-height: 1.6;
    margin-bottom: 24px;
}

.main img{
    display: block;
    text-align: center;
    margin: 24px auto 24px;
}

.aside{
    width: 25%;
}

.aside h2{
    color: #00ebfa;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.aside ul:first-of-type{
    margin-bottom: 100px;
}

.aside li{
    padding: 16px 0 16px 18px;
    border-bottom: 1px solid #000;
    background: url(../img/listmark.png) no-repeat left center;
}

.footer{
    background-color: #000;
    color: #fff;
    padding: 50px 0 50px 150px;
    line-height: 1.6;
}