*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Signika', sans-serif;
}
body {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
/* Navigation Bar */
.wrapper{
	width: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
    z-index: 100;
    background-color: #000;
    box-shadow: 0 0 5px #000;
}
.logo{
    line-height: 8vh;
}
.logo img{
    height: 6vh;
    padding: 0;
    margin: 0;
}
.nav-indicator{
    width: 100%;
    margin: 0;
    height: 8vh;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
}
.fa-shopping-bag{
    color: white;
    font-size: 18px;
}
.cart-wrap{
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.menu-right-part{
    display: flex;
}
.menu-right-part .fa{
    cursor: pointer;
    color: white;
    font-size: 20px;
    padding: 0px 5px;
}
#language{
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 8vh;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 101;
}
#language.active{
    opacity: 0.8;
}
#language-options{
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 100px;
    position: fixed;
    background-color: #000;
    color: white;
    padding: 10px;
    display: none;
}
#language-options.active{
    display: block;
}
#language-options span{
    display: block;
    padding: 3px;
    line-height: 20px;
    opacity: 0.8;
    transition: all 0.4s;
}
#language-options span:hover{
    opacity: 1;
}
@media screen and (max-width: 1170px){
    #language{
        top: 0vh;
        left: 20px;
    }
    .burger-wrapper{
        display: block;
    }
    .menu-wrapper{
        display: none;
        position: absolute;
        width: 100%;
        top: 8vh;
    }
    .menu{
        z-index: 999;
        right: 0px;
        top: 8vh;
        display: flex;
        flex-direction: column;
        overflow: scroll;
        align-items: center;
        width: 100%;
        transition: transform 0.5s ease-in;
    }
    .menu li{
        text-align: center;
        padding: 0px;
        margin: 0px;
        background-color: #3b3b3b;
        width: 100%;
        color: #fff;
    }
    .menu li:hover ul{
        position: relative;
    }
    .menu li ul{
        width: 100%;
        text-align: center;
    }
    .menu li ul li{
        background-color: red;
    }
}
@media screen and (min-width: 1171px){
    #language{
        top: 0vh;
        left: 20px;
    }
    .menu-wrapper{
        display: block;
    }
    .burger-wrapper{
        display: none;
    }
    nav ul li:hover{
        opacity: 0.85;
    }
}
.burger-wrapper{
    position: relative;
}
.burger{
    position: absolute;
    cursor: pointer;
    transform: translateY(-50%);
    top: 50%;
}
.burger div{
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
	transition: all 0.3s ease;
}
.toggle .line1{
	transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
	opacity: 0;
}
.toggle .line3{
	transform: rotate(45deg) translate(-5px, -6px);
}
.menu-active{
    transform: translateX(0%);
}
.show{
    display: block;
}
.offset{
	min-height: 8vh;
}
/*#item-count{
    color: white;
    font-size: 12px;
    line-height: 16px;
    height: 16px;
    width: 16px;
    background-color: red;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: -2px;
}*/
.footer{
    width: 100%;
    padding: 0;
    margin-top: 0px;
    overflow: hidden;
    background-color: #000;
}
.copy-right-info{
    padding: 20px;
    margin: 0;
    background-color: #363636;
    line-height: 30px;
    color: #fff;
}
.price-tag{
    color: #f56b0f;
    font-weight: 800;
}
#footer-copy-right-value{
    font-size: 16px;
    text-align: center;
}
#cart-content-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 101;
}
.cartActive{
    position: relative;
    left: 5%;
    top: 5vh;
    width: 90%;
    height: 90vh;
    background: rgba(0, 0, 0);
}
.cartWrapActive{
    display: none;
}
#item-list{
    padding: 20px;
    color: black;
    font-size: 16px;
}
#item-list h5{
    text-align: center;
    font-size: 18px;
}
#item-list img{
    width: 100%;
}
#cart-content-display .fa{
    cursor: pointer;
    opacity: 0.8;
}
#cart-content-display .fa:hover{
    opacity: 1;
}
#item-list .empty-cart{
    margin-top: 50px;
    text-align: center;
    font-size: 30px;
}
.quantity{
    text-align: center;
}
.fa-trash-o{
    font-size: 14px;
    color: red;
    font-weight: bold;
    z-index: 200;
}
.fa-minus-square, .fa-plus-square{
    padding: 3px;
}
.fa-times{
    color: white;
    position: absolute;
    right: 20px;
    top: 14px;
    cursor: pointer;
    font-size: 24px;
}
.total-price{
	padding: 10px;
	font-size: 18px;
}
.ppcheckout{
	width: 100%;
	padding: 2px 0px;
	transition: all 0.2s;
}
.ppcheckout:hover{
	opacity: 0.8;
}
.payment-remainder{
	padding: 0px 10px;
	font-size: 16px;
}
.card-icon{
	width: 20%;
	float: left;
	padding: 2px;
}
#checkout{
	margin-bottom: 80px;
}
.space-set{
	padding: 5px;
}
.single-item{
    padding: 5px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}
