@charset "utf-8";
/* ==============================
common
===================================*/
html {
    font-size: 62.5%;
}

body {
    font-family: "ouma-latin-variable","Noto Sans JP", "Anonymous Pro","Inter", sans-serif;
    font-variation-settings: "wght" 100, "wght" 200, "wght" 300, "wght" 400, "wght" 500, "wght" 600, "wght" 700;
    font-style: normal;
    font-weight: 400;
    font-variation-settings: "wght" 400;
    font-size: 1.6rem;
    color: black;
    line-height: 1.5;
}

img {
    width: 100%;
    height: auto;
}

h2 {
    font-family: "ouma-latin-variable";
    font-variation-settings: "wght" 300;
}

/* ==============================
header
===================================*/
.header__sp {
    padding: 8% 6%;
    width: 100%;
    height: 91px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__img {
    width: 190px;
    height: 20px;
    vertical-align: middle;
    filter: brightness(1.5);
}

/* navの初期表示 */
.nav {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translate(0);
}

.header__btn {
    width: 38px;
    height: 28px;
}

.nav__btn {
    margin-top: 7px;
    width: 18px;
    height: 18px;
}

.nav__header {
    padding: 5px 6%;
    display: flex;
    width: 100%;
    height: 91px;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    padding: 0 8.5%;
    margin-top: 10px;
    display: flex;
    width: 311px;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}

.nav__item {
    text-align: center;
    font-family: "ouma-latin-variable";
    font-size: 2.4rem;
    font-variation-settings: "wght" 300;
}

/* ==============================
header pc
===================================*/
@media screen and (min-width: 923px) {
    .header__sp {
        display: none;
    }

    .logo__img {
        width: 342px;
        height: 27px;
    }

    .nav__header {
        padding: 5px 6% 5px 0;
    }

    .nav__btn {
        display: none;
    }

    .nav {
        padding: 0 7.7%;
        margin: 10px auto 0;
        display: flex;
        position: static;
        justify-content: space-between;
        align-items: center;
        transform: translateX(0);
        max-width: 1440px;
        height: 80px;
        /* gap: 200px; */
    }

    .nav__list {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 0;
        width: 499px;
        height: 91px;
        gap: 50px;
    }
    
}
@media screen and (min-width: 500px) {
    .logo__img {
        width: 220px;
        height: 22px;
    }
}

  /* ==========================================
footer
==============================================*/
.footer {
    width: 100%;
}

.copy {
    color: #fff;
    padding: 1% 0;
    background: #000;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-family: "ouma-latin-variable";
    font-weight: 700;
    line-height: 3.4; /* 343.75% */
}

 /* ==========================================
footer pc
==============================================*/
@media screen and (min-width:769px) {
    .copy {
        text-align: center;
        font-family: "ouma-latin-variable";
        font-size: 2.4rem;
        line-height: 2.3; /* 229.167% */
    }
}