


/*COMMON*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *: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;
}


body,html {
	width:100%;
	height:100%;

}
body {
	color: #111;
	font-size:16px;
	line-height:180%;

	background-color:#fff;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;


	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	position:relative;
	

}

p{
	line-height:180%;
	letter-spacing:1px;
}

a,a:hover,a:visited,a:active{
	color:#111;
	transition: 0.3s;
	text-decoration: none;
}
a:hover{
	opacity:0.7;
}
img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}


#menuTitle{
	font-size:12px;
	font-weight:bold;

	position:fixed;
	top:35px;
	right:58px;
	
	line-height:100%;
}






/* ========= header footer ========= */



header {
	position:relative;
	width:100%;
	background: #fff;
	height: 82px;
	margin: 0;
	z-index: 200;
	
	box-shadow: none;
}


#other header {
	background: rgba(255,255,255,0) url("../../images/header/line_pc.png") no-repeat center bottom;
	background-size: auto 115px;
	padding-bottom: 115px;
	box-shadow: 0 0 0 rgba(255,255,255,0)
}

header #hWrap{
	max-width:1000px;
	min-width: 1000px;
	width: 1000px;
	padding: 0 0;
	
    display: -webkit-flex;
    display: flex;
	
	flex-wrap: wrap;
	
	justify-content: space-between;
}

body#home header #hWrap{
	max-width:1000px;
	min-width: 1000px;
	width: 1000px;
	padding: 0 0;
}


header #logo{
	width:440px;

	padding: 0 13px 0 0;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
header #logo img{
	width:247px;
	height: 1.7;
	display: block;
	margin: -2px 0 0 0;
}
header #logo h1{
	width:247px;
	font-size: 10px;
	line-height: 140%;
}
header #logo a{
	display: flex;
	align-items: center;
	padding: 32px 0 0 0;
}
.tagline{
	width: 166px;
	font-size: 10px;
	line-height: 140%;
	padding: 29px 0 0 0;
}

#panel{
	width:calc(100% - 540px);
}
#panel nav{
    display: -webkit-flex;
    display: flex;
	justify-content: flex-start;
}
#gnavi{
	width:100%;
	color: #000;
	margin-left: 20px;
    display: -webkit-flex;
    display: flex;
	justify-content: flex-start;
}
#gnavi > li{
	display: inline-block;

	padding: 0 15px 0 15px;
	cursor: pointer;
}
#gnavi > li > a{
	line-height: 82px;
	text-decoration: none;
	color: #333;
	position: relative;
	display: inline-block;
}
#gnavi > li > a::after{
	content: "";
	background-color: #fff;
	position: absolute;
	bottom: 20px;
	left: 0;
	width:100%;
	height: 3px;
	transition: all .2s ease-out;
	opacity: 0;
	transform: scaleX(0)
}
#gnavi > li:hover{
	background-color: #E10000;
}
#gnavi > li:hover > a{
	color: #fff;
}
#gnavi > li:hover > a:hover{
	opacity: 1;
}
#gnavi > li:hover > a::after{
	opacity: 1;
	transform: scaleX(1)
}

.noclick{
	pointer-events: none;
}

input#tglBtn[type="checkbox"]{
  display: none;
}



#gnavi > li > .subMenu{
	position: absolute;
	top:76px;
	left: 0;
	width:100%;
	background: #C12FFD;
}
#gnavi > li .subMenu .subMenuWrap{
	width:calc(100% - 60px);
	margin: 0 auto;
    display: -webkit-flex;
    display: flex;
	justify-content: center;
	grid-gap: 80px;
	padding: 30px 0;
}
#gnavi > li .subMenu ul{

	
}
#gnavi > li .subMenu ul li{
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
#gnavi > li .subMenu ul li.smTitle{
	margin-bottom: 10px;
}
#gnavi > li .subMenu ul li a{
	color: #fff;
	font-weight: normal;
	font-size: 14px;

}
#gnavi > li .subMenu ul li a::before{
}


#gnavi > li .subMenu{
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease-out;
}
#gnavi > li:hover .subMenu{
	pointer-events: auto;
	opacity: 1;
}

.headBana li{
	margin-bottom: 10px;
}
.headBana li img{
	width:200px;
	height: auto;
}

#loginMenu{
	width:100px;
	
    display: -webkit-flex;
    display: flex;
	
	justify-content: space-between;
	align-items: center;
}
#loginMenu li{
	line-height: 76px;
	padding: 0 0 0 0;
	margin-left: 7px;
}


#loginMenu li.lgmAply a{
	display: block;
	height: 28px;
	width:28px;
	background: url("../../images/header/h_icon_acount.svg") no-repeat 0 0;
	background-size: 28px 28px;
	padding: 0;
}
#loginMenu li.lgmCart a{
	display: block;
	height: 28px;
	width: 28px;
	background: url("../../images/header/h_icon_cart.svg") no-repeat 0 0;
	background-size: 28px 28px;
	padding: 0;
}
#loginMenu li.lgmLogin a{
	display: block;
	height: 28px;
	width: 28px;
	background: url("../../images/header/h_icon_login.svg") no-repeat 0 0;
	background-size: 28px 28px;
	padding: 0;
}
#loginMenu li.lgmLogout a{
	display: block;
	height: 28px;
	width: 28px;
	background: url("../../images/header/h_icon_logout.svg") no-repeat 0 0;
	background-size: 28px 28px;
	padding: 0;
}

#panel #loginMenu{
	display: none;
}

.headSubCat{

}

.headSubCatMenuBox{
	display: none;
	position: absolute;
	top: 76px;
	left: 0;
	width: 100%;
	background: #E10000;
	padding: 30px;
}
.headSubCatMenu{
	display: flex;
	width: 1100px;
	margin: 0 auto;
}
.headSubCatList{
	width: 25%;
}
.headSubCatList li{
	display: flex;
	color: #fff;
}
.headSubCatList li.headSubCatTitle{
	color: #fff;
	font-weight: bold;
}
.headSubCatList li a{
	color: #fff;
	font-size: 14px;
}
.headSubCatListtitlenone{
	margin-top: 1.8em;
}


.total-quant{
	background: #EB0055;
	padding: 7px;
	border-radius: 50px;
	color: #fff;
	font-size: 11px;
	display: inline-block;
	margin-left: 6px;
	line-height: 100%;
	width:23px;
	height: 23px;
}




#productMenu{
	color: #000;
	background: #555;
	position:absolute;
	top: 0;
	right: 0;
}
#productMenu li{
	float: left;
	line-height: 76px;
	border-left: 1px solid #dacfe5;
}
#productMenu li a{
	color: #333;
	text-decoration: none;
	display: inline-block;
	background:#f3e7ff;
	padding: 0 16px;
	font-weight: bold;
}
#productMenu li a:hover{
	background:#d10347;
	color: #fff;
	
}






#page-top{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width:80px;
	height: 80px;
	z-index: 5000;
}
#page-top img{
	width:80px;
	height: 80px;
}


footer{
	padding: 60px;
	background: #fff;
	font-size: 12px;
	text-align: center;
	border-top:2px #eee solid;
}

#home footer{
	border-top:none;
}


.fLogo{
	margin-bottom: 10px;
}
.fLogo img{
	width:240px;
	height: auto;
}



/*=========プロモーション=========*/

#promotion{
	overflow: hidden;
	width:100%;
}


.promoBox{
	background: #ccc;
}


.scrolBtn{
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left:-28px;
	z-index: 103;
	height: 46px;
}
.scrolBtn img{
	width:56px;
	height: 46px;
}





/*=========コンテンツ=========*/
article{
	padding:0 0 0 0;
	background-color:#fff;

	position:relative;

}
article article.post{
	padding:0 0 0 0;
	width:1100px;
	margin: 0 auto;
}
article article.page{
	padding:0 0 0 0;
	width:100%;
}

section{
	background-color:#fff;
	
	position:relative;
	
}


h2{
	font-size:40px;
	margin-bottom:40px;
	line-height:100%;
	font-weight:bold;
	text-align: center;
}
h3{
	font-size:13px;
	margin-bottom:30px;
	line-height:100%;
	font-weight:bold;
	text-align: center;
}
h4{
	font-size:18px;
	margin-bottom:25px;
	line-height:140%;
	font-weight:bold;
	text-align: center;
}


.cs{
	text-align:center;
	padding:100px;
	font-size:36px;
	font-family: 'Open Sans', sans-serif;
}

.sTxt{
	font-display: 80% !important;
	font-weight: normal !important;
}

/*テキスト*/

.tCenter{
	text-align:center;
}

.mgB5{
	margin-bottom:5px;
}

.mgB10{
	margin-bottom:10px;
}
.mgB20{
	margin-bottom:20px;
}
.mgB30{
	margin-bottom:30px;
}
.mgB40{
	margin-bottom:40px;
}
.mgB50{
	margin-bottom:50px;
}








/* ========= HOME ========= */



