@charset "UTF-8";

@import url("https://use.fontawesome.com/releases/v5.1.0/css/all.css"); 
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/****************************************

          RESET

*****************************************/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    font-size: 62.5%;
    margin:0!important;
}

body {
    font-size: 1.6rem;
    line-height: 1.4;

}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
}

img {
    border-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    cont
}
[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}
.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    left: -9999px;
    top: -9999px;
}
p {
    text-align: justify;
    text-justify: inter-ideograph;        
}
/****************************************

          General Setting

*****************************************/
.inView {
    position: relative;
    overflow: hidden;
}
.titletxt {
    -webkit-transform: translate3d(100.1%,0,0);
    transform: translate3d(100.1%,0,0);
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.075,.82,.165,1);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}
.inView.inview_anime .titletxt {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.inView .titletxt:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
    transition-delay: 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right;
    transform-origin: right;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.075,.82,.165,1);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}
.inView.inview_anime .titletxt:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}


body {
	margin:0;
	padding:0;
	font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3", "Meiryo", sans-serif;	
	background:#4CBBB4;
}
img.responsiveimg {
	width:100%;
	height:auto;	
}
a {text-decoration: none; color: #000;}
a:link {color: #000;}
a:hover {color: #000;text-decoration: underline;}
a:visited {color: #000;}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/* For modern browsers */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
.cf:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}
html br.clear {
	height:0px;
	clear:both;
	display: hidden;
	line-height:0;
	font-size:0px;
	zoom:1;
}
.wrapper {
    width: 100%;
    height:100vh;
    display: flex;
     justify-content: center;
    align-items: center;
    background:url(img/bg.jpg) center center /cover;    
}
.flex-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;			
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;	
}
/* --------------------------------------------------- side menu */
header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 98;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 0;
    height: 0;
    margin-top:90px;
    transition: .5s ease;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.side-open header {
	width:100%;
	background:none;
	height:calc(100vh - 45px);
	margin-top:45px;
}
.l-toggle {
	position:relative;
	display: -ms-flexbox;
	display: flex;
	padding: 22px 0;
	width:100%;
	cursor: pointer;
	text-align:center;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}
.menu-btn span {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	margin: auto;
	width: 20px;
	height: 2px;
	background-color: #fff;
	transition: .6s ease;
}
.menu-btn .top {
	-ms-transform: translate(0px, -5px) rotate(0);
	    transform: translate(0px, -5px) rotate(0);
	-ms-transform-origin: center center;
	    transform-origin: center center;
}
.side-open .menu-btn .top {
	width: 22px;
	-ms-transform: translate(-2px, 0) rotate(45deg);
	    transform: translate(-2px, 0) rotate(45deg);
}
.menu-btn .middle {
	-ms-transform: translate(0px, 0px) rotate(0);
	    transform: translate(0px, 0px) rotate(0);
	-ms-transform-origin: center center;
	    transform-origin: center center;
}
.side-open .menu-btn .middle {
	width: 20px;
	-ms-transform: translate(-10px, 0px) rotate(0);
	    transform: translate(-10px, 0px) rotate(0);
	opacity:0;
}
.menu-btn .bottom {
	-ms-transform: translate(0px, 5px) rotate(0);
	    transform: translate(0px, 5px) rotate(0);
	-ms-transform-origin: center center;
	    transform-origin: center center;
}
.side-open .menu-btn .bottom {
	width: 22px;
	-ms-transform: translate(-2px, 0) rotate(-45deg);
	    transform: translate(-2px, 0) rotate(-45deg);
}
.menu {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% / 3);
	height:100vh;
	background: rgba(255,255,255,.95);
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: hidden;
	opacity: 0;
	-moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -o-box-sizing: border-box;
   -ms-box-sizing: border-box;
   box-sizing: border-box;		
}
.side-open .menu-btn {
	background:none;	
}
.side-open .menu-btn span {
    background-color: #000;
}
.side-open .menu {
	position:absolute;
	width: calc(100% / 3);
	height:calc(100vh - 45px);
	overflow-x:hidden;
	overflow-y:auto;
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: visible;
	opacity: 1;
	-moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -o-box-sizing: border-box;
   -ms-box-sizing: border-box;
   box-sizing: border-box;	
   border-left:1px solid #000;	
}
.menu ul {
	width:100%;
	text-align:center;
	margin:0;
}
.menu li {
	opacity: 0;
	display:block;
	height:45px;
	border-bottom:1px solid #000;
}
.menu li a {
	display:block;	
}
.menu li a span {
	display:block;
}
.side-open .menu li {
	opacity: 1;
}
.side-open .menu li:nth-child(1) {
	-webkit-transition: opacity 1s ease .5s;
	transition: opacity 1s ease .5s;
}
.side-open .menu li:nth-child(2) {
	-webkit-transition: opacity 1s ease .6s;
	transition: opacity 1s ease .6s;
}
.side-open .menu li:nth-child(3) {
	-webkit-transition: opacity 1s ease .7s;
	transition: opacity 1s ease .7s;
}
.side-open .menu li:nth-child(4) {
	-webkit-transition: opacity 1s ease .8s;
	transition: opacity 1s ease .8s;
}
.side-open .menu li:nth-child(5) {
	-webkit-transition: opacity 1s ease .9s;
	transition: opacity 1s ease .9s;
}
.side-open .menu li:nth-child(6) {
	-webkit-transition: opacity 1s ease 1s;
	transition: opacity 1s ease 1s;
}
.side-open .menu li:nth-child(7) {
	-webkit-transition: opacity 1s ease 1.1s;
	transition: opacity 1s ease 1.1s;
}
.menu li a {
	display: block;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.menu li a:hover {
	color: #999;
}
.menu ul {
	width:100%;
	text-align:center;
	margin:0;
}
.menu li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items:center;		
}
.menu li a {
	width:100%;
	display:block;	
	font-size:1.3rem;
	margin:0;
	padding:0 15px;
	text-align:left;
}
/* --------------------------------------------------- menu-btn */
.menu-btn {
	position:absolute;
	right:0;
	position: relative;
	z-index: 99;
	display: -ms-flexbox;
	display: flex;
	width: 60px;
	height: 45px;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-align: center;
	align-items: center;
}
.menu-btn span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 20px;
    width: 20px;
    height: 2px;
    background-color: #000;
    transition: .6s ease;
	color: #000;  
}

