@charset "utf-8";

.header,
.main,
.footer {
    font-family: "Kiwi Maru", serif;
    color: #573550;
}

.header,
.main {
    max-width: 1920px;
    margin: 0 auto 0 auto;
}

.main {
    font-size: 18;
}

ul,
a {
    list-style-type: none;
    list-style: none;
    color: #573550;
    text-decoration: none;
    padding: 0;
}

a:hover {
    text-decoration: underline;
}

p {
    overflow-wrap: normal;
}


.logo-area {
    height: 0;
    width: 0;
    position: relative;
    top: 100px;
    left: 130px;
}

.logo {
    z-index: 10;
    width: 160px;
}

.Header-area {
    height: 160px;
}

.header-menu {
    display: flex;
    justify-content: flex-end;
    padding-top: 100px;
    padding-right: 100px;
}

.header-menu li {
    margin-left: 20px;
}

.Footer-area {
    background-color: #C7AED0;
    height: 250px;
}

.copyright {
    color: white;
    text-align: center;
    padding-top: 60px;
}

.top {
    display: block;
    text-align: right;
    padding-right: 100px;
    font-size: 26;
    color: white;
}

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

    .Header-area {
        height: 260px;
    }
    .header-menu {
        flex-direction: column;
        align-items: end;
        margin-top: -50px;
    }

    .logo-area {
        top: 80px;
        left: 10%;
    }

}

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

    .header-menu {
        padding-right: 20px;
    }

}