#homePdtList{
	width:100%;
	margin: -20px auto 0;
	background: #fff;
	padding: 0 0 70px;
}
#homePdtList .inner{
	width: 100%;
	margin: 0 auto;
	
	display: flex;
	gap: 21px;
	
	flex-wrap: wrap;
}
#homePdtList h2 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 100%;
    font-weight: bold;
    text-align: left;
	padding-bottom: 8px;
	border-bottom: 2px solid #eee;
	position: relative;
}
#homePdtList h2 span {
	font-size: 20px;
	display: block;
	padding-top: 5px;
	color: #666;
}
#homePdtList h2 a {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	padding: 5px 14px 3px 30px;
	border: 1px solid #ccc;
	border-radius: 20px;
	background: #FBF3F7;
}
#homePdtList h2 a::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-top:1px solid #666;
	border-right: 1px solid #666;
	transform: rotate(45deg) translateY(-50%);
	top: 50%;
	left: 5px;
}




#footMenu{
	background:#fff url("../../images/footer/footmenu_bg.jpg") no-repeat 0 0 ;
	background-size: 100% 101%;
	padding: 120px 70px 90px;
	
}


#footMenu .inner{
	width: 100%;
	margin: 0 auto;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 60px;
	padding: 0;
}

#footMenu .inner ul{
	padding: 0;
}
#footMenu .inner li{
	color: #fff;
	margin: 0 0 6px;
	line-height: 120%;
}
#footMenu .inner li.fmTitle{
	font-weight: bold;
	margin-bottom: 12px;
}
#footMenu .inner li a{
	display: block;
	position: relative;
	color: #fff;
	padding: 0 0 0 1em;
	text-decoration: none;
}
#footMenu .inner ul li ul{
	padding-left: 10px;
	margin-top: 6px;
	margin-left: 0;

}

#footMenu .inner li a::before{
	  content: '';
	  border: 0px;
	  position: absolute;
	  top: .6em;
	  left: 0;
	  margin-top: 0px;
		transition: all .3s ease-in-out;
		width: 7px;
		height: 7px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		transform: rotate(-45deg);
}


/*==========フッターエリア========*/
.footInfos{
	background: #454545;
	padding: 60px 70px 30px;
}
.footInfos .inner{
	padding: 0;
	width: 100% !important;
	margin: 0 auto;
		display: -webkit-flex;
		display: flex;

		justify-content: space-between;
}
.footInfo{
	width: 31%;
	color: #fff;
}
.footInfo .footInfotitle{
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 15px;
	background: #000;
	padding: 13px;
	color: #fff;
	border-bottom: none;
}
.footInfo .footInfotitle2{
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	margin: 0 0 6px;
	color: #fff;
	border-bottom: none;
}
.footInfo .footInfotitle2::before{
	content: "● "
}
.footInfo .footInfotitle2 span{
	font-weight: normal;
}
.footInfo p{
	font-size: 12px;
	text-align: left;
	color: #fff !important;
	margin-bottom: 20px;
}
.footInfo p a {
	color: #fff;
}
.footInfo p.creditcardbox{
	padding: 3px 6px;
	background: #fff;
	text-align: center;
	margin-top: 5px;
}
.footInfo p img{
	width: 80%;
	height: auto;
	
}

.footInfo dl{
	font-size: 12px;
	text-align: left;
	color: #fff !important;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 140%;
}
.footInfo dl dt{
	width: 90px;
	margin-bottom: 5px;
	font-weight: bold;
}
.footInfo dl dd{
	width: calc(100% - 90px);
	margin-bottom: 5px;
}


.creditImg{
	display: inline-block;
	margin-top: 5px;
}
img.creditImg{
	width:240px;
	height: auto;
}

.footChart{
	font-size: 14px;
	margin-bottom: 16px;
	margin-top: 4px;
	width: 100%;
}
.footChart table{
	font-size: 12px;
	border-left: 1px solid rgba(255,255,255,.1);
	border-top: 1px solid rgba(255,255,255,.1);
}
.footChart table strong{
	font-weight: bold;
	display: inline-block;
	padding: 0 8px 0 0;
}
.footChart table td,
.footChart table th{
	padding: 9px;
	font-size: 12px;
	line-height: 140%;
	border-right: 1px solid rgba(255,255,255,.1);
	border-bottom: 1px solid rgba(255,255,255,.1);
	text-align: left;
}
.footChart table td{
	text-align: right;
}
.footMenu{
	margin-top: 10px;
}
.footMenu li{
	display: inline-block;
	
}
.footMenu li a {
	display: block;
	padding: 0 10px;
	color: #333;
}
.footMenu li a::before{
	content: "> ";
}





/*==================*/
/* Clearfix */
.cf:after {
    content: " "; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.cf {
    display: inline-block;
    min-height: 1%;
}
/* Hides from IE-mac \*/
* html .cf {
    height: 1%;
}
.cf {
    display: block;
}
/* End hide from IE-Mac */


.pc{
	display: block;
}
.sp{
	display: none;
}

@media screen and (max-width: 800px) {
	
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
/*ここにスマホ用スタイルを記述*/
	body {
		color: #111;
		font-size:13px;
		line-height:160%;
	}


	/* toggle-panel */
	#panel-btn {
		display: inline-block;
		position:absolute;
		width:24px;
		height: 24px;
		top:15px;
		right:15px;
		margin: 0 0 0;
		cursor:pointer;

		z-index:4006 !important;

	}
	#panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 24px;
		height: 3px;
		margin: -2px 0 0 -12px;

		background: #555;
		transition: .2s;

	}
	#panel-btn-icon:before, #panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 24px;
		height: 3px;
		margin-left: -12px;
		background: #555;
		transition: .3s;

	}
	#panel-btn-icon:before {
		margin-top: -11px;
	}
	#panel-btn-icon:after {
		margin-top: 7px;
	}

	#panel-btn .close {
		background: transparent;

	}
	#panel-btn .close:before, #panel-btn .close:after {
		margin-top: 0;
		background: #fff;
	}
	#panel-btn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#panel-btn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}

	#panel {
		position: fixed;
		top: 0;
		right: -95%;
		width: 95%;
		height: 100%;
		background-size:100% auto;

		box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
		-moz-box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
		-webkit-box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
		-o-box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
		-ms-box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
		z-index:4004;

		background: #E10000;
	}



	#panel nav{
		padding:0 20px 0 20px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		height: 100%;
	}
	#panel nav ul li{
		text-align:center;

	}
	#panel nav ul li a{
		display:block;
		font-size:13px;

	}

	#panel nav ul li img{
		height:15px;
		width:auto;
	}
	#panel nav ul li.mTitle{
		margin-bottom:20px;
	}

	#panel nav ul li.sns img{
		width:30px;
		height:auto;
	}



/* ========= header footer ========= */


	header {
		position:relative;
		width:100%;
		min-width: 100%;
		max-width: 100%;
		height: 48px;
		z-index: 200;


	}
	

	#other header {
		background: rgba(255,255,255,0) url("../../images/header/line_sp.png") no-repeat center bottom;
		background-size: auto 86px;
		padding-bottom: 70px;
		box-shadow: 0 0 0 rgba(255,255,255,0)
	}
	header #hWrap{
		width:100%;
		min-width: 100%;
		max-width: 100%;
		margin: 0 auto;
		padding: 0 3vw;

	}
	body#home header #hWrap{
		width:100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0 3vw;
	}


	header #logo{
		width:200px;

		padding: 8px 13px 0 0;

		display: block;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	header #logo img{
		width:160px;
		height: auto;
		display: block;
		margin: -2px 0 0 0;
	}
	header #logo h1{
		font-size: 8px;
		line-height: 140%;
		margin: 0;
		padding: 0 0 0 0;
	}
	header #logo a{
		display: flex;
		align-items: center;
		padding: 0 0 0 0;
	}
	.tagline{
		width: 200px;
		font-size: 8px;
		line-height: 140%;
		padding: 0 0 0 0;
	}	
	
	
	#panel{

	}
	#gnavi{
		color: #000;
		position:relative;
		top: inherit;
		left: inherit;
		display: block;
		padding: 50px 0;
		margin-left: 0;
	}
	#gnavi > li{
		float: none;
		line-height: 100%;
		padding: 10px 0 10px 0;
		text-align: left;
		font-size: 13px;
		display:block;
		position: relative;
		border-top: 1px solid rgba(255,255,255,.9);
	}
	#gnavi > li a{
		text-decoration: none;
		color: #fff;
		text-align: left;
		line-height: 160%;
		display: inline-block;
		width:100%;
	}
	#gnavi > li:hover{
		background-color: transparent;
	}


	input#tglBtn[type="checkbox"]{
	  display: none;
	}
	#tglBtn:checked ~ .subMenu {
		opacity: 1;
		display: block;
	}
	.tbtBtn{
		color: #ddd;
		font-size: 20px;
		position: absolute;
		top:10px;
		right: 0;
		z-index: 1;
		width:20px;
		height: 20px;
	}
	.tbtBtn::before{
	  content: '';
	  width: 12px;
	  height: 12px;
	  border: 0px;
	  border-bottom: solid 1px #fff;
	  border-right: solid 1px #fff;
	  -ms-transform: rotate(45deg);
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	  position: absolute;
	  top: 50%;
	  left: 0;
	  margin-top: -8px;
		transition: all .3s ease-in-out;
	}
	#tglBtn:checked ~ .tbtBtn::before{
	  -ms-transform: rotate(-135deg);
	  -webkit-transform: rotate(-135deg);
	  transform: rotate(-135deg);
	  margin-top: -0;
	}
	#gnavi > li > .subMenu{
		position: relative;
		top:inherit;
		left: inherit;
		width:100%;
		background: transparent;
	}
	#gnavi > li .subMenu .subMenuWrap{
		width:100%;
		margin: 0 auto;
		display: block;
		justify-content: flex-start;
		padding: 30px 0;
	}
	#gnavi > li .subMenu ul{
		width:100%;
		margin-bottom: 25px;
	}
	#gnavi > li .subMenu ul li{
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		text-align: left;
		margin-bottom: 6px;
	}
	#gnavi > li .subMenu ul li.smTitle{
		margin-bottom: 10px;
		line-height: 100%;
		font-size: 14px;
	}
	#gnavi > li .subMenu ul li a{
		color: #fff;
		font-weight: normal;
		font-size: 14px;
		line-height: 100%;
		padding-left: 12px;
		position: relative;

	}
	
	#gnavi > li .subMenu ul li a::before{
	  content: '';
	  width: 6px;
	  height: 6px;
	  border: 0px;
	  border-top: solid 1px #fff;
	  border-right: solid 1px #fff;
	  -ms-transform: rotate(45deg);
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	  position: absolute;
	  top: 0;
	  left: 0;
	  margin-top: 2px;
	}

	#gnavi > li .subMenu{
		opacity: 0;
		display: none;
		pointer-events: none;
		transition: all 0.5s ease-out;
	}
	#gnavi > li .subMenu ul.headBana li a{
		padding-left: 0;
	}
	#gnavi > li .subMenu ul.headBana li a::before{
		display: none;
	}
	#gnavi > li .subMenu ul.headBana li{
		margin-bottom: 10px;
	}
	#gnavi > li .subMenu ul.headBana li img{
		width:180px;
		height: auto;
	}

	#gnavi > li > a::after{
		display: none;
	}

	#loginMenu{
		width:calc(100% - 250px);

		display: -webkit-flex;
		display: flex;

		justify-content: flex-end;
		margin-right: 50px;
		
		position: relative;
		z-index: 4003;
		
		
	}
	#loginMenu li{
		line-height: 56px;
		padding: 7px 0 0 10px;
	}
	#loginMenu li a{
		background: #fff;
		display: inline-block;
		padding: 8px;
		line-height: 100%;
	}
	#loginMenu li.lgmAply a{
		line-height: 100%;
		background: #fff url("../../images/head_aply.svg") no-repeat 3px 4px;
		background-size: 16px 16px;
		padding: 6px 8px 5px 20px;
	}
	#loginMenu li.lgmCart a{
		line-height: 100%;
		background: #fff url("../../images/head_cart.svg") no-repeat 3px 4px;
		background-size: 16px 16px;
		padding: 6px 5px 5px 26px;
	}
	#loginMenu li.lgmLogin a{
		line-height: 100%;
		background: #fff url("../../images/head_login.svg") no-repeat 3px 4px;
		background-size: 16px 16px;
		padding: 6px 5px 5px 26px;
	}

	#loginMenu li.lgmLogout a{
		line-height: 100%;
		background: #fff url("../../images/head_logout.svg") no-repeat 3px 4px;
		background-size: 16px 16px;
		padding: 6px 5px 5px 26px;
	}

	#panel #loginMenu{
		justify-content: flex-start;		
		position: absolute;
		margin-right: 0;
		
		display: flex;
	}
	#panel #loginMenu li{
		line-height: 56px;
		padding: 7px 6px 0 0;
	}
	#panel #loginMenu li.lgmAply a{
		line-height: 100%;
		background: #fff url("../../images/header/h_icon_acount.svg") no-repeat center center;
		background-size: 16px 16px;
		padding: 6px 8px 5px 20px;
		width: 30px;
        height: 30px;
        border-radius: 50%;
	}
	#panel #loginMenu li.lgmCart a{
		line-height: 100%;
		background: #fff url("../../images/header/h_icon_cart.svg") no-repeat center center;
		background-size: 16px 16px;
		padding: 6px 5px 5px 26px;
		width: 30px;
        height: 30px;
        border-radius: 50%;
	}
	#panel #loginMenu li.lgmLogin a{
		line-height: 100%;
		background: #fff url("../../images/header/h_icon_login.svg") no-repeat center center;
		background-size: 16px 16px;
		padding: 6px 5px 5px 26px;
		width: 30px;
        height: 30px;
        border-radius: 50%;
	}
	#panel #loginMenu li.lgmLogout a{
		line-height: 100%;
		background: #fff url("../../images/header/h_icon_logout.svg") no-repeat center center;
		background-size: 16px 16px;
		padding: 6px 5px 5px 26px;
		width: 30px;
        height: 30px;
        border-radius: 50%;
	}

	.headSubCat{
		position: relative;
	}
	.headSubCat::before{
		content: "";
		position: absolute;
		width: 10px;
		height: 10px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		right: 0;
		top: 18px;
		transform: translate(-50%,-50%) rotate(45deg);
		transition: all .3s ease-in-out;
	}
	.headSubCat.active::before{
		transform: translate(-50%,-50%) rotate(-135deg);
		right: 0;
		top: 22px;
	}
	
	.headSubCatMenuBox{
		display: none;
		position: static;
		top: 76px;
		left: 0;
		width: 100%;

		background: rgba(0, 0, 0, .1);
		border-radius: 10px;
		padding: 2px 10px 10px 10px;
		margin-top: 3px;
		
		
	}
	.headSubCatMenu{
		display: block;
		width: 100%;
		margin: 0 auto;
	}
	.headSubCatList{
		width: 100%;
	}
	.headSubCatList li{
		display: flex;
		color: #fff;
		margin-bottom: 1px;
	}
	.headSubCatList li.headSubCatTitle{
		color: #fff;
		font-weight: bold;
		margin-top: 10px;
		margin-bottom: 3px;
		padding-top: 11px;
		border-top: 1px solid rgba(255,255,255,.2);
	}
	.headSubCatList li a{
		color: #fff;
		font-size: 12px;
		padding-left: 11px;
		position: relative;
		display: block;
	}
	.headSubCatList li a::before{
		content: "";
		position: absolute;
		width: 5px;
		height: 5px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		left: 3px;
		top: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
		transition: all .3s ease-in-out;
	}
	.headSubCatListtitlenone{
		margin-top: 0;
	}

	

	.total-quant{
		background: #EB0055;
		padding: 7px;
		border-radius: 50px;
		color: #fff;
		font-size: 11px;
		display: inline-block;
		margin-left: 6px;
		line-height: 100%;
		width:23px;
		height: 23px;
	}



	
	#productMenu{
		color: #fff;
		position:relative;
		top: 0;
		right: 0;
		background: none;
	}
	#productMenu li{
		float: none;
		line-height:140%;;
		border-left: none;
	}
	#productMenu li a{
		color: #000;
		text-decoration: none;
		display: inline-block;
		padding: 10px 12px;
		font-weight: bold;
		background: #f3e7ff;
		text-align: center;
	}
	#productMenu li a:hover{
		color: #fff;
		background: #f3e7ff;
	}


	#page-top{
	right: 10px;
	bottom: 40px;
		width:40px;
		height: 40px;
	}
	#page-top img{
		width:40px;
		height: 40px;
	}


	footer{
		padding: 30px;
		font-size: 9px;
	}


	
	.scrolBtn{
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left:-28px;
		z-index: 103;
		height: 46px;
	}
	.scrolBtn img{
		width:56px;
		height: 46px;
	}


	#promotion{
		overflow: hidden;
		width:100%;
	}


	.promoBox{
		background: #ccc;
	}


	.scrolBtn{
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left:-20px;
		z-index: 103;
		height: 30px;
	}
	.scrolBtn img{
		width:40px;
		height: 30px;
	}




	.textBox{
		position: absolute;
		top: inherit;
		bottom: 50px;
		right: 10%;
		background: #fff;
		padding: 15px 20px 20px;
		text-align: center;

		transform: translate(0,0);
		
		width: 80%;
	}
	.textBoxTitle{
		margin-bottom: 20px;
	}
	.textBoxTitle img{
		width: 100%;
	}
	.textBoxTxt{
		font-size: 24px;
		line-height: 140%;
		margin-bottom: 10px;
	}
	.textBoxTxt span{
		font-size: 18px;
	}
	.textBoxBtn{
		text-align: center
	}
	.textBoxBtn a{
		display:inline-block;
		border-radius: 50px;
		background: linear-gradient(to right, #FF3BF0, #B62CFF);
		padding: 10px 50px 10px 30px;
		font-weight: bold;
		color: #fff;
		position: relative;
	}
	.textBoxBtn a::after{
		content: "";
		position: absolute;
		width:10px;
		height: 10px;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(45deg);
		border-right: 2px solid #fff;
		border-top: 2px solid #fff;
	}


	/*LOVE*/
	.promo_grass{
		background: url("/images/promotion/promo_01_sp.jpg") no-repeat center center;
		background-size: cover;
	}







	/*=========コンテンツ=========*/
	article{
		padding:0 0 0 0;
	}
	article article.post{
		padding:0 0 0 0;
		width: 96%;
	}
	section{

	}
	h2 img{
		height: 17px;
		width: auto;
	}
	
	

	h2{
		font-size:20px;
		margin-bottom:30px;
		line-height:100%;
		font-weight:bold;
		text-align: center;
	}

	h3{
		font-size:12px;
		margin-bottom:20px;
		line-height:100%;
		font-weight:bold;
		text-align: center;
	}
	h4{
		font-size:13px;
		margin-bottom:15px;
		line-height:140%;
		font-weight:bold;
		text-align: center;
	}

	.btn_arrow{
		text-align: center;
	}
	.btn_arrow a,.btn_arrow input[type="button"],.btn_arrow input[type="submit"]{
		padding: 12px 70px 12px 50px;
		background: #FF0094;
		font-size: 12px;
	}


	/* ========= HOME ========= */

	#homeProduct{
		background: #fff;
		padding: 30px 5vw 30px;
	}
	#homeProduct .inner{
		width: 100%;
		margin: 0 auto;

		display: flex;
		gap: 3vw;

		flex-wrap: wrap;
	}


	.homePdtBox{
		width: calc(50vw - 6.5vw);
		height: 55vw;
		padding: 20px 0 10px;

		background-size: cover;
		background-position: center;

		display: flex;
		flex-flow: column;
		justify-content:flex-end;
		flex-wrap: wrap;
	}
	.homePdtBox a{
		height: 55vw;
	}
	
	.homePdtBox .homePdTxt{
		width: 100%;
		text-align: center;
		margin-bottom: 6px;
		color: #fff;
		font-weight: bold;
		text-shadow: 0 0 4px rgba(0,0,0,.4)
	}
	.homePdtBox .homePdBtn{
		width: 100%;
		text-align: center;
	}
	.homePdtBox .homePdBtn a{
		display:inline-block;
		border-radius: 50px;
		background: linear-gradient(to right, #FF3BF0, #B62CFF);
		padding: 10px 40px 10px 20px;
		font-weight: bold;
		color: #fff;
		position: relative;
		font-size: 12px;
		line-height: 100%;
	}
	.homePdtBox .homePdBtn a::after{
		content: "";
		position: absolute;
		width:8px;
		height: 8px;
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(45deg);
		border-right: 2px solid #fff;
		border-top: 2px solid #fff;
	}




	#homePdtList{
		width:100%;
		background: #fff;
		padding: 15px 0 15px;
	}
	#homePdtList .inner{
		width: 100%;
		margin: 0 auto;

		display: flex;
		gap: 3vw;

		flex-wrap: wrap;
	}

	#homePdtList h2 {
		font-size: 18px;
		margin-bottom: 20px;
		line-height: 120%;
		font-weight: bold;
		text-align: left;
		padding-bottom: 8px;
		border-bottom: 2px solid #eee;
		position: relative;
	}
	#homePdtList h2 span {
		font-size: 12px;
		display: block;
		padding-top: 9px;
		color: #666;
	}
	#homePdtList h2 a {
		position: absolute;
		right: 0;
		top: inherit;
		bottom: 7px;
		transform: translateY(0);
		font-size: 10px;
		padding: 3px 14px 1px 25px;
		border: 1px solid #ccc;
		border-radius: 20px;
		background: #FBF3F7;
	}
	#homePdtList h2 a::before {
		content: "";
		position: absolute;
		width: 7px;
		height: 7px;
		border-top:1px solid #666;
		border-right: 1px solid #666;
		transform: rotate(45deg) translateY(-50%);
		top: 50%;
		left: 5px;
	}




	
	/*HOME*/
	

	#footBana{
		background:#d20347;
		padding: 50px 0 50px;

	}

	#footBana .inner{
		width: 90%;
		margin: 0 auto;
	}

	#footBana .inner ul{
			display: -webkit-flex;
			display: flex;

			justify-content: space-between;
	}
	#footBana .inner li{
		width:46%;
	}
	#footBana .inner li a{
		display: block;
	}
	#footBana .inner li a img{
		width:100%;
		height: auto;
	}


	


	/*==========フッターエリア========*/
	.footInfos{
		background: #454545;
		padding: 30px 0 10px;
	}
	.footInfos .inner{
		width: 92% !important;
		padding: 0;
		margin: 0 auto;
			display: block;

			justify-content:flex-start;
	}
	.footInfo{
		width: 100%;
		color: #fff;
	}
	.footInfo .footInfotitle{
		font-size: 11px;
		font-weight: bold;
		text-align: center;
		margin: 0 0 10px;
		background: #000;
		padding: 9px;
		color: #fff;
		border-bottom: none;
	}
	.footInfo .footInfotitle2{
		font-size: 11px;
		font-weight: bold;
		text-align: left;
		margin: 0 0 6px;
		color: #fff;
		border-bottom: none;
	}
	.footInfo .footInfotitle2::before{
		content: "● "
	}
	.footInfo .footInfotitle2 span{
		font-weight: normal;
	}
	.footInfo p{
		font-size: 11px;
		text-align: left;
		color: #fff !important;
		margin-bottom: 10px;
	}
	.footInfo dl{
		font-size: 11px;
		margin-bottom: 10px;
	}
	.footInfo dl dt{
		width: 84px;
		margin-bottom: 5px;
		font-weight: bold;
	}
	.footInfo dl dd{
		width: calc(100% - 84px);
		margin-bottom: 5px;
	}
	
	img.creditImg{
		width:200px;
		height: auto;
	}

	.footChart{
		font-size: 11px;
		margin-bottom: 10px;
	}
	.footChart table{
		font-size: 11px;
		border-left: 1px solid rgba(255,255,255,.1);
		border-top: 1px solid rgba(255,255,255,.1);
	}
	.footChart table strong{
		font-weight: bold;
	}
	.footChart table td,
	.footChart table th{
		padding: 3px;
		font-size: 11px;
		line-height: 120%;
		border-right: 1px solid rgba(255,255,255,.1);
		border-bottom: 1px solid rgba(255,255,255,.1);
		text-align: left;
	}



	#footMenu{
		background:#E10000;
		padding: 20px 20px 20px;

	}

	#footMenu .inner{
		width: 100%;
		margin: 0 auto;

		display: flex;
		flex-wrap: wrap;
		justify-content:flex-start;
		gap:20px 10px;
		padding: 0;
	}

	#footMenu .inner ul{
		margin: 0;
		width:calc(50% - 5px);
	}
	#footMenu .inner ul li ul{
		width:100%;
		margin-left: 0;
	}
	#footMenu .inner li{
		color: #fff;
		margin: 0 0 2px;
	}
	#footMenu .inner li.fmTitle{
		font-weight: bold;
		margin-bottom: 10px;
	}
	#footMenu .inner li a{
		display: block;
		color: #fff;
		font-size: 12px;
		padding: 0 0 0 .8em;
	}
	

	#footMenu .inner li a::before{
		content: '';
		border: 0px;
		position: absolute;
		top: .6em;
		left: 0;
		margin-top: 0px;
		transition: all .3s ease-in-out;
		width: 5px;
		height: 5px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		transform: rotate(-45deg);
	}
	

	.footMenu{

	}
	.footMenu li{
		display: inline-block;

	}
	.footMenu li a {
		display: block;
		padding: 0 6px;
	}
	.footMenu li a::before{
		content: "> ";
	}
	
	
	#otherpage .inner{
		width: 96%;
		margin: 0 auto;
	}
	#otherpage .otherpageBg2{
		padding: 40px 0;
	}
	#otherpage .inner.inner2{
		padding: 40px 0 0;
	}
	.pageChart{
		font-size: 12px;
		margin-bottom: 10px;
	}
	.pageChart table{
		font-size: 12px;
		border-left: 1px solid rgba(0,0,0,.1);
		border-top: 1px solid rgba(0,0,0,.1);
	}
	.pageChart table strong{
		font-weight: bold;
	}
	.pageChart table td,
	.pageChart table th{
		display: block;
		padding: 6px;
		font-size: 12px;
		line-height: 140%;
		border-right: 1px solid rgba(0,0,0,.1);
		border-bottom: 1px solid rgba(0,0,0,.1);
		width: 100%;
	}
	.pageChart img.creditcard{
		width:100%;
		height: auto;
	}

	.noitem{
		text-align: center;
		padding: 50px 0;
		background-color: #f1f1f1;
		font-size: 14px;
	}



}



