/*
Theme Name: owners
*/
@charset "utf-8";

:root {
    --main-column: 1200px;
    --sub-column: 1058px;
    --base-black: #2A2A2A;
    --accent-color: #705E43;
}

* {
    box-sizing: border-box;
    color: var(--base-black);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
}
body {
    background: #fffdf4;
    background-image: url(assets/images/bg.png);
    background-repeat: repeat-y;
    background-position: center;
    background-size: contain;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.ft-oswald {
    font-family: 'Oswald', sans-serif;
}
.ft-shippori {
    font-family: 'Shippori Mincho', serif;
}
/* header */
.header {
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 10px 35px;
}
.logo {
    display: block;
    width: 229px;
        margin-top: 6px;
}
.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}
.nav-list li a {
    display: block;
    padding: 25px 35px 20px;
}
.nav-list li.contact a {
    background: var(--base-black);
}
@media (max-width: 976px) {
    .header-inner {
        padding-left: 20px;
    }
    .logo {
        width: 180px;
    }
    .nav-list li {
        display: none;
    }
    .nav-list li.contact {
        display: block;
    }
    .nav-list li a {
        padding: 15px 15px 11px;
    }
}
/* footer */
.footer {
    background: url(assets/images/footer-bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 25px;
}
.footer-left {
    width: 30%;
}
.footer-right {
    width: 60%;
}
.footer-left p {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 20px;
}
.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links li a {
    display: block;
    padding: 20px 30px 15px;
}
.footer-links li.contact a {
    background: var(--base-black);
}
.copyright {
    font-size: 12px;
    font-weight: 400px;
}
@media (max-width: 976px) {
    .footer-left {
        margin: 0 0 25px;
        width: 100%;
    }
    .footer-left a {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 140px;
    }
    .footer-right {
        width: 100%;
    }
    .footer-links li {
        width: 100%;
    }
    .footer-links li a {
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }
}