@-webkit-keyframes anim {
	0% {-webkit-transform:translateY(0px);transform:translateY(0px);}
	50% {-webkit-transform:translateY(-5px);transform:translateY(-5px);}
	100% {-webkit-transform:translateY(0px);transform:translateY(0px);}
}

@keyframes anim {
	0% {-webkit-transform:translateY(0px);transform:translateY(0px);}
	50% {-webkit-transform:translateY(-5px);transform:translateY(-5px);}
	100% {-webkit-transform:translateY(0px);transform:translateY(0px);}
}
/* --------------------------------------------------- page header */
.pageheader {
	width:100%;
	height:45px;
	border-bottom:1px solid #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position:fixed;
	top:0;
	background:#fff;
	z-index:9;
}
h1 {
    width:100%;   
    text-align:center;
    color:#fff;
}
h1 span img {
    width:200px;
    hieght:auto;   
}

ul.sns {
	width:calc(100% / 2);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items:center;
	justify-content: flex-end;		
	border-left:1px solid #000;
}
ul.sns li a {
	display:block;
	padding:0 10px;
	font-size:1.2rem;
}
ul.sns li a i {
	font-size:1.6rem;	
}
.topicpath {
	width:100%;
	height:45px;
	border-bottom:1px solid #000;
	margin-top:45px;
}
.topicpath ul {
	height:45px;
	align-items:center;
}
.topicpath ul li {
	font-size:1.3rem;
	font-weight:300;
	margin:0 0 0 15px;
}
.topicpath ul li a {
	display:block;		
}
.topicpath ul li a:hover {
	text-decoration:none;	
}
.topicpath ul li a:after {
	content: "";
	background: url(img/arrow.png) no-repeat;
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-left:15px;	
}
.topicpath ul li:last-child a:after {
	display:none;	
}
.contents {
	width:100%;	
	height:calc(100vh - 90px);	
}
.topcontents {
	width:100%;
	height:calc(100vh - 45px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items:center;
	justify-content:center;	
	border-bottom:1px solid #000;
	margin-top:45px;
}
.scrcontents {
    height:auto;   
}
.nolistcontents {
    border-bottom:1px solid #000;   
}
.footer {
	padding:0;
	font-size:1.2rem;
	letter-spacing:.2rem;
	display:block;
	position:absolute;
	bottom:10px;
}
.footer a {
    width:40px;
    height:40px;
    margin:15px auto;
    border-radius:50%;
    background:#fff;
    color:#4CBBB4;
    align-items:center;
    justify-content:center;
}
.footer a:hover {
    text-decoration:none;   
}
.footer a i {
    font-size:2rem;
    padding:0 0 0 3px;
}
.footer ul {

}
.footer ul li {
	width:calc(100% / 5);
	padding:30px;
	border-right:1px solid #000;
	font-size:1.2rem;
	font-weight:600;
}
.footer ul li a {
	font-weight:300;	
}
.footer ul li:last-child {
	border:none;	
}
.footer ul li .category ul {
	border:none;	
}
.footer ul li .category ul li {
	width:100%;
	padding:5px 0;
	border:none;	
}
.footer small {
	border-top:1px solid #000;
	display:block;
	width:100%;
	padding:0 15px;
	height:45px;
	line-height:45px;
	font-size:1.2rem;	
}
#page-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    margin:0;
    z-index:999;    
}
#page-top a {
    text-decoration: none;
    font-size:0;
    width: 60px;
    height:60px;
	padding:0;	
    text-align: center;
    display: block;
}
#page-top a:hover {
	background-position:-60px 0;	
}