/*ショップ部分*/

.site-content{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	margin: 0 auto;
	padding: 60px 0 100px;
}
.site-content.cart-content{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	margin: 0 auto;
	padding: 0 0 100px;
}

.site-content.categoryLists{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	margin: 0 auto;
	padding: 50px 0 100px;
}

.site-content.feature_page{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;

	margin: 0 auto;
	padding: 50px 0 100px;
}







.productCont{
    display: -webkit-flex;
    display: flex;
	
	justify-content: space-between;
	width: 100%;
	
	align-items: flex-start;
}
.productSide{
	width:20%;
	border: 3px solid #eee;
	padding: 10px;
}
.productDetail{
	width:100%;
	min-width:1000px;
    display: -webkit-flex;
    display: flex;
	
	justify-content: space-between;
}



.site-content.feature_page .productSide{
	width:20%;
}



.productList{
	width:78%;
}

.site-content.feature_page .productList{
	width:78%;
}

.productCont.homeCont .productList{
	width:100%;
	
}



.contBanaArea{
	margin: 0 auto 60px;
}
#homePdtList .contBanaArea{
	margin: 0 auto 60px;
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
}

.productDetailMain .contBanaArea{
	margin: 0 auto 40px;
	width: 1060px;
}


.contBanaAreaLists{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:0 2%;
}
.contBanaAreaLists .contBanaAreaList{
	width: 32%;
}
.contBanaAreaLists .contBanaAreaList img{
	width: 100%;
	height: auto;
	border: transparent;
	border-radius: 14px;
	display: block;
	
	box-shadow: 0 0 5px rgba(0,0,0,.4);
}



