@charset 'UTF-8';

/* SYSTEM */
*{
	box-sizing: border-box;
}
a,a:hover{
	text-decoration: none;
}
p,h1,h2,h3,h4,h5,h6,li,dt,dd,th,td,span,small{
	line-height: 1.6;
	letter-spacing: .2em;
}
img{
	max-width: 100%;
}

/* COMMON */
.wrap{
	width: 100%;
	max-width: 1280px;
	padding: 0 20px;
	margin: 0 auto;
}
.flex{
	display: flex;
	flex-wrap: wrap;
}
.vert{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.hide{
	display: none!important;
}

/* HEADER */
header#header{
	position: fixed;
	top: 0;
	left: 0;
	padding: 3em 0 0 3em;
	padding-left: calc(3em + 100px);
	z-index: 99;
	margin-bottom: 0;
	width: auto;
	border: 0;
}
header#header .logo a img{
	max-height: 70px;
}

/* TOGGLE */
a#toggle{
	position: absolute;
	display: block;
	top: 3em;
	left: 3em;
	width: 70px;
	height: 70px;
	background: orange;
	cursor: pointer;
}
a#toggle span{
	display: inline-block;
	position: absolute;
	height: 6px;
	width: 44px;
	background: #FFF;
	border-radius: 3px;
	left: 12px;
	transition: all .3s ease;
}
a#toggle span:nth-of-type(1){
	top: 20px;
}
a#toggle span:nth-of-type(2){
	top: 33px;
}
a#toggle span:nth-of-type(3){
	top: 46px;
}
a#toggle:hover span:nth-of-type(1){
	top: 16px;
}
a#toggle:hover span:nth-of-type(3){
	top: 50px;
}
a#toggle.open span:nth-of-type(1){
	top: 33px;
	transform: rotate(45deg);
}
a#toggle.open span:nth-of-type(2){
	opacity: 0;
}
a#toggle.open span:nth-of-type(3){
	top: 33px;
	transform: rotate(-45deg);
}

/* DRAWER */
div#drawer{
	position: fixed;
	background: #FFF;
	top: 0;
	left: 0;
	padding: 3em;
	padding-top: calc(6em + 100px);
	height: 100vh;
	z-index: 98;
	transform: translateX(-100%);
	transition: all .3s ease;
}
div#drawer.open{
	transform: translateX(0);
}
div#drawer .inner{
	overflow-y: scroll;
}
div#drawer .welcart_menu{
	margin-bottom: 2em;
}
div#drawer .welcart_menu li{
	margin-bottom: 5px;
}
div#drawer .welcart_menu li a{
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #323333;
	border-left: 5px solid orange;
	padding: 12px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
div#drawer .welcart_menu li a i{
	margin-right: 6px;
}
div#drawer .welcart_menu li a:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: orange;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	transition: all .3s ease;
	z-index: -1;
}
div#drawer .welcart_menu li a:hover{
	color: #FFF;
}
div#drawer .welcart_menu li a:hover:before{
	transform: translateX(0);
}
div#drawer .main_menu{
	margin-bottom: 2em;
}
div#drawer .main_menu li{
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
}
div#drawer .main_menu li:last-child{
	border: 0;
}
div#drawer .main_menu li a{
	display: block;
	color: #323333;
	padding: 10px;
	font-size: 16px;
    font-weight: bold;
}
div#drawer .main_menu li a:hover{
	color: #aaa;
}

div#drawer .ec_menu li{
	margin-bottom: 5px;
}
div#drawer .ec_menu li a{
	color: #323333;
}
div#drawer .ec_menu li a:hover{
	color: #aaa;
}

