* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1 {
    margin: 0;
}

.only-pc {
    display: inline-block;
}

.only-mobile {
    display: none;
}

html,
body {
    font-size: 100%;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-print-color-adjust: exact;
}

body a {
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
}

p {
    margin: 0;
}

ul,
label {
    margin: 0;
    padding: 0;
}

ul li,
label li {
    list-style: none;
}

body a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

#header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 253px;
    padding-right: 18%;
}

#header .menu {
    display: none;
}

#header .logo {
    display: none;
}

#header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header ul li {
    margin-left: 52px;
}

#header ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 18px;
    width: 16px;
}

#header ul li a:hover {
    color: #96c2b7;
}

#footer {
    padding: 142px 0 100px;
}

#footer * {
}

#footer .box {
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

#footer .box .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .box .top .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 40%;
}

#footer .box .top .left p:first-child {
    margin-bottom: 22px;
}

#footer .box .top .cent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer .box .top .cent p:last-child {
    height: 180px;
    width: 2px;
    background-color: #ccc;
}

#footer .box .top .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40%;
}

#footer .box .top .right p:first-child {
    margin-bottom: 22px;
}

#footer .box .top .right p:first-child img {
    margin-left: 20px;
    cursor: pointer;
}

#footer .box .top .right p:last-child {
    padding-right: 20px;
}

#footer .box .bottom {
    margin-top: 48px;
}

@media screen and (max-width: 1200px) {
    #footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 1000px) {
    #header {
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {

    .only-pc {
        display: none;
    }

    .only-mobile {
        display: inherit;
    }

    #header {
        height: 60px;
        padding: 0px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    #header .menu {
        display: flex;
        width: 28px;
        margin-left: 15px;
        margin-top: 7px;
    }

    #header .logo {
        display: inline-block;
    }

    #header ul {
        display: none;
        position: absolute;
        top: 59px;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #fff;
        width: 100%;
        left: 0;
    }

    #header ul li {
        margin: 0;
        width: 100%;
    }

    #header ul li a {
        display: inline-block;
        width: 100%;
        text-align: left;
        padding-left: 10px;
        line-height: 40px;
    }

    #footer {
        padding-top: 20px;
        padding-right: 10px;
        padding-bottom: 60px;
        padding-left: 10px;
    }

    #footer .box .top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #footer .box .top .cent {
        display: none;
    }

    #footer .box .top .left {
        width: 100%;
    }

    #footer .box .top .right {
        width: 100%;
        text-align: left;
        display: none;
    }

    #footer .box .top .right p {
        width: 100%;
    }

    #footer .box .top .right p:last-child {
        display: none;
    }

    #footer .box .bottom {
        margin-top: 20px;
        text-align: left;
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */

