
/* COMMON */
/* ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Zen+Kaku+Gothic+New:wght@400;500;600;700&display=swap");

body {
    overflow-x: hidden;
    font-size: 15px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

body.fixed {
    position: fixed;
}

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

a:hover {
    transition: 0.2s;
}

a:hover img {
    opacity: 0.8;
    transition: 0.2s;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media (max-width: 896px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* HEADER */
/* ============================================ */

header {
    position: fixed;
    top: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 120px;
}

header.scroll {
    background: rgba(255, 255, 255, 0.9);
    transition: 1s;
}

header .logo {
    padding: 0 50px;
}

header nav {
    display: flex;
    justify-content: flex-end;
}

header .nav-grobal {
    display: flex;
    align-items: center;
}

header .nav-grobal li {
    position: relative;
    margin: 0 15px;
}

header .nav-grobal .nav-inner {
    position: absolute;
    top: 20px;
    display: none;
}

header .nav-grobal .nav-inner li {
    margin: 10px auto;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    cursor: pointer;
    transition: 0.1s;
}

header .nav-grobal .nav-inner li:hover {
    background: #ef6f66;
    color: #fff;
}

header .nav-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

header .cart {
    position: relative;
    margin-left: 15px;
}

header .cart span {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef6f66;
    color: #fff;
    font-size: 12px;
}

#nav-toggle {
    display: none;
}

@media (max-width: 896px) {
    header {
        height: 60px;
        background: #fff;
    }

    header .logo {
        padding: 0 20px;
    }

    header .logo img {
        height: 15px;
    }

    header .nav-grobal {
        position: absolute;
        top: 60px;
        display: none;
        width: 100%;
        background: #fff;
    }

    header .nav-grobal li {
        margin: 30px auto;
        text-align: center;
    }

    header .nav-button {
        position: absolute;
        top: 15px;
        right: 60px;
        padding: 0;
    }

    header .cart {
        margin-left: 10px;
    }

    #nav-toggle {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10000;
        display: block;
        width: 60px;
        height: 60px;
        cursor: pointer;
    }

    #nav-toggle div {
        position: relative;
    }

    #nav-toggle span {
        position: absolute;
        left: 20px;
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: #000;
        -webkit-transition: 0.5s ease-in-out;
           -moz-transition: 0.5s ease-in-out;
                transition: 0.5s ease-in-out;
    }

    #nav-toggle span:nth-child(1) {
        top: 20px;
    }

    #nav-toggle span:nth-child(2) {
        top: 28px;
    }

    #nav-toggle span:nth-child(3) {
        top: 36px;
    }

    .open #nav-toggle span:nth-child(1) {
        top: 28px;
        -webkit-transform: rotate(135deg);
           -moz-transform: rotate(135deg);
                transform: rotate(135deg);
    }

    .open #nav-toggle span:nth-child(2) {
        left: 50%;
        width: 0;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 28px;
        -webkit-transform: rotate(-135deg);
           -moz-transform: rotate(-135deg);
                transform: rotate(-135deg);
    }
}

/* FOOTER */
/* ============================================ */

footer {
    padding: 120px 50px 50px;
}

footer .copyright {
    text-align: center;
}

#pagetop {
    position: fixed;
    right: 50px;
    bottom: 50px;
    cursor: pointer;
}

@media screen and (max-width: 896px) {
    #pagetop {
        right: 15px;
        bottom: 15px;
    }

    #pagetop img {
        width: 60px;
    }
}

/* POINT */
/* ============================================ */

.li-point li {
    position: relative;
    display: flex;
    margin: 120px auto 0;
}

.li-point li:nth-child(odd) .box-txt {
    padding: 120px 120px;
}

.li-point li:nth-child(even) .box-txt {
    padding: 60px 120px;
    /* background: rgba(139, 128, 120, 0.1); */
}

.li-point li .box-txt .ico {
    position: relative;
    left: -30px;
}

.li-point li:nth-child(odd) .box-txt .ico {
    top: 15px;
}

.li-point li .box-txt .img {
    margin: 0 auto 30px;
}

.li-point li .box-txt .ttl {
    letter-spacing: 0.1em;
    font-size: 30px;
    line-height: 1.5;
}

.li-point li .box-txt .txt {
    margin: 15px 0 0 0;
    line-height: 2;
}

.li-point li .box-txt .btn {
    display: block;
    margin: 30px auto 0;
    padding: 20px;
    border: 1px solid #8b8078;
    text-align: center;
}

.li-point li .box-txt .btn:hover {
    border: 1px solid #ef6f66;
    background: #ef6f66;
    color: #fff;
}

.li-point li.size-L {
    max-width: 1280px;
}

.li-point li.size-L .box-img {
    position: absolute;
    width: 50vw;
    height: 100%;
}

.li-point li.size-L .box-txt {
    max-width: 50%;
}

.li-point li.size-L .box-txt .img img {
    width: 100%;
    height: auto;
}

.li-point li.size-S {
    min-height: 400px;
    max-width: 1280px;
}

