@charset "UTF-8";

/* ====================
common
==================== */

html {
    font-size: 62.5%;
}

:root {
    --text-brown: #544739;
    --background-gray: #FAF9F9;
    --background-white: #fff;
    --point: #383C3C;
}

body {
    font-family: 
    "Noto Sans JP",
    "Open Sans", 
    "Bellota Text",
    Arial,
    sans-serif;
    font-style: normal;
    line-height: 1.5;
}

.antic-didone-regular {
  font-family: "Antic Didone", serif;
  font-weight: 400;
  font-style: normal;
}

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

/* ====================
header
==================== */
.header {
    padding: 15px 5.3%;
    position: relative;
}

.headerLogo,
.nav__logo {
    width: 80px;
}

/* .navの初期表示 */
.nav {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.nav__header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    z-index: 50;
}

.nav__btn {
    width: 18px;
    height: 18px;
}

.nav__menu {
    top: 56px;
    width: 100%;
    height: 430px;
    background-image: url(../images/forest01_gray.jpg);
    background-size: cover;
    z-index: -100;
    padding-top: 66px;
}

.nav__list {
    margin-left: 64px ;
    font-family: "Open Sans";
    font-size: 1.7rem;
}

.nav__item {
    margin-bottom: 26px;
    align-items: center;
    display: flex;
}

.nav__item:hover {
    color: #446E72;
}

.nav__item::before {
    content: "";
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #000;
    margin-right: 14px;
}

/* ハンバーガーメニュー　アニメーション */
.btn-trigger {
    position: absolute;
    width: 20px;
    height: 18px;
    cursor: pointer;
    z-index: 100;
    top: 23px;
    right: 25px;
}

.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #000;
}

.btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
    margin: auto;
}

.btn-trigger span:nth-of-type(1) {
    top: 0;
}

.btn-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
}

.btn-trigger span:nth-of-type(3) {
    bottom: 0;
}

.btn-trigger.active span:nth-of-type(1) {
    bottom: 0;
    transform: rotate(45deg);
}

.btn-trigger.active span:nth-of-type(2) {
    display: none;
}

.btn-trigger.active span:nth-of-type(3) {
    top: 0;
    transform: rotate(-45deg);
}
/* ここまでハンバーガーメニュー　アニメーション */

/* nav shopBtn */
.shopBtn {
    width: 158px;
    height: 38px;
    background-color: var(--point);
    font-family: "Open Sans";
    font-size: 1.6rem;
    font-weight: 400;
    /* letter-spacing: 2%; */
    color: #fff;
    box-sizing: border-box;
    padding: 7px 30px 9px 15px;
    margin: 0 auto;
    position: relative;

}

.shopBtn::after {
    content: "";
    display: block;
    background-image: url(../images/stash_arrow-up-light.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: solid 1px #383C3C;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.shopBtn:hover {
    opacity: 0.9;
    background-color: #446E72;
    box-shadow: 0px 12px 24px #383C3C90;
    transition: 0.3s;
}
/* ここまでnav shopBtn */

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

.headerInstagram {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 31%;
}

.headerCart {
    display: block;
    width: 25px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 18%;
}

.header__btn {
    display: block;
    width: 25px;
    height: 14px;
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 5.3%;
}

.pcMenu1,
.pcMenu2 {
    display: none;
}

.pcMenu1:hover {
    color: #446E72;
}
.pcMenu2:hover {
    color: #446E72;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        padding: 0 2.7% 0;
        max-width: 1330px;
        height: 105px;
        margin: 0 auto;
    }

    .headerLogo {
        width: 120px;
        height: auto;
        margin: 30px 0 30px 0px;
    }

    .headerInstagram {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .headerCart {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 40px;
        right: 40px;
        width: 30px;
        height: 30px;
    }

    .headerCart:hover {
        transform: translateY(-4px);
        transition: 0.3s;
    }

    .pcMenu1,
    .pcMenu2 {
        display: block;
        position: absolute;
        cursor: pointer;
        font-size: 2rem;
        font-family: "Open Sans";
        font-weight: 500;
        top: 50px;
        /* margin-right: 50px; */
    }

   .pcMenu1 {
        right: 26.7%;
   }

   .pcMenu2 {
        right: 15.3%;
   }

   .btn-trigger {
        display: none;
   }

}



/* ====================
footer
==================== */
.footer {
    padding: 80px 5.3% 20px;
}

.footer__logo,
.footer__icons {
    margin-left: 0;
}

.footer__logo {
    width: 28%;
    height: auto;
    margin-top: 96px;
    /* margin-left: 11%; */
}

.footer__icons {
    display: flex;
    margin-top: 23px;
    /* margin-left: 11%; */
}

.footerInstagram__icon {
    width: 25px;
    height: 25px;
}

.footerShop__icon {
    width: 25px;
    height: 25px;
}

.footer__icon {
    text-align: center;
    margin-right: 20px;
}

.coyote__vintage {
    text-align: center;
}

.copy {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 0;
}

@media screen and (min-width: 769px) {
    .footer {
        width: 100%;
        /* display: flex; */
        /* padding: 62px 6.9% 45px; */
        padding: 62px 0 45px;
        align-items: end;
        /* justify-content: space-between; */
    }

    .footer__item {
        max-width: 1330px;
        margin: 0 auto;
        padding: 0 2.7%;

        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__logo {
        width: 150px;
        height: auto;
        margin: 0;
    }

    .footer__icons {
        display: flex;
        align-items: center;
        margin-left: 0;
    }

    .footer__icon {
        margin-right: 50px;
    }

    .footer__icon:hover {
        transform: translateY(-4px);
        transition: 0.3s;
    }

    .footer__icons p {
        font-size: 1.2rem;
    }

    .footerInstagram__icon {
        width: 35px;
        height: 35px;
    }

    .coyote__vintage {
        font-size: 1.6rem;
    }

    .footerShop__icon {
        width: 35px;
        height: 35px;
    }

    .copy {
        /* font-size: 1.5rem;
        font-family: Open Sans;
        margin: 5px 0 18px; */
        max-width: 1330px;
        margin: 18px auto 0;
        padding: 0 2.7%;
        text-align: right;
        }
 }