/* FOOTER */
footer#footer{
	color: transparent;
	margin: 0;
	margin-top: 3em;
	padding: 0;
}
.home footer#footer{
	margin-top: 0;
}
footer#footer .footer-01{
	padding: 4em 0 6em;
	background: #EFEFEF;
}
footer#footer .footer-01 .logo{
	width: 25%;
	margin-right: 5%;
}
footer#footer .footer-01 .menu{
	width: 70%;
}
footer#footer .footer-01 .menu ul.f-menu-01{
	display: flex;
	flex-wrap: wrap;
	max-width: 520px;
	margin: 0 auto;
}
footer#footer .footer-01 .menu ul.f-menu-01 li{
	width: calc(100% / 3 - 2%);
	margin: 0 1% 2%;
}
footer#footer .footer-01 .menu ul.f-menu-01 li a{
	display: block;
	padding: 5px;
	font-size: 16px;
	font-weight: bold;
	color: #323333;
	text-align: center;
}
footer#footer .footer-01 .menu ul.f-menu-01 li a i{
	margin-right: 5px;
}
footer#footer .footer-01 .menu ul.f-menu-01 li a:hover{
	color: #aaa;
}
footer#footer .footer-02{
	background: orange;
	padding: 2em 0;
}
footer#footer .footer-02 ul.f-menu-02{
	display: flex;
}
footer#footer .footer-02 ul.f-menu-02 li{
	margin-right: 1.2em;
}
footer#footer .footer-02 ul.f-menu-02 li a{
	font-weight: bold;
	font-size: 16px;
}
footer#footer .footer-02 .copyright{
	float: right;
	color: #FFF;
	margin: 0;
	padding: 0;
}

/* ANIMATION */
@keyframes breathing {
    0% {
        transform: scale(.95);
    }
    50%{
    	transform: scale(1.1);
    }
    100% {
        transform: scale(.95);
    }
}
@keyframes breathingpin {
    0% {
        transform: scale(.95);
    }
    50%{
    	transform: scale(1.3);
    }
    100% {
        transform: scale(.95);
    }
}
.breathe{
	animation-name: breathing;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

/* TOP - SUPER */
#super{
	position: relative;
}
#super #map{
	user-select: none;
}
#super .cat,
#super .ornament{
	position: absolute;
	user-select: none;
}
#super .cat{
	cursor: pointer;
}
#super .cat>img{
	position: relative;
	z-index: 1;
}
#super .pin{
	position: absolute;
	user-select: none;
	pointer-events: none;
}
#super .pin>img{
	animation-name: breathingpin;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    position: relative;
    z-index: 3;
}
#super .pin h2{
	position: absolute;
	display: block;
	font-weight: bold;
	color: #323333;
	background: #FFF;
	border: 3px solid #E7372F;
	z-index: 2;
	word-break: keep-all;
	text-align: center;
	display: none;
}

#super .cart-btn{
	position: absolute;
    top: 8%;
    right: 7%;
    text-align: right;
}
#super .cart-btn a{
	display: block;
    padding: 1em 2em;
    background: orange;
    color: #FFF;
    border-radius: .2em;
    font-weight: bold;
    margin-bottom: 1em;
}
#super .cart-btn a i{
	margin-right: 1em;
}

#super a#search-open{
	position: absolute;
    display: inline-block;
    cursor: pointer;
    color: #FFF;
    background: darkorange;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-weight: bold;
    bottom: 5%;
    right: 5%;
    padding: 2em;
    text-align: center;
    transition: all .3s ease;
}
#super a#search-open i{
	font-size: 44px;
    margin-bottom: 5px;
}
#super a#search-open p{
	font-size: 16px;
}
#super a#search-open:hover{
	color: darkorange;
	background: #FFF;
	box-shadow: 2px 2px 15px #ddd;
}

#super #overlay{
	position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.2);
    z-index: 100;
    transform: translateX(-100%);
    transition: all .6s ease;
}
#super #overlay.open{
	transform: none;
}
#super #overlay #overlay-close-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 101;
	cursor: pointer;
}
#super #overlay .inner{
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255,255,255,.9);
	z-index: 102;
}
#super #overlay .back-btn{
	position: absolute;
    top: 50%;
    left: 0;
    z-index: 103;
    transform: translateY(-50%);
}
#super #overlay .back-btn a#main-back{
	cursor: pointer;
	display: block;
    padding: 1em .5em;
    padding-right: 1em;
    color: #FFF;
    background: orange;
    font-weight: bold;
    letter-spacing: 3px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    position: relative;
}
#super #overlay .back-btn a#main-back:before{
	content: '';
    display: block;
    width: 100%;
    position: absolute;
    bottom: 99%;
    right: 0;
    border-bottom: 13px solid orange;
    border-right: 35px solid transparent;
}
#super #overlay .back-btn a#main-back:after{
	content: '';
    display: block;
    width: 100%;
    position: absolute;
    top: 99%;
    right: 0;
    border-top: 13px solid orange;
    border-right: 35px solid transparent;
}
#super #overlay .back-btn a#main-back i{
	margin-top: 10px;
}
#super #overlay h2.cat-name{
	margin: 2em 1em 2em 5em;
    padding: .3em 1.2em;
    font-size: 16px;
    border-left: 4px solid orange;
}
#super #overlay #search-items{
	margin: 2em 1em 2em 5em;
    padding: .3em 1.2em;
}
#super #overlay #search-items input[type="text"]{
	padding: 1.071428em 2.142856em;
}
#super #overlay #search-items input[type="button"]{
	border: 1px solid #aaa;
}
#super #overlay .product-scroll{
	margin: 0 20px 1em 5em;
    height: 83%;
    overflow-y: scroll;
}
#super #overlay .product-list{
	display: flex;
	flex-wrap: wrap;
}
#super #overlay .product-list .product-box{
	width: calc(100% / 3 - 2%);
	margin: 0 1% 2%;
}
#super #overlay .product-list .product-box a{
	cursor: pointer;
	display: block;
	padding: 10px;
	transition: all .3s ease;
}
#super #overlay .product-list .product-box a:hover{
	background: rgba(255,255,255,.95);
}
#super #overlay .product-list .product-box .thumb{
	margin-bottom: 3px;
}
#super #overlay .product-list .product-box .title h3{
	font-size: 14px;
	font-weight: bold;
	color: #323333;
}
#super #overlay .product-list .product-box .meta .price{
	margin: 0;
	font-size: 12px;
	text-align: right;
	font-weight: bold;
	color: #323333;
}
#super #cat-name{
	position: fixed;
	z-index: 102;
    top: 5%;
    right: 5%;
    display: block;
    padding: .5em 2em;
    font-size: 18px;
    font-weight: bold;
    background: #FFF;
    border: 4px solid orange;
    border-radius: 10px;
    display: none;
}
#super #item-modal{
	display: none;
	position: fixed;
	z-index: 103;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
}
#super #item-modal.open{
	display: block;
}
#super #item-modal #item-close-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
#super #item-modal .item-sec{
	width: 100%;
    height: auto;
    max-width: 1100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-55%);
    background: #eee;
    padding: 2em;
    margin: 2em;
    margin-top: 4em;
    border-radius: 1em;
    cursor: normal;
}
#super #item-modal .item-sec .item-back-btn{
	position: absolute;
	bottom: 100%;
	left: 2em;
}
#super #item-modal .item-sec .item-back-btn a.item-close{
	display: block;
	background: #eee;
	padding: 1em 2em .5em;
	color: #323333;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	transition: all .3s ease;
}
#super #item-modal .item-sec .item-back-btn a.item-close:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 99%;
	border-right: 12px solid #eee;
    border-top: 3em solid transparent;
    transition: all .3s ease;
}
#super #item-modal .item-sec .item-back-btn a.item-close:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 99%;
	border-left: 12px solid #eee;
    border-top: 3em solid transparent;
    transition: all .3s ease;
}
#super #item-modal .item-sec .item-back-btn a.item-close i{
	margin-right: 10px;
}
#super #item-modal .item-sec .item-back-btn a:hover{
	line-height: 2;
}
#super #item-modal .item-sec .item-back-btn a.item-close:hover:before,
#super #item-modal .item-sec .item-back-btn a.item-close:hover:after{
	border-top-width: 4em;
}
#super #item-modal .item-sec .item-flex{
	display: flex;
	flex-wrap: wrap;
}
#super #item-modal .item-sec .item-flex .thumb{
	width: 35%;
	margin-right: 5%;
}
#super #item-modal .item-sec .item-flex .thumb .main-image-slider .slide img{
	width: 100%;
}
#super #item-modal .item-sec .item-flex .thumb ul{
	display: flex;
	flex-wrap: wrap;
	height: 150px;
    overflow-y: scroll;
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}
#super #item-modal .item-sec .item-flex .thumb ul::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}
#super #item-modal .item-sec .item-flex .thumb ul li{
	width: calc(100% / 4 - 2%);
	height: 80px;
	margin: 1%;
    cursor: pointer;
}
#super #item-modal .item-sec .item-flex .thumb ul li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#super #item-modal .item-sec .item-flex .detail{
	width: 60%;
}
#super #item-modal .item-sec .item-flex .detail .detail-nameprice{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.detail-nameprice .item-name {
    font-size: 24px;
    margin-bottom: 15px;
}
.detail-nameprice .item-price {
	margin-left: 10px;
    float: right;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    word-break: keep-all;
}
#super #item-modal .item-sec .item-flex .detail .detail-description {
    border-top: 1px solid #000;
    padding-top: 15px;
    margin-bottom: 2.142856em;
    height: 480px;
    width: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}