.li-point li.size-S .box-img,
.li-point li.size-S .box-txt {
    width: 50%;
}

.li-point li:nth-child(1),
.li-point li:nth-child(5) {
    justify-content: flex-end;
}

.li-point li:nth-child(1) .box-img,
.li-point li:nth-child(5) .box-img {
    left: calc(((100vw - 100%) / 2) * -1);
}

.li-point li:nth-child(3) .box-img {
    right: calc(((100vw - 100%) / 2) * -1);
}

@media (max-width: 1023px) {
    .li-point li:nth-child(odd) .box-txt,
    .li-point li:nth-child(even) .box-txt {
        padding: 60px;
    }
}

@media (max-width: 896px) {
    .li-point li {
        flex-direction: column;
        margin: 0 auto;
    }

    .li-point li .box-txt {
        position: relative;
        top: -30px;
        z-index: 1;
        order: 2;
        margin: 0 20px;
        background: #fff !important;
    }

    .li-point li:nth-child(odd) .box-txt {
        padding: 0 20px 30px;
    }

    .li-point li:nth-child(even) .box-txt {
        padding: 15px 20px 30px;
    }

    .li-point li .box-txt .ico {
        left: 0;
    }

    .li-point li:nth-child(odd) .box-txt .ico {
        top: 15px;
    }

    .li-point li .box-txt .ico img {
        height: 60px;
    }

    .li-point li .box-txt .ttl {
        font-size: 20px;
    }

    .li-point li.size-L .box-img {
        position: relative;
        width: 100vw;
        height: 66.6vw;
    }

    .li-point li.size-L .box-txt {
        max-width: inherit;
    }

    .li-point li.size-S .box-txt {
        width: auto;
    }

    .li-point li.size-S .box-img {
        position: relative;
        width: 100vw;
        height: 66.6vw;
    }

    .li-point li:nth-child(1) .box-img,
    .li-point li:nth-child(5) .box-img {
        left: auto;
    }

    .li-point li:nth-child(3) .box-img {
        right: auto;
    }
}


/* ITEM - LIST */
/* ============================================ */

#sec-item-list .box-ttl {
    padding: 120px 0 0;
}

#sec-item-list .box-ttl .ttl {
    text-align: center;
    font-size: 30px;
}

#sec-item-list .box-ttl .nav-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto 0;
}

#sec-item-list .box-ttl .nav-category li {
    margin: 0 5px;
}

#sec-item-list .box-ttl .nav-category li a {
    position: relative;
    display: block;
    padding: 4px 10px 6px;
    border: 1px solid #000;
}

#sec-item-list .box-ttl .nav-category li a:hover,
#sec-item-list .box-ttl .nav-category li.active a {
    background: #000;
    color: #fff;
}

@media (max-width: 896px) {
    #sec-item-list .box-ttl {
        padding: 60px 20px 0;
    }

    #sec-item-list .box-ttl .ttl {
        font-size: 20px;
    }

    #sec-item-list .box-ttl .nav-category {
        margin: 20px auto 0;
    }

    #sec-item-list .box-ttl .nav-category li {
        margin: 0;
        width: 50%;
        text-align: center;
    }

    #sec-item-list .box-ttl .nav-category li a {
        padding: 10px;
        border: 1px solid #fff;
        background: rgba(139, 128, 120, 0.7);
        color: #fff;
    }
}

#sec-item-list .li-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1280px;
}

#sec-item-list .li-item li {
    margin: 60px 0 0 0;
    max-width: 360px;
    width: 30%;
}

#sec-item-list .li-item li img {
    max-height: 360px;
    width: 100%;
    height: 28vw;

    object-fit: contain;
}

#sec-item-list .li-item .box-txt {
    margin: 15px auto 0;
    text-align: center;
}

#sec-item-list .li-item .box-txt .name {
    font-weight: bold;
}

#sec-item-list .li-item .box-txt .price {
    margin-top: 5px;
    white-space: nowrap;
}

#sec-item-list .li-item li:nth-child(3n-1).is-animated {
    transition-delay: 0.1s;
}

#sec-item-list .li-item li:nth-child(3n).is-animated {
    transition-delay: 0.2s;
}

@media (min-width: 1280px) {
    #sec-item-list .li-item {
        justify-content: flex-start;
    }

    #sec-item-list .li-item li:nth-child(3n-2) {
        margin-right: 60px;
    }

    #sec-item-list .li-item li:nth-child(3n-1) {
        margin-right: 60px;
        transition-delay: 0.1s;
    }

    #sec-item-list .li-item li:nth-child(3n) {
        margin-right: 0;
        transition-delay: 0.2s;
    }
}

@media (max-width: 1279px) {
    #sec-item-list .li-item li {
        max-width: inherit;
    }
}
@media (max-width: 896px) {
    #sec-item-list .li-item {
        justify-content: space-between;
        padding: 0 20px;
    }

    #sec-item-list .li-item li {
        margin: 20px 0 0 0;
        padding: 0 0 30px 0;
        max-width: inherit;
        width: calc(50% - 10px);
    }
}