.JP{
    display: none;
}
.menu-list{
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
}
.menu-list li{
    display: inline-block;
}
.menu-list a{
    font-size: 18px;
    text-decoration: none;
    margin: 0 10px;
    color: white;
}
.copy-right-info li{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.copy-right-info li a{
    text-decoration: none;
    color: white;
    margin: 0px;
    padding: 0px;
}
.split-part{
    clear: both;
    height: 2px;
    width: 100%;
    background-color: black;
    margin-top: 30px;
    margin-bottom: 20px;
}
.specified-act i{
    font-size: 50px;
}
.fa-cc-visa, .fa-cc-mastercard, .fa-cc-jcb{
    font-size: 50px;
    margin-right: 20px;
}
.fa-twitter, .fa-youtube-square{
    font-size: 34px;
    line-height: 50px;
    margin-right: 20px;
}
.social-media-icons a,
.social-media-icons a:hover{
    text-decoration: none;
    color: white;
}
.EN{
    display: none;
}
#EN-cart{
    display: none;
}
.JP{
    display: inline;
}
#JP-cart{
    display: block;
}
#adult-only-notification{
    position: fixed;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    z-index: 200;
    text-align: center;
}
#adult-info{
    padding: 20px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 28px;
    background-color: rgba(0,0,0,0.9);
}
#adult-only-notification{
    background-color: rgba(0,0,0,0.6);
}
#not-qualified a{
    text-decoration: none;
    color: #fff;
}
#qualified{
    cursor: pointer;
}
#not-qualified, #qualified{
    padding: 10px;
    margin-top: 20px;
    opacity: 0.8;
}
#not-qualified:hover, #qualified:hover{
    opacity: 1;
}
.menu{
    display: flex;
    justify-content: space-evenly;
    line-height: 8vh;
}
nav ul li{
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 0px 15px;
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}
nav ul li:hover,
nav ul li:focus,
nav ul li a:hover,
nav ul li a:focus{
    text-decoration: none;
    color: white;
    font-weight: bold;
}
nav ul li ul{
    position: absolute;
    left: 0px;
    width: 200px;
    background-color: rgba(0,0,0);
    display: none;
}
nav ul li ul li{
    line-height: 5vh;
}
nav ul li ul li a{
    display: inline-block;
    width: 100%;
    line-height: 5vh;
}
nav ul li:hover > ul{
    display: block;
}
.fa-shopping-bag{
    display: inline-block;
    line-height: 8vh;
}
.fa-angle-down{
    font-weight: bold;
    padding: 0px 20px 0px 5px;
}
.cart-item{
    margin-left: 2px;
    color: white;
}
.clear-element{
    clear: both;
}
.fa-angle-down-lan{
    font-weight: bold;
    font-size: 14px;
    padding: 2px;
    margin: 0;
}
.menu-text{
    font-size: 16px;
    font-weight: bold;
}
input[type="submit"], #continue-icon{
    margin-top: 20px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #333333;
    color: white;
    font-weight: 800;
    font-size: 18px;
}
#continue-icon{
    cursor: pointer;
    text-align: center;
}
#continue-icon a, #continue-icon a:hover{
    text-decoration: none;
    color: white;
}
.fa:hover{
    cursor: pointer;
}
h3{
	font-size: 24px;
	text-align: center;
	font-weight: bold;
}
.order-total-price{
    margin-top: 15px;
    font-size: 18px;
}