.itemLists{
	
    display: -webkit-flex;
    display: flex;
	
	justify-content:flex-start;
	flex-wrap: wrap;
	
	gap: 20px 20px;
	
	margin-bottom: 50px;
}
.itemLists article{
	width:calc(25% - 15px) !important;
	margin:0 !important;
	text-align: center;
	padding: 0;
}
.itemLists article:nth-of-type(5n){
	margin-right: 0% !important;
}

.itemLists article .listImg{
	margin-bottom: 10px;
	position: relative;
	border-radius: 10px;
	border: 1px solid #ccc;
	overflow: hidden;
}
.itemLists article .listImg img{
	width:100%;
	height: auto;
	
}
.itemLists article .listImg .newIcon{
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	background: #fff;
	border: 1px solid rgba(209,1,4,.5);
	padding: 5px;
	line-height: 100%;
	color: #D10104;
	font-size: 12px;
}


.catLists{
	
    display: -webkit-flex;
    display: flex;
	
	justify-content:flex-start;
	flex-wrap: wrap;
	
	column-gap: 40px;
	grid-gap: 30px;
}
.catLists article{
	width:calc(33% - 20px) !important;
	margin:0 !important;
	text-align: center;
	padding: 0;
}


h1.item-name .newIcon{
	display: inline-block;
	background: #fff;
	border: 1px solid rgba(209,1,4,.5);
	padding: 5px;
	line-height: 100%;
	color: #D10104;
	font-size: 12px;
	vertical-align: top;
	margin-left: 15px;
}



.itemprice{
	font-size: 18px;
	font-weight: bold;
	color: #D10104;
	vertical-align: bottom;
	margin-top: 3px;
	text-align: left;
	line-height: 160%;
}
.itemprice .tax{
	font-size: 12px;
}
.itemprice .teika{
	display: inline-block;
	font-size: 12px;
	color: #666;
	text-decoration: line-through;
}
.saleIcon{
	display: inline-block;
	background: #D10104;
	padding: 5px;
	line-height: 100%;
	color: #fff;
	margin-left: 5px;
	font-size: 10px;
	margin-top: -10px;
	vertical-align: middle;
	font-size: 12px;
}

.listCat{
	font-size: 18px;
	color: #FF4D9F;
	font-weight: bold;
	margin-bottom: 10px;
}
.itemname{
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 5px;
	line-height: 140%;
}
.itemname a{
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	display: block;
	line-height: 150%;
	
}

.zaikoChart{
	margin: 10px 0 20px;
}
.zaikoChart table{
	width: 100%;
	border-left: 1px solid #999;
	border-top: 1px solid #999;
	color: #666;
}
.zaikoChart th,
.zaikoChart td{
	padding: 5px 8px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
}
.zaikoChart th{
	text-align: center;
	background: #f6f6f6;
}

h1.page-title{
	font-size: 40px !important;
	font-weight:bold !important;
	margin-bottom: 40px !important;
}





.sortBtn{
	text-align: right;
	font-size: 14px;
	margin-top: -66px;
	margin-bottom: 40px
}

.pnkz{
    display: -webkit-flex;
    display: flex;
	
	justify-content:flex-start;
	padding-bottom: 20px;
}

.pnkz li{
	font-size: 13px;
	font-weight: normal;
}
.pnkz li a::after{
	content: "/";
	display: inline-block;
	padding: 0 10px;
	line-height: 100%;
	
}



@media screen and (max-width: 800px) {



	.contBanaArea{
		margin: 0 auto 25px;
		width: 94% !important;
		max-width: 94% !important;
		min-width: 94% !important;
	}

	.contBanaAreaLists{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap:0 2%;
	}
	.contBanaAreaLists .contBanaAreaList{
		width: 32%;
	}
	.contBanaAreaLists .contBanaAreaList img{
		width: 100%;
		height: auto;
		border: transparent;
		border-radius: 5px;
		display: block;

		box-shadow: 0 0 2px rgba(0,0,0,.1);
	}



	.itemLists{

		display: -webkit-flex;
		display: flex;

		justify-content:flex-start;
		flex-wrap: wrap;
	}
	.itemLists article{
		width:calc(50% - 10px) !important;
	}
	.itemLists article:nth-of-type(4n){
		margin-right: 0% !important;
	}
	.itemLists article:nth-of-type(2n){
		margin-right: 0% !important;
	}

	.itemLists article .listImg{
		margin-bottom: 7px;
	}
	.itemLists article .listImg img{
		width:100%;
		height: auto;

	}


	.itemprice{
		font-size: 17px;
		font-weight: bold;
		color: #D10104;
	}
	.itemprice .tax{
		font-size: 10px;
	}
	.itemprice .teika{
		display: inline-block;
		font-size: 10px;
		color: #666;
		text-decoration: line-through;
	}

	.listCat{
		font-size: 12px;
		color: #999999;
	}
	.itemname{
		font-size: 12px;
		font-weight: bold;
	}
	h1.page-title{
		font-size: 22px !important;
		font-weight:bold !important;
		margin-bottom: 30px !important;
	}




	.sortBtn{
		text-align: right;
		font-size: 11px;
		margin-top: -56px;
		margin-bottom: 20px
	}

	.pnkz{
		display: -webkit-flex;
		display: flex;

		justify-content:flex-start;
		padding-bottom: 20px;
	}

	.pnkz li{
		font-size: 10px;
	}
	.pnkz li a::after{
		content: ">";
		display: inline-block;
		padding: 0 10px;
		line-height: 100%;

	}

	#primary #content .banaAreaTop{
		text-align: center;
		margin-bottom: 10px;
		padding: 0 10px 5px;
	}
	#primary #content .banaAreaTop img{
		width:100%;
		height: auto;
	}


	
	.privateArea{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width:96%;
		margin: 0 auto 40px;
	}

	.privateImg{
		width: 100%;
		margin-bottom: 20px
	}
	.privateImg img{
		width: 100%;
		height: auto;
	}
	.privateTxt{
		width:100%;
	}

	.privateChart{
		display: block;
		border-bottom: 1px solid #ccc;
	}
	.privateTitle{
		width: 100%;
		border-top: 1px solid #ccc;
		padding: 10px 0 0;
		font-weight: bold;
	}
	.privateBody{
		width:100%;
		border-top: none;
		padding: 6px 0 10px;
		padding-left: 10px;
	}



	
}














.pagination_wrapper{
	padding-top: 30px;
}
.pagination_wrapper .page-numbers{
	display: flex;
	justify-content: center;
	gap: 4px 4px;
}

.pagination_wrapper .page-numbers li span,
.pagination_wrapper .page-numbers li a{
	border: 1px solid #ccc;
	display: inline-block;
	padding: 10px;
	line-height: 100%;
	border-radius: 5px;

}
.pagination_wrapper .page-numbers li span.current{
	background: #eee;
}


.movieBoxArea {
	padding: 30px 0 0; 
}
.movieBox {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.movieBox iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
	
	.movieBoxArea {
		padding: 0 3% 0;
	}
	.movieBox {
	  width: 100%;
	  aspect-ratio: 16 / 9;
	}
	.movieBox iframe {
	  width: 100%;
	  height: 100%;
	}
}






