* {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
/* header */
header {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.header-left {
    padding-left: 20px;
    width: 520px;
}
.header-right {
    padding-right: 20px;
    width: calc(100% - 540px);
}
.logo,
.logo picture {
    display: block;
    line-height: 0;
}
.header-nav__inner,
.header-nav__links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.header-nav__link a {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.header-cart__link {
    width: 100px;
}
.header-cart__link a {
    background: #71bb2b;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.header-cart__img {
    line-height: 0;
    height: 35px;
    margin: 0;
}
.header-cart__img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.header-bg {
    background: rgb(0 0 0 / 50%);
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
@media screen and (max-width: 1268px) {
    header {
        padding: 10px 0;
    }
    .header-left {
        padding-left: 0;
        width: 320px;
    }
    .header-right {
        padding-right: 10px;
        width: calc(100% - 340px);
    }
    .header-nav__inner,
    .header-nav__links {
        gap: 15px;
    }
    .header-nav__link a {
        font-size: 14px;
    }
    .header-cart__link {
        width: 80px;
    }
    .header-cart__img {
        height: 25px;
    }
    .header-cart__link a {
        border-radius: 6px;
        font-size: 14px;
        padding: 5px 0 0;
    }
}
@media screen and (max-width: 968px) {
    .header-inner {
        flex-wrap: nowrap;
    }
    .header-left {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 150px;
    }
    .header-right {
        width: calc(100% - (100px + 55px));
    }
    .logo {
        width: 100px;
    }
    .header-nav__inner,
    .header-nav__links {
        gap: 12px;
    }
    .header-nav__link a {
        font-size: 12px;
    }
    .header-cart__link {
        width: 50px;
    }
    .header-cart__img {
        height: 20px;
    }
    .header-cart__link a {
        font-size: 12px;
        padding: 5px 0 0;
    }
    .nav {
        background: #fff;
        height: 100%;
        margin: 0;
        position: fixed;
        left: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 300px;
        z-index: 9999;
    }
    .nav.open {
        left: 0;
    }
    /* hamberger */
    .header-menu {
        display: block;
        height: 20px;
        margin: 0 15px 0 10px;
        position: relative;
        text-align: center;
        width: 25px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #545454;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 9px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -12px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -10px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
}
@media screen and (max-width: 768px) {}


/* nav */
.nav {
    background: #71bb2b;
    margin: 10px 0 0;
    padding: 8px 15px;
    width: 100%;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
}
.search-form {
    width: calc(100% - 310px);
}
.search-form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 300px;
}
.nav-link__btn {
    border-left: 1px solid #000;
    height: 40px;
    width: 50%;
}
.nav-link__btn a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    width: 100%;
}
.nav-link__btn a p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.nav-link__img {
    line-height: 0;
    width: 35px;
}
.search-form__select select,
.search-form__input input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.search-form__select select,
.search-form__input input,
.search-form__btn a {
    border-radius: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    height: 40px;
    outline: none;
    padding: 10px;
    width: 100%;
}
.search-form__select {
    background-color: #000;
    width: 100px;
}
.search-form__select select {
    background: #000;
    background-image: url(../images/arrow-d-w.png);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: right 10px center;
    border: 0;
    color: #fff;
    padding-right: 28px;
}
.search-form__select select option {
    background: #fff;
    color: #000;
}
.search-form__input {
    width: calc(100% - 200px);
}
.search-form__input input {
    background: #fff;
    outline: none;
    
}
.search-form__btn {
    width: 100px;
}
.search-form__btn a {
    background: #000;
    color: #fff;
    justify-content: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
    text-align: center;
}
.search-form__btn a::before {
    background: url(../images/search-w.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 22px;
    margin-right: 8px;
    width: 22px;
}
.nav .side-section.side-section-category, .nav .sns-list.sns-side, .nav .side-section.side-section-others {
    display: none;
}
@media screen and (max-width: 968px) {
    .nav .side-section.side-section-category, .nav .sns-list.sns-side, .nav .side-section.side-section-others {
        display: block;
    }
    .nav .side-section.side-section-category {
        background: #fff;
        overflow: hidden;
    }
    .side-category-item {
        border-bottom: 1px solid #000;
    }
    .side-category-item::after {
        display: none;
    }
    .nav .sns-list.sns-side {
        width: 100%;
    }
    .nav .side-section.side-section-others {
        margin: 0;
        width: 100%;
    }
    .nav {
        background: #fff;
        height: 100%;
        padding: 75px 15px 50px;
        overflow-y: auto;
    }
    .search-form {
        width: 100%;
    }
    .nav-links {
        background: #000;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        margin: 15px 0;
        width: 100%;
    }
    .nav-link__btn {
        border-left: 0;
        height: 40px;
        width: 50%;
    }
    .nav-link__btn:not(:first-child) {
        border-left: 1px solid #fff;
    }
    .nav-link__btn a p {
        font-size: 14px;
    }
    .nav-link__img {
        width: 30px;
    }
    .search-form__select select,
    .search-form__input input,
    .search-form__btn a {
        font-size: 16px;
        height: 40px;
    }
    .search-form__select {
        background-color: transparent;
        margin: 0 0 5px;
        width: 100%;
    }
    .search-form__select select {
        background: url(../images/arrow-d.png) no-repeat;
        background-color: #fff;        
        background-size: 14px;
        background-position: right 10px center;
        border: 1px solid #000;
        color: #333;
        padding: 0 28px 0 10px;
    }
    .search-form__input {
        width: 100%;
    }
    .search-form__btn {
        margin: 10px auto 0;
        width: 100%;
        max-width: 200px;
    }
}
@media screen and (max-width: 768px) {}