@import url("https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap");

body {
    overflow-x: hidden;
    background: #20140f;
    color: #feffef;
    font-family: "Yuji Syuku", sans-serif;
}

body.fixed {
    position: fixed;
}

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

    object-fit: contain;
}

a:hover {
    color: #cb2202;
    transition: 0.2s;
}

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

.pc {
    display: block;
}

.sp {
    display: none;
}

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

    .sp {
        display: block;
    }
}

/* ------------------------------

	LOGO

------------------------------ */

.wrap-logo-L {
    position: absolute;
    width: 100%;
}

.wrap-logo-L .box-logo-L {
    margin: 0 auto;
    padding: 0 40px;
    width: 1280px;
}

.wrap-logo-L .box-logo-L .logo {
    position: absolute;
    z-index: 10001;
    padding-top: 15px;
}

.wrap-logo-L .box-logo-L .logo a:hover img {
    opacity: 1;
}

@media screen and (max-width: 896px) {
    .wrap-logo-L {
        display: none;
    }
}

/* ------------------------------

	HEADER

------------------------------ */

.wrap-header {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 120px;
    background: #20140f;
}

.wrap-header .box-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1280px;
    height: 120px;
}

.wrap-header .box-L {
    padding: 15px;
}

.wrap-header .box-R {
    width: calc(100% - 280px);
}

.wrap-header .nav-sub {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.wrap-header .nav-sub li {
    margin: 0 0 0 20px;
    font-size: 12px;
}

.wrap-header .nav-sub li img {
    margin: 0 5px 0 0;
}

.wrap-header .nav-grobal {
    display: flex;
    justify-content: flex-start;
    margin: 40px 0 0 0;
}

.wrap-header .nav-grobal .hera {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
    padding: 0 0 0 40px;
    height: 49px;
    background: url("../img/common/ico-hera.svg") no-repeat 0 50%;
    font-size: 20px;
}

.wrap-header .nav-grobal .nav-balloon {
    position: absolute;
    top: 49px;
    left: 0;
    z-index: 100;
    display: none;
    background: transparent;
    white-space: nowrap;
}

.wrap-header .nav-grobal .nav-balloon::before {
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #cb2202;
    content: "";
}

.wrap-header .nav-grobal .nav-balloon li a {
    display: block;
    margin: 5px 0 0 0;
    padding: 15px 20px;
    background: #cb2202;
    text-align: center;
    font-size: 16px;
}

.wrap-header .nav-grobal .nav-balloon li a:hover {
    background: red;
    color: #fefefe;
}

.wrap-header .cart {
    position: absolute;
    right: 40px;
    bottom: 20px;
}

.wrap-header .cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 2px 4px 4px 2px;
    border-radius: 50%;
    background: #cb2202;
    text-align: center;
    letter-spacing: -2px;
    font-size: 12px;
}

@media screen and (max-width: 896px) {
    .wrap-header {
        height: 60px;
    }

    .wrap-header .box-header {
        display: block;
        padding: 0;
        height: 60px;
    }

    .wrap-header .box-L {
        padding: 10px 20px;
    }

    .wrap-header .box-L .logo img {
        height: 40px;
    }

    .wrap-header .box-R {
        width: auto;
    }

    .wrap-header nav {
        position: absolute;
        top: 60px;
        left: 0;
        display: none;
        overflow: scroll;
        padding-bottom: 60px;
        width: 100%;
        height: calc(100vh - 60px);
        background: #000;
    }

    .wrap-header nav a {
        display: block;
    }

    .wrap-header .nav-sub {
        justify-content: flex-start;
        margin: 0;
    }

    .wrap-header .nav-sub li {
        margin: 0;
        padding: 20px;
        width: 50%;
        border-right: 1px solid #20140f;
        text-align: center;
    }

    .wrap-header .nav-sub li:last-child {
        border-right: 0;
    }

    .wrap-header .nav-sub li img {
        margin: 0 0 5px 0;
    }

    .wrap-header .nav-grobal {
        display: block;
        margin: 0;
        border-top: 1px solid #20140f;
    }

    .wrap-header .nav-grobal .hera {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        height: auto;
        background: url("../img/common/ico-hera.svg") no-repeat 15px 15px;
        font-size: 20px;
    }

    .wrap-header .nav-grobal .hera a {
        padding: 15px 20px 15px 50px;
        border-bottom: 1px solid #20140f;
    }

    .wrap-header .nav-grobal .nav-balloon {
        position: relative;
        top: auto;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .wrap-header .nav-grobal .nav-balloon li {
        width: 50%;
    }

    .wrap-header .nav-grobal .nav-balloon li:nth-child(odd) {
        width: calc(50% - 1px);
    }

    .wrap-header .nav-grobal .nav-balloon::before {
        display: none;
    }

    .wrap-header .nav-grobal .nav-balloon li a {
        display: block;
        margin: 0;
        padding: 15px 20px;
        text-align: left;
    }

    .wrap-header .nav-grobal .nav-balloon li a br {
        display: none;
    }

    .wrap-header .cart {
        position: absolute;
        right: 80px;
        bottom: 10px;
    }

    .wrap-header .cart span {
        position: absolute;
        top: -5px;
        right: -5px;
        padding: 2px 4px 4px 2px;
        border-radius: 50%;
        background: #cb2202;
        text-align: center;
        letter-spacing: -2px;
        font-size: 12px;
    }
}

/* ------------------------------

	MAIN

------------------------------ */

main {
    padding-top: 120px;
}

@media screen and (max-width: 896px) {
    main {
        padding-top: 60px;
    }
}

/* ------------------------------

	PANKUZU

------------------------------ */

.wrap-pankuzu {
    background: #000;
}

.wrap-pankuzu .list-pankuzu {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 20px 40px;
    max-width: 1280px;
    font-size: 12px;
}

.wrap-pankuzu .list-pankuzu li::after {
    margin: 0 5px 0 10px;
    content: "〉";
    opacity: 0.5;
}

.wrap-pankuzu .list-pankuzu li:last-child::after {
    content: none;
}

@media screen and (max-width: 896px) {
    .wrap-pankuzu .list-pankuzu {
        overflow-x: scroll;
        justify-content: flex-start;
        padding: 20px;
        max-width: inherit;
        white-space: nowrap;
    }
}

/* ------------------------------

	LIST

------------------------------ */

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

.list-list li {
    margin: 60px 0 0 0;
    max-width: 285px;
    width: 25%;
}

.list-list li img {
    width: 100%;
}

.list-list .box-txt {
    margin: 10px 0 0 0;
}

.list-list .box-txt .name {
    margin: 10px 5px 0 0;
}

.price {
    text-align: right;
    white-space: nowrap;
}

a:hover .price {
    color: #feffef !important;
}

.price .font-S {
    font-size: 10px;
}

.price .font-L {
    margin-right: 5px;
    color: #c60;
    letter-spacing: -0.1em;
    font-weight: bold;
    font-size: 24px;
}

@media screen and (min-width: 1280px) {
    .list-list {
        justify-content: flex-start;
    }

    .list-list li:nth-child(4n-3) {
        margin-right: 10px;
        margin-left: 0;
    }

    .list-list li:nth-child(4n-2) {
        margin-right: 10px;
        margin-left: 10px;
    }

    .list-list li:nth-child(4n-1) {
        margin-right: 10px;
        margin-left: 10px;
    }

    .list-list li:nth-child(4n) {
        margin-right: 0;
        margin-left: 10px;
    }
}

@media screen and (max-width: 1279px) {
    .list-list li {
        max-width: inherit;
        width: 48%;
    }
}

@media screen and (max-width: 896px) {
    .list-list {
        padding: 0 20px;
    }

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

    .list-list .box-txt {
        display: block;
    }

    .price {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: right;
    }
}

/* ------------------------------

	FOOTER

------------------------------ */

.wrap-footer {
    margin: 120px auto 0;
    background: #000;
}

.wrap-footer #pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    cursor: pointer;
}