/* スライドの全体の縦幅を固定 */

  #promotionnew{
	  position: relative;
	  width: 100%;
	  height: 590px;
	  overflow: hidden;
	  background:  url("../../images/promotion/promo_bg.png") no-repeat center bottom 0;
	  background-size: auto 590px;
	  
	  z-index: 1;

  }
.promotionCont {
	 width: 3860px;
	 overflow: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 20px 0 0;
  }
.slider .slick-slide {
   width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px; /* 各スライドの余白を設定 */
  box-sizing: border-box;
	  border-radius: 20px;
	background: #fff;
}

/* スライドのコンテンツ自体のスタイル */
.slider .slick-slide  {
  width: 100%;
}
  .slider .slick-slide img {
		  width: 100%;
		  height: auto;
	  display:inline-block;
	  border-radius: 20px;
	  box-shadow: 0 0 10px rgba(0,0,0,.2);
  }


.slick-prev {
	left: 50%;
	z-index: 1;
	transform: translateX(-410px);
}
.slick-next {
	right: 50%;
	z-index: 1;
	transform: translateX(410px);
}
.slick-next:before, .slick-prev:before {

	font-weight: bold;
    background: #666;
    border-radius: 50%;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
	
	line-height: 100%;
}


 .slick-next, .slick-prev {
	width: 40px;
	height: 40px;

  }
.slick-dots {
	bottom: -25px;
}
.slick-dots li button:before {
	font-size: 11px;
	color: #9F0000;
}
.slick-dots li.slick-active button:before{
	font-size: 11px;
	color: #FFFFFF;
}

	  
	  
@media screen and (max-width: 800px) {
   /* スライドの全体の縦幅を固定 */
	  
	  #promotionnew{
		  position: relative;
		  width: 100%;
		  height: 79vw;
		  overflow: hidden;
		  background: #fff url("../../images/promotion/promo_bg_sp.png") no-repeat center bottom 0;
		  background-size: auto 100%;
	  }
    .promotionCont {
		 width: 100%;
		 overflow: hidden;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		padding: 20px 0 0;
	  }
   .slider .slick-slide {
	   width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0; /* 各スライドの余白を設定 */
      box-sizing: border-box;
    }

    /* スライドのコンテンツ自体のスタイル */
    .slider .slick-slide  {
      width: 100%;
    }
	  .slider .slick-slide img {
			  width: 100%;
			  height: auto;
		  display:inline-block;
		  border-radius: 0;
		  box-shadow: 0 0 10px rgba(0,0,0,.2);
	  }
	  
	  
	.slick-prev {
		left: 10px;
		z-index: 1;
		transform: translateX(0);
	}
	.slick-next {
		right: 10px;
		z-index: 1;
		transform: translateX(0);
	}
	.slick-next:before, .slick-prev:before {
		font-size: 20px;
	}
	  
	  
	 .slick-next, .slick-prev {
		width: 20px;
		height: 20px;

	  }
	.slick-dots {
		bottom: -23px;
	}
	.slick-dots li{
		position: relative;
		display: inline-block;
		width: 20px;
		height: 20px;
		margin: 0 0px;
		padding: 0;
		cursor: pointer;	
	}
	.slick-dots li button:before {
		font-size: 12px;
		color: #9F0000;
	}
	.slick-dots li.slick-active button:before{
		font-size: 12px;
		color: #fff;
	}
	
}







.footer-bana-area{
	padding: 50px 0 50px 0;
	background: #F7F7F7;
}
.footer-bana-area ul{
	width: 1070px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:0 5%;
}
.footer-bana-area ul li{
	width: 30%;
	display: block;
	border: 1px solid #ccc;
}
.footer-bana-area ul li a img{
	width: 100%;
	height: auto;
}





@media screen and (max-width: 800px) {


	.footer-bana-area{
		padding: 30px 0 30px 0;
		background: #F7F7F7;
	}
	.footer-bana-area ul{
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap:10px 0
	}
	.footer-bana-area ul li{
		width: 60%;
		display: block;
		border: 1px solid #ccc;
	}
	.footer-bana-area ul li a img{
		width: 100%;
		height: auto;
	}
	
}










/*20250510*/
.topcatList{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	margin: 0 auto 70px;

}
.topcatList ul{
	display: flex;
	flex-wrap: wrap;
	gap:20px 14px;
	
	justify-content: center;
}
.topcatList ul li{
	width: calc(10.5% - 13px);
	text-align: center;
	font-size: 13px;
	line-height: 140%;
	font-weight: bold;
}

.topcatList ul li .topcatListImg{
	padding: 10px ;
	background: #F0EDEA;
	border-radius: 50%;
	margin-bottom: 8px;
}
.topcatList ul li .topcatListImg img{
	width: 100%;
	height: auto;
}

#homePdtList h2.topcatTitle{
	text-align: center;
	border-bottom: none;
	margin-bottom: 30px;
	font-size: 32px;
	
	letter-spacing: .1em;
	
	
	
	color: #E10000;
	font-weight: 500;
}






.topfeatureList{
	width: 100%;
	
	padding: 60px 0 50px;
	
	margin-bottom: 70px;
	
	background: #F4F1D7 url("../../images/home/feature_bg.jpg") ;
	background-size: 1000px auto;
	
	position: relative;

}
.topfeatureList::before{
	content: "";
	position: absolute;
	top: 13px;
	left: 0;
	width: 100%;
	height: 8px;
	background: #E10000;
}
.topfeatureList::after{
	content: "";
	position: absolute;
	top: 26px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ffffff;
}

.topfeatureList ul{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	margin: 0 auto 0;

	display: flex;
	flex-wrap: wrap;
	gap:20px 2%;
}
.topfeatureList ul li{
	width: 32%;
	text-align: left;
	font-size: 13px;
	line-height: 140%;
	font-weight: bold;
}

.topfeatureList ul li .topfeatureListImg{
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 8px;
	border: 1px solid #ccc;
}
.topfeatureList ul li .topfeatureListImg img{
	width: 100%;
	height: auto;
}

#homePdtList h2.topfeatureTitle{
	text-align: center;
	border-bottom: none;
	margin-bottom: 30px;
	padding-bottom: 30px;
	font-size: 32px;
	
	letter-spacing: .1em;
		
	color: #E10000;
	font-weight: 500;
	
	background: url("../../images/home/feature_title_ribon.png") no-repeat center bottom;
	background-size: 74px auto;
}



.toptshirtList{
	width:1360px;
	margin: 0 auto 70px;

	padding: 40px 40px 40px 40px;
	border-radius: 40px;
	background: #F4F4F4;
	margin-bottom:60px;
}
.cattshirts {
	width:100%;
	margin-bottom: 40px;
}
.toptshirtList ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:20px 26px;
}


.toptshirtList ul li{
	width: calc(12.5% - 23px);
	text-align: center;
	font-size: 13px;
	line-height: 140%;
	font-weight: bold;
}
.toptshirtList.cattshirts ul li{
	width: calc(12.5% - 23px);

}

.toptshirtList ul li .toptshirtListImg{
	padding: 10px ;
	background: #ffffff;
	border-radius: 50%;
	margin-bottom: 8px;
}
.toptshirtList ul li .toptshirtListImg img{
	width: 100%;
	height: auto;
}

.cattshirts h2.toptshirtTitle,
#homePdtList h2.toptshirtTitle{
	text-align: center;
	border-bottom: none;
	margin-bottom: 40px;
	font-size: 32px;
	
	letter-spacing: .1em;
	
	
	
	color: #E10000;
	font-weight: 500;
}








#homePdtList h2.toplistTitle{
	color: #E10000;
	font-size: 32px;
	border-bottom: transparent;
	padding-bottom: 0;
	margin-bottom: 30px;
	letter-spacing: .1em;
	font-weight: 500;
	

}
#homePdtList #instawidgetArea h2.toplistTitle {
	text-align: center;
}

.topListsBox{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;

	margin: 80px auto 0;
	padding: 70px 0 0 0;

	border-top: 1px dashed #ddd;
}
.topListsBox.newitems{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;

	margin: 0 auto 0;
	padding: 0 0 0 0;

	border-top: none;
}






.itemLists.homeLis {
    gap: 20px 20px;
}
.itemLists.homeList article{
	width: calc(16.6666% - 16.66666px) !important;
	position: relative;
}
.itemLists.homeList article .listImg{
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ccc;
}
.newitems .itemLists.homeList article::before{
	content: "";
	background: url("../../images/icon_new.png") no-repeat 0 0;
	background-size: 48px auto;
	width: 48px ;
	height: 48px;
	position: absolute;
	right: -4px;
	top: -12px;
	
	z-index: 1;
}


.rankingitems .itemLists.homeList article:nth-of-type(1)::before{
	content: "";
	background: url("../../images/ranking_1.png") no-repeat 0 0;
	background-size: 52px auto;
	width: 52px ;
	height: 52px;
	position: absolute;
	right: 4px;
	top: -12px;
	
	z-index: 1;
}
.rankingitems .itemLists.homeList article:nth-of-type(2)::before{
	content: "";
	background: url("../../images/ranking_2.png") no-repeat 0 0;
	background-size: 52px auto;
	width: 52px ;
	height: 52px;
	position: absolute;
	right: 4px;
	top: -12px;
	
	z-index: 1;
}

