*{
    margin: 0;
    padding: 0;
}

body{
    min-width: 1440px;
}

/*header*/
header{
    border: 1px solid #000000;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

#headerInner{
    display: flex;
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
}

#headerInner h1{
    width: 60%;
    line-height: 150px;
}

.rightContents{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.rightContents p{
    width: 100%;
    height: 100px;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

nav ul li {
    border: 1px solid #000000;
    border-bottom: none;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    line-height: 50px;
    text-align: center;
}

/*main*/
main {
    margin: 0 auto;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

main > img {
    width: 100%;
    height: 400px;
}

#mainContents{
    display: flex;
    height: 400px;
    gap: 16px;
}

#mainContents section{
    border: 1px solid #000000;
    width: 70%;
    box-sizing: border-box;
    padding: 0 16px;
}

#mainContents section h2 {
    border-bottom: 1px solid #000000;
    margin-bottom: 16px;
}

#mainContents section .news a {
    display: flex;
    margin-bottom: 8px;
}

#mainContents section .news a time::before{
    content: "•";
}

#mainContents aside{
    width: 30%;
    box-sizing: border-box;
}

#mainContents aside img {
    width: 100%;
    height: 400px;
}

/*footer*/
footer {
    border: 1px solid #000000;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
}

#footerInner {
    display: flex;
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
}

#footerInner p{
    line-height: 80px;
}

#footerInner p:first-child {
    flex: 1;
}

#footerInner p:last-child {
    text-align: right;
}