.wrap-footer .box-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
    padding: 60px 40px;
    max-width: 1280px;
}

.wrap-footer .nav-sitemap {
    display: flex;
    margin: 20px 0;
}

.wrap-footer .nav-sitemap li {
    padding: 0 20px;
    border-right: 1px solid #707070;
}

.wrap-footer .nav-sitemap li:first-child {
    padding-left: 0;
}

.wrap-footer .nav-sitemap li:last-child {
    padding-right: 0;
    border: none;
}

.wrap-footer .copyright {
    position: relative;
    padding-left: 16px;
    font-size: 12px;
}

.wrap-footer .copyright span {
    position: absolute;
    left: 0;
    font-size: 18px;
}

.wrap-footer .box-calender {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 0 40px;
    width: 450px;
}

.wrap-footer .box-calender .ttl {
    padding: 10px 0;
    width: 100%;
    background: #20140f;
    text-align: center;
}

.wrap-footer .box-calender .table-calender {
    max-width: 210px;
    width: 50%;
    border-collapse: collapse;
}

.wrap-footer .box-calender .table-calender th {
    padding: 20px 0;
    text-align: center;
}

.wrap-footer .box-calender .table-calender td {
    padding: 4px 0 6px;
    border: 1px solid #707070;
    text-align: center;
}

@media screen and (max-width: 896px) {
    .wrap-footer {
        margin: 20px auto 0;
        padding: 0 0 60px;
    }

    .wrap-footer #pagetop {
        right: 0;
        bottom: 0;
        padding: 10px;
        background: #20140f;
    }

    .wrap-footer #pagetop img {
        width: 80px;
    }

    .wrap-footer .box-footer {
        display: block;
        align-items: flex-end;
        justify-content: space-between;
        margin: 0 auto;
        padding: 20px;
    }

    .wrap-footer .nav-sitemap {
        display: block;
        margin: 20px 0;
        border-top: 1px solid #707070;
    }

    .wrap-footer .nav-sitemap li {
        padding: 10px 0 !important;
        border-right: none;
        border-bottom: 1px solid #707070 !important;
    }

    .wrap-footer .copyright {
        position: relative;
        padding-left: 16px;
    }

    .wrap-footer .box-calender {
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0 0 0;
        width: auto;
    }

    .wrap-footer .box-calender .table-calender {
        max-width: inherit;
        width: 100%;
    }
}

/* ------------------------------

	NAV

------------------------------ */

#nav-toggle {
    display: none;
}

@media (max-width: 896px) {
    #nav-toggle {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10000;
        display: block;
        width: 60px;
        height: 60px;
        background: #000;
        cursor: pointer;
    }

    #nav-toggle div {
        position: relative;
    }

    #nav-toggle span {
        position: absolute;
        left: 20px;
        display: block;
        width: 20px;
        height: 3px;
        border-radius: 3px;
        background: #fff;
        -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: 19px;
    }

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

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

    .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);
    }
}