.rankingitems .itemLists.homeList article:nth-of-type(3)::before{
	content: "";
	background: url("../../images/ranking_3.png") no-repeat 0 0;
	background-size: 52px auto;
	width: 52px ;
	height: 52px;
	position: absolute;
	right: 4px;
	top: -12px;
	
	z-index: 1;
}





.spcatmenu{
	display: none;
}
.spcatmenupanel ul.spcatmenupanelCat{
	display: flex;
	flex-wrap: wrap;
	gap:20px 14px;
}
.spcatmenupanel ul.spcatmenupanelCat li{
	width: calc(14.2857% - 12px);
	text-align: center;
	font-size: 13px;
	line-height: 140%;
	font-weight: bold;
}

.spcatmenupanel ul.spcatmenupanelCat li .topcatListImg{
	padding: 10px ;
	background: #FFDBDC;
	border-radius: 16px;
	margin-bottom: 8px;
}
.spcatmenupanel ul.spcatmenupanelCat li .topcatListImg img{
	width: 100%;
	height: auto;
}


.topfeatureList ul.spcatmenupanelFeat{
	display: flex;
	flex-wrap: wrap;
	gap:20px 2%;
}
.topfeatureList ul.spcatmenupanelFeat li{
	width: 32%;
	text-align: left;
	font-size: 13px;
	line-height: 140%;
	font-weight: bold;
}

.topfeatureList ul.spcatmenupanelFeat li .topfeatureListImg{
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 8px;
	border: 1px solid #ccc;
}
.topfeatureList ul.spcatmenupanelFeat li .topfeatureListImg img{
	width: 100%;
	height: auto;
}



.groupBana{
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	margin: 20px auto 100px;
	padding: 40px 0 40px 0;

	border-top: 1px dashed #ddd;
	border-bottom: 1px dashed #ddd;

	margin-bottom: 100px;
	display: flex;
	flex-wrap: wrap;
	
	justify-content: center;
	
	align-items: center;

}
.groupBana ul.groupBanaList{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap:0 2%;
	
	width: 60%;
}
.groupBana .groupBanaList li{
	width: 30%;
	padding: 10px;
	border: 1px solid #ccc;	
	border-radius: 10px;
	background: #fff;
}
.groupBana .groupBanaList li img{
	width: 100%;
	height: auto;
	display: block;
	
}
.groupBana h2{
	width: 15%;
    font-size: 24px;
    margin-bottom: 0;
    line-height: 100%;
    text-align: left;
    padding-bottom: 0;
    border-bottom: transparent;
    position: relative;

	color: #E10000;
	font-weight: 500;
}




@media screen and (max-width: 800px) {
	
	.topcatList{
		width: 100% ;
		max-width: 100%;
		min-width: 100%;
		padding: 10px 10px 10px 10px;
		border-radius: 15px;
		margin-bottom: 15px;
	}
	.topcatList ul{
		gap:4px 4px;
		justify-content: flex-start
	}
	.topcatList ul li{
		width: calc(50% - 4px);
		text-align: center;
		font-size: 12px;
		display: flex;
		flex-wrap: wrap;
		
	}

	.topcatList ul li a{
		display: flex;
		flex-wrap: wrap;
		
		align-items: center;
		justify-content: space-between;
	}
	.topcatList ul li a span{
		width: 62%;
		text-align: left;
	}
	.topcatList ul li .topcatListImg{
		padding: 2px ;
		margin-bottom: 0;
		
		width: 32%;
	}
	#homePdtList h2.topcatTitle{
		margin-bottom: 10px;
		font-size: 22px;

	}






	.topfeatureList{
		margin-bottom: 30px;
		padding: 40px 0;
	}

	.topfeatureList ul{
		padding: 0 3vw;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap:8px 8px;
	}
	.topfeatureList ul li{
		width: calc(50% - 4px);
		text-align: left;
		font-size: 12px;
		line-height: 140%;
		font-weight: bold;
	}

	.topfeatureList ul li .topfeatureListImg{
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 4px;
		border: 1px solid #ccc;
	}
	.topfeatureList ul li .topfeatureListImg img{
		width: 100%;
		height: auto;
	}

	#homePdtList h2.topfeatureTitle{
		margin-bottom: 10px;
		font-size: 22px;


	}





	.toptshirtList{
		
		width: 94%;
		margin: 0 auto;
		padding: 20px 20px 20px 20px;
		border-radius: 15px;
	}
	.productList .toptshirtList{
		width: 100%;
		margin: 0 0 20px 0;
	}
	.toptshirtList ul{
		display: flex;
		flex-wrap: wrap;
		gap:6px 8px;
		justify-content: flex-start;
	}
	.toptshirtList ul li{
		width: calc(50% - 4px);
		text-align: center;
		font-size: 11px;
	}
	.toptshirtList.cattshirts ul li{
		width: calc(50% - 4px);
	}

	.toptshirtList ul li a{
		display: flex;
		flex-wrap: wrap;
		
		align-items: center;
		justify-content: space-between;
	}
	.toptshirtList ul li a span{
		width: 60%;
		text-align: left;
	}

	.toptshirtList ul li .toptshirtListImg{
		padding: 5px ;
		background: #ffffff;
		border-radius: 50%;
		margin-bottom: 0;

		width: 34%;
	}
	.toptshirtList ul li .toptshirtListImg img{
		width: 100%;
		height: auto;
	}

	.cattshirts h2.toptshirtTitle,
	#homePdtList h2.toptshirtTitle{
		text-align: center;
		border-bottom: none;
		margin-bottom: 10px;
		font-size: 22px;

		font-weight: 500;
	}




	
	
	

	#homePdtList h2.toplistTitle{
		font-size: 22px;
		
		margin-bottom: 10px;
		color: #E10000;
		border-bottom: transparent;
		padding-bottom: 0;
		letter-spacing: .1em;
		font-weight: 500;


	
	}


	.topListsBox{
		width:94%;
		max-width: 94%;
		min-width: 94%;
		margin: 25px auto 0;
		padding: 30px 0 0 0;

		border-top: 1px dashed #ddd;
	}
	.topListsBox.newitems{
		width:94%;
		max-width: 94%;
		min-width: 94%;
		margin: 0 auto 0;
		padding: 0 0 0 0;

		border-top: none;
	}



	.itemLists.homeList {
		gap: 10px 9px;
		margin-bottom: 20px;
	}
	.itemLists.homeList article{
		width: calc(33.333333% - 6px) !important;
	}

	.itemLists.homeList article .listImg{
		border-radius: 7px;
		overflow: hidden;
		border: 1px solid #ccc;
	}


	
	

	.newitems .itemLists.homeList article::before{
		content: "";
		background: url("../../images/icon_new.png") no-repeat 0 0;
		background-size: 32px auto;
		width: 32px ;
		height: 32px;
		position: absolute;
		right: -4px;
		top: -12px;

		z-index: 1;
	}


	.rankingitems .itemLists.homeList article:nth-of-type(1)::before{
		content: "";
		background: url("../../images/ranking_1.png") no-repeat 0 0;
		background-size: 36px auto;
		width: 36px ;
		height: 36px;
		position: absolute;
		right: 4px;
		top: -12px;

		z-index: 1;
	}
	.rankingitems .itemLists.homeList article:nth-of-type(2)::before{
		content: "";
		background: url("../../images/ranking_2.png") no-repeat 0 0;
		background-size: 36px auto;
		width: 36px ;
		height: 36px;
		position: absolute;
		right: 2px;
		top: -12px;

		z-index: 1;
	}

	.rankingitems .itemLists.homeList article:nth-of-type(3)::before{
		content: "";
		background: url("../../images/ranking_3.png") no-repeat 0 0;
		background-size: 36px auto;
		width: 36px ;
		height: 36px;
		position: absolute;
		right: 4px;
		top: -12px;

		z-index: 1;
	}




	
	.spcatmenu{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		
		width: 100%;
		
		
		
		
	}
	.spcatmenu .spcatmenubtn{
		display: block;
		position: absolute;
		top: 7px;
        right: 53px;
        border-radius: 30px;
        padding: 5px 10px 5px 24px;
        line-height: 100%;
		
		color: #ffffff;
		
		z-index: 4004;
		
		background: #E10000 url("../../images/catimg/cat_title_icon.png") no-repeat left 8px center;
		background-size: 12px;
	}

	.spcatmenu .spcatmenupanel{
		display: none;
		position: fixed;
		top: 0;
        left: 0;
        background: rgba(255,255,255,1);
		
		padding: 43px 0 0 0;
		
		width: 100%;
		height: 100%;
		
		overflow-y: scroll;  
		
		z-index: 4011;
		
	}
	
	.closeBtn{
		position: fixed;
		top: 0 ;
		left: 0;
		
		width: 100%;

		padding: 6px 10px;
        background: rgba(240,240,240,1);
		
		text-align: right;
		border-bottom: 1px solid rgba(220,220,220,1);
		    border-top: 8px solid #E10000;
	}
	
	.closeBtn span{
		display: inline-block;
		font-size: 13px;
		border-radius: 20px;

        padding: 5px 10px 5px 10px;
        line-height: 100%;
		
		color: #ffffff;
		
		background: #E10000;

	}
	
	
	.spcatmenupanel ul.spcatmenupanelCat{
		gap:8px 0;
		
		padding: 12px 10px 8px 10px;
		
        background: #ffffff;
	}
	.spcatmenupanel ul.spcatmenupanelCat li{
		width: 50%;
		text-align: center;
		font-size: 12px;
		display: flex;
		flex-wrap: wrap;
	}

	.spcatmenupanel ul.spcatmenupanelCat li a{
		display: flex;
		flex-wrap: wrap;
		
		align-items: center;
		justify-content:flex-start;
		
		gap:0 3%
	}
	.spcatmenupanel ul.spcatmenupanelCat li a span{
		width: 71%;
		text-align: left;
	}
	.spcatmenupanel ul.spcatmenupanelCat li .topcatListImg{
		padding: 2px ;
		margin-bottom: 0;
		
		border-radius: 10px;
		
		
		width: 26%;
	}


	.spcatmenupanel ul.spcatmenupanelFeat{
		display: flex;
		flex-wrap: wrap;
		gap:8px 8px;

		padding: 2px 10px 58px 10px;
		
        background: #ffffff;
	}
	.spcatmenupanel ul.spcatmenupanelFeat li{
		width: calc(50% - 4px);
		text-align: left;
		font-size: 12px;
		line-height: 140%;
		font-weight: bold;
	}

	.spcatmenupanel ul.spcatmenupanelFeat li .topfeatureListImg{
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 4px;
		border: 1px solid #ccc;
	}
	.spcatmenupanel ul.spcatmenupanelFeat li .topfeatureListImg img{
		width: 100%;
		height: auto;
	}

	

	.groupBana{
		padding: 25px 15px 25px 15px;
		margin: 0 auto 50px;
		
		width: 94%;
		max-width: 94%;
		min-width: 94%;
		
		display: block;

	}
	.groupBana ul.groupBanaList{
		
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap:0 2%;
	}
	.groupBana .groupBanaList li{
		width: 32%;
		padding: 6px;
		border: 1px solid #ccc;	
		border-radius: 6px;
		background: #fff;
	}
	.groupBana .groupBanaList li img{
		width: 100%;
		height: auto;
		display: block;

	}
	.groupBana  .groupBanaList li.sideTitle{
		font-size: 15px;
		font-weight: bold;
		padding-left: 0;
		margin-bottom: 15px;
		width: 100%;
	}

	.groupBana h2{
		width: 100%;
		font-size: 18px;
		margin-bottom: 10px;
		line-height: 100%;
		font-weight: bold;
		text-align: center;
		padding-bottom: 0;
		border-bottom: transparent;
		position: relative;
	}




	}