#super #item-modal .item-sec .item-flex .detail .detail-description::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}
#super #item-modal .item-info .quantity{
	display: flex;
    margin-bottom: 10px;
    justify-content: center;
}
#super #item-modal .item-info .quantity .quant_btn {
	display: flex;
	align-items: center;
}
#super #item-modal .item-info .quantity .quant_btn a{
	display: block;
    font-size: 30px;
    color: darkorange;
    margin-right: 5px;
}
#super #item-modal .item-info .cart-btn-area{
	text-align: center;
}

/* MAIN */
main.pad-top{
	padding-top: calc(6em + 100px);
}
#primary{
	max-width: 1280px;
	padding: 0 20px;
	margin: 0 auto;
}

/* PAGE */
.wp-block-table table{
	border-collapse: separate;
	border-spacing: 5px;
	border: 0;
	max-width: 900px;
    margin: 0 auto 1em;
}
.wp-block-table table td{
	padding: 14px;
}
.wp-block-table table td:nth-of-type(2n+1){
	background: #eee;
	font-weight: bold;
	width: 14em;
}

/* WELCART */
#content .type-page h1.entry-title,
.member-page h1.member_page_title,
.cart-page h1.cart_page_title{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}

/* CONTACT */
div.wpcf7{
	max-width: 800px;
	margin: 2em auto;
}
.wpcf7 table.inquiry{
	width: 100%;
	border-collapse: separate;
	border-spacing: 5px;
	border: 0;
}
.wpcf7 table.inquiry th,
.wpcf7 table.inquiry td{
	padding: .6em;
	border: 0;
}
.wpcf7 table.inquiry th{
	position: relative;
	vertical-align: middle;
	padding-left: 2em;
	padding-right: 4em;
}
.wpcf7 table.inquiry th span.haveto,
.wpcf7 table.inquiry th span.any{
	position: absolute;
	display: inline-block;
	padding: 3px 5px;
	font-size: 12px;
	font-weight: bold;
	right: 2em;
}
.wpcf7 table.inquiry th span.haveto{
	color: #FFF;
	background: crimson;
}
.wpcf7 table.inquiry td input,
.wpcf7 table.inquiry td select,
.wpcf7 table.inquiry td textarea{
	width: 100%;
	padding: 1em 3em 1em 2em;
	border: 1px solid #CCC;
	border-radius: 13px;
}
.wpcf7 .pp_link,
.wpcf7 .submit{
	text-align: center;
}
.wpcf7 .ajax-loader{
	display: none;
}

#cart_table tr td.thumbnail a{
	pointer-events: none;
}

.wp-block-table table td:nth-of-type(2n+1) {
	border-bottom: none;
}

.history-area table td.thumbnail a {
    pointer-events: none;
}