@media (min-width: 1600px) {
h1 span img {
    width:50%;
    max-wdith:50%;
    hieght:auto;   
}
}
@media (max-width: 1016px) {

}
@media (max-width: 992px) {

}
@media (max-width: 767px) {
h1 span img {
    width:90%;
    max-wdith:90%;
    hieght:auto;  
    margin-top:-10%; 
}    
header,  .side-open header {
	display:block;
}	
.menu-btn {
	height:45px;
	background: url(img/headerbg_sp.png) repeat-y top left;
    background-size: 100% auto;
}
 .menu {
    top:0;
    left:0;
    width:100%;
 }
 .side-open .menu-btn {
 	background:none;
 }
.side-open .menu-btn span {

}
.side-open .menu {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:calc(100vh - 45px);
    border:none;
}
.wrapper {
    width: 100%;
    height:100vh;
    display: flex;
     justify-content: center;
    align-items: center;    
}
.pageheader {
	position:fixed;
	top:0;
    width: 100%;
    height: 45px;
    background:#fff;
    border-bottom: 1px solid #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    align-items: center;
    z-index:9;
}
header {
    margin-top: 45px;
}
.side-open header {
    width: 100%;
    background: none;
    height: calc(100vh - 45px);
    margin-top: 45px;
}
.pageheader h1 {
    width: 40%;
    margin:0;
    vertical-align: middle;
}
.pageheader_right {
    width: calc(100% - 40%);
}
ul.sns {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 1px solid #000;
}
.menu ul {
	width:100vw;
	text-align:center;
	margin:0;
}
.menu li a {
	display:block;	
	margin:0;
	padding:15px;
}
.topicpath ul {
    height: 45px;
    align-items: center;
    padding: 5px 0;
}
.topcontents {
    display: block;
    width: 100%;
}
#page-top {
    position: fixed;
    bottom: 5px;
    right: 5px;
    margin:0;
    z-index:999;    
}
#page-top a {
    text-decoration: none;
    font-size:0;
    width: 40px;
    height:40px;
	padding:0;	
    text-align: center;
    display: block;
}
#page-top a:hover {
	background-position:-40px 0;	
}
.footer ul li {
    width: 100%;
    padding:0;
    border-right: none;
    border-bottom:1px solid #000;
}
.footer ul li:last-child {
    border-bottom:none;   
}
.footer ul li .category ul {
    margin-bottom:15px;   
}
.footer ul li .category ul li a {
    display:block;
    padding:0 15px;   
}
.footer ul li .category ul li:first-child {
    border-bottom:1px solid #000; 
    padding:15px;   
    text-align:center;
    margin-bottom:15px;
}
}
/* TOP */
ul.topbox {
	width:100%;
	height:calc(100vh - 45px);
	align-items:center;	
}
ul.topbox li {
	width:calc(100% / 3);	
	border-left:1px solid #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	height:100%;
	align-items:center;
}
ul.topbox li a, ul.topbox li span {
	display:block;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	justify-content:center;	
	display: flex;	
	align-items:center;
	width:100%;
	height:100%;
	font-size:1.3rem;
}
ul.topbox li a img, ul.topbox li span img{
	height:20px;
	width:auto;
	margin:0 auto;
}
ul.topbox li:first-child {
	border:none;	
}
/* POPUP */
.mfp-bg {
    background:transparent;
}
.mfp-container {
    height: calc(100vh - 45px);   
    padding: 0;
    background:#fff;
    color:#000;
    margin-top:45px;
}
.mfp-content {
    width:100%;
    height: calc(100vh - 45px);    
}
.mfp-close {
    width: auto;
    height: auto;
    line-height: 1.2;
    position: relative;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    filter: alpha(opacity=100);
    padding:0;
    color: #000;
    font-style: normal;
    font-size: 1.3rem;
    cursor: pointer
}
.mfp-close:hover {
    text-decoration:underline;   
}
.popupcategory {
    width:100%;   
}
.popupcategory li {
    width:calc(100% / 3); 
    height:calc((100vh - 45px) / 4);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items:center;
	border-right:1px solid #000;
	border-bottom:1px solid #000;
    justify-content: center;
    padding:10px;
}
.popupcategory li:nth-child(3n) {
    border-right:none;   
}
.popupcategory li a {
    display:block;
    text-align:center; 
    font-size:1.3rem;  
    line-height: 1.2;
    padding:10px;
}
/* LIST */
.itemlist li {
    width:calc(100% / 4); 
    border-right:1px solid #000;
    border-bottom:1px solid #000;
}
.itemlist li:nth-child(4n){
    border-right:none;
}
.itemlist li a {
    display:block; 
    position:relative;  
}
.itemlist li a:hover {
    text-decoration:none;   
}
.itemlist li a img {
    width:100%;
    height:auto;
    object-fit:cover;
    margin:30px 0;  
}
.itemlist li a span.sold {
    position:absolute;
    top:10px;
    right:10px;  
    font-size:1.2rem;
    color:#aaa; 
}
.itemlist li a h2 {
    font-size:1.3rem;
    letter-spacing:.2rem;
    line-height:1.4;
    font-weight:300; 
    margin:15px;  
}
.itemlist li a h2 span {
    display:block;   
}
.footercategory {
}
.footercategory ul li {
    width:calc(100% / 3);
    text-align:center;   
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
    border-right:1px solid #000;
    border-bottom:1px solid #000;	
}
.footercategory ul li.blank {
    padding:45px 0;   
}
.footercategory ul li a {
    display:block;
    padding:45px 0;
    font-size:1.3rem;
    font-weight:300;
    width:100%;
    letter-spacing:.2rem;    
}
.footercategory ul li:nth-child(3n){
    border-right:none;
}
span.space {
    height:45px;
    border:none;
    border-bottom:1px solid #000;
    font-size:1.2rem;
    font-weight:300;
 	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items:center;   
    letter-spacing:.2rem;
    width:100%;
    padding:0 15px;
}
@media (max-width: 1016px) {
.itemlist li {
    width:calc(100% / 3); 
}
.itemlist li:nth-child(4n){
    border-right:1px solid #000;
}
.itemlist li:nth-child(3n){
    border-right:none;
}
}
@media (max-width: 992px) {

}
@media (max-width: 767px) {
ul.topbox li {
    width: 100%;
    height:calc((100vh - 45px) / 3 );
    border:none;
    border-top:1px solid #000;
}
ul.topbox li:first-child {
    border: none;
}
.itemlist li {
    width:calc(100% / 2); 
    border-right:1px solid #000;
}
.itemlist li:nth-child(4n){
    border-right:1px solid #000;
}
.itemlist li:nth-child(3n){
    border-right:1px solid #000;
}
.itemlist li:nth-child(even){
    border-right:none;
}
.footercategory ul li {
    width:calc(100% / 2);
}
.footercategory ul li:nth-child(3n){
    border-right:1px solid #000;;
}
.footercategory ul li:nth-child(2n){
    border-right:none;   
}
}	
/* DETAIL */
.itemdetail {
    width:70%;
    margin:0 auto; 
    border-right:1px solid #000;  
    border-left:1px solid #000;  
}
.itemdetail.bottomspace {
   padding-bottom: 30px;
}
.half-right {
    border-left:1px solid #000;      
}
.half-left, .half-right {
    width:calc(100% / 2);
}
h2.itemname {
    font-size:1.3rem;
    line-height:1.4;
    font-weight:300;
    text-align:center;
    padding:60px 0;   
    border-bottom:1px solid #000;
}
h2.itemname span {
    display:block;  
    font-size:1.2rem; 
}
ul.cartarea {
    border-bottom:1px solid #000;    
}
ul.cartarea li {
    width:calc(100% / 2);   
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	align-items:center;
}
ul.cartarea li a, ul.cartarea li span {
    display:block;
    font-size:1.3rem;
    text-align:center;
    width:100%;   
    padding:15px 0;    
}
ul.cartarea li span {
    background:#ccc; 
    border-right:1px solid #000;  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
ul.cartarea li input {
    width:100%;
    font-size:1.3rem;
    color:#fff;
    padding:15px 0;
    background:#000;
    border: none;
    border-radius: 0;
    background:#000;
    cursor: pointer;
    -webkit-appearance: none; 
}
ul.cartarea li input:hover {
    opacity:.5;   
}
.detailin {
    font-size:1.3rem;
    padding:15px;
    border-bottom:1px solid #000;   
}
.detailin.detailbottom {
    border:none;   
}
#option_tbl {
	width:100%;
     border-collapse:collapse;
     border-top:1px solid #eee;
     border-left:none;
     margin: 15px 0;
     font-size:11px;
     font-size:1.1rem;
}
#option_tbl td input{
     float:none;
     margin:0;
     width:auto;
}
#option_tbl th,
#option_tbl td.none {
     text-align:center;
}
#option_tbl td {
     padding:5px;
     text-align:center;
     border:none;
     border-bottom:1px solid #eee;
     border-right:none;
     background:#fff;
}
#option_tbl td strong {
	font-weight: normal;
}
#option_tbl th{
     padding:5px;
     border:none;
     border-bottom:1px solid #eee;
     border-right:none;
	 font-family: helvetica,arial,clean,sans-serif;
	 font-weight: normal;
}
span.table_price {
	display:none;	
}
#option_tbl {
	font-size:11px;	
}
#option_tbl br {
    display: none;
}
.stock_zero {
    margin: 0 auto;
    text-indent: -9999px;
    display: block;
    background: url(http://liberal-ops.com/data/img/zero.png) center center no-repeat;
    background-size:10px auto;
}
 .table_price, .t_stock_num, #option_tbl br {
    display: none;
    font-size: 1px;
    line-height: 1;
}
.slide-arrow{
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index:10;
  width: 30px;
  height: 30px;
  border-radius:50px;
  background:#fff;
  padding:6px; 
}