/* // 20250510*/





/*20250604*/
h2.instaTitle{
    text-align: center;
    border-bottom: none;
    margin-bottom: 50px;
    font-size: 24px;
    letter-spacing: .1em;
    color: #E10000;
    font-weight: 500;
}
#instawidgetArea{
	
	padding: 60px 0;
	max-width:1360px;
	min-width: 1070px;
	width: 94%;
	
	margin: 0 auto;
	
}
body#home #instawidgetArea{
	padding: 0 0 0;
}
@media screen and (max-width: 640px) {
	h2.instaTitle {
        margin-bottom: 20px;
        font-size: 18px;
    }
	
	#instawidgetArea{

		padding: 30px 0;
		max-width: 94%;
		min-width: 94%;
		width: 94%;

		margin: 0 auto;

	}
}


/* // 20250604*/






.headBanafujimori{
	max-width:1000px;
	min-width: 1000px;
	padding: 25px 0 20px;
	width: 1000px;
	
	margin: 0 auto;
}
.headBanafujimori a{
	display: block;
	text-align: center;
}
.headBanafujimori a img{
	width: 100%;
	height: auto;
}

body.hfixed header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
body.hfixed .site-content.cart-content{
	padding: 50px 0 100px;
}
body.hfixed > article{
	padding:82px 0 0 0;
}

@media screen and (max-width: 640px) {
	.headBanafujimori{
		width:100%;
		min-width: 100%;
		max-width: 100%;
		padding: 2vw 3vw 1vw
	}
	.headBanafujimori a img{
		width: 100%;
		height: auto;
	}
	body.hfixed header {
	  position: fixed;
	  top: 0;
	  width: 100%;
	  z-index: 9999;
	}
	body.hfixed article{
		padding:50px 0 0 0;
	}
	body.hfixed .itemLists article,
	body#home.hfixed article{
		padding:0 0 0 0;
	}
	body.hfixed .site-content.cart-content{
		padding: 30px 0 10px;
	}
	body.nclose #panel-btn {
		position: fixed;
	}

}

.itemListsBtmBtn{
	margin: 0 0 50px ;
	text-align: center;
}
.itemListsBtmBtn a{
	display: inline-block;
	border-radius: 30px;
	padding: 14px 50px 14px 30px ;
	
	background: #D10104;
	color: #fff;
	font-weight: bold;
	
	position: relative;

}
.itemListsBtmBtn a::after{
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	
}





/**/

.member_page_title{
	font-size: 24px;
	font-weight: bold;
}

#wc_login .member_page_title{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
#wc_login .loginbox{
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 30px;
}
#wc_login .loginbox input.loginmail, #wc_login .loginbox input.loginpass, #wc_member .loginbox input.loginmail, #wc_member .loginbox input.loginpass{
	padding: 8px;
	border-radius: 4px;
}
#wc_login .loginbox .new-entry h2, #wc_member .loginbox .new-entry h2{
	font-size: 24px;
}

#wc_login .loginbox #member_login, #wc_member .loginbox #member_login{
	background-color: #E10000;
}
#wc_login .loginbox .new-entry #nav a, #wc_member .loginbox .new-entry #nav a{
	background-color: #E10000;
}



.member-page .send input{
	background-color: #E10000;
	border: none;
	border-radius: 5px;
}
@media screen and (max-width: 640px) {
	#loginMenu.loginMenuPC{
		display: none;
	}
	
	.member_page_title{
		font-size: 18px;
		font-weight: bold;
	}
	#wc_login .member_page_title{
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 15px;
	}
	#wc_login .loginbox .new-entry h2, #wc_member .loginbox .new-entry h2{
		font-size: 18px;
	}

	.customer_form{
		border-top: 1px solid #ddd;
		padding-top: 10px;
	}
	.customer_form th{
		text-align: left;
	}
}


.opthissu{
	display: inline-block;
	padding: 4px 5px;
	line-height: 100%;
	background: #ff0000;
	color: #fff;
	font-size: 11px;
	margin-left: 5px;
	border-radius: 5px;
}

.iopt_label{
	display: none;
}





/*====251002===*/

.pdtTopSimuBox{
	margin-bottom: 30px;
}
.pdtTopSimuLink{
	text-align: right;
	margin-bottom: 6px;
}
.pdtTopSimuLink a{
	display: inline-block;
	padding: 0 0 0 16px;
	background: url("../../monolabogiftwp/wp-content/themes/welcart_basic/images/page/arrow_red.png") no-repeat left center;
	background-size: auto 14px;
	
	font-size: 15px;
	
}

.pdtTopUploadBtn{
	
}

.pdtTopUploadBtn span,
.pdtTopUploadBtn a{
	display: block;
	padding: 18px 10px 18px 26px;
	background: #ff0000 url("../../monolabogiftwp/wp-content/themes/welcart_basic/images/page/icon_upload.png") no-repeat left 20px center;
	background-size: auto 30px;
	
	border-radius: 12px;
	
	font-size: 18px;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	box-shadow: 5px 5px 0 rgba(191,0,1,0.20);
	
	cursor: pointer;
}

@media screen and (max-width: 640px) {
	.pdtTopSimuBox{
		margin-bottom: 20px;
	}
	.pdtTopSimuLink a{
		display: inline-block;
		padding: 0 0 0 13px;
		background: url("../../monolabogiftwp/wp-content/themes/welcart_basic/images/page/arrow_red.png") no-repeat left center;
		background-size: auto 12px;

		font-size: 13px;
	}

	.pdtTopUploadBtn span,
	.pdtTopUploadBtn a{
		display: block;
		padding: 15px 10px 15px 20px;
		background: #ff0000 url("../../monolabogiftwp/wp-content/themes/welcart_basic/images/page/icon_upload.png") no-repeat left 13px center;
		background-size: auto 20px;

		border-radius: 12px;

		font-size: 15px;

	}

}








.LeeepListDate{
	color: #000 !important
		
}