@charset "UTF-8";
/* ==================================== */
/*              全体共通                 */
/* ==================================== */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #000;
}

body .wrap {
    max-width: 1024px;
    margin: auto;
}

img {
    display: block;
}

main a {
    display: block;
    transition: opacity 0.4s;
}

main a:hover {
    opacity: 0.6;
}

main .wrap {
    max-width: 1024px;
    margin: auto;
}

/* ==================================== */
/*                footer                */
/* ==================================== */
.l-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #333;
    padding: 10px 30px
}

.l-footer ul {
    display: flex;
    gap: 10px
}

.l-footer ul li a {
    display: block;
    font-size: 1.4rem;
    color: #fff
}

.l-footer ul li a:before {
    content: "＞"
}

.l-footer p {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .1em
}

@media screen and (max-width:767px) {
    .l-footer {
        flex-direction: column;
        padding: 4.8vw
    }

    .l-footer ul {
        gap: 1.6vw
    }

    .l-footer ul li a {
        font-size: 2.6666666667vw
    }

    .l-footer p {
        font-size: 2.6666666667vw
    }
}