.prev-arrow{
  left: 15px;
}
.next-arrow{
  right: 15px;
}
.slick-disabled {
    opacity:0;       
}
ul.page {
margin: 0;
line-height: 1;
font-weight:200;
font-size:1.2rem;
border-bottom:1px solid #000;
background:#eee;
}
ul.page li {
margin: 0;
padding: 10px;
}
ul.page li.next {
background:#000;
padding:10px 30px;
color:#fff;
}
ul.page li a {
color: #000!important;
}
ul.page li.next a {
color: #fff!important;
}

ul.page li.present {
background: #fff;
color: #000;
}

ul.page li.dot {
border: none;
padding: 0.6em ;
}
.titlebox {
    padding:10px;
    width:100%;
}
h2.title {
    background:#eee;
    padding:10px;  
    font-size:1.3rem;
    width:100%;
}
.titlebox h2, .titlebox h2.title {
    font-size:1.3rem; 
    background:none;
    padding:0;      
}
.table {
    margin:0;  
    font-size:1.3rem; 
}
.table-bordered {
    border:none;
}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
    border: 1px solid #000;
    border-right: none;
    border-left: none;    
}
.table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
    border-left:1px solid #000;       
}
.policy, .policybox {
    font-size:1.3rem;
    padding:15px;
}
@media (max-width: 767px) {
.itemdetail {
    width:100%;
    margin:0 auto; 
    border:none;
}  
.half-left, .half-right {
    width: 100%;
} 
.half-left {
    border:none;
}
.half-right {
    border-top:1px solid #000;   
}
}