

/*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;
}




.textBox{
	position: absolute;
    top: 54%;
    right: 25%;
	background: #fff;
	padding: 30px 40px 30px;
	text-align: center;

	transform: translate(50%,-50%);
}
.textBoxTitle{
	margin-bottom: 20px;
}
.textBoxTxt{
	font-size: 32px;
	font-weight: bold;
	line-height: 140%;
	margin-bottom: 20px;
}
.textBoxTxt span{
	font-size: 24px;
}

.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.jpg") no-repeat center center;
    background-size: cover;
}




/*=========コンテンツ=========*/
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;
	
}


.contents{
	position:relative;
	z-index:1000;
	padding:370px 0 0 0;
}
.mainContents{
	background:url(../../images/contents/cont_bg.png) ;
	padding:26px 26px 26px 26px;
	min-height:900px;
}



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




.btn_arrow,.btn_arrow_back{
	text-align: center;
}
.btn_arrow a,.btn_arrow input[type="button"],.btn_arrow input[type="submit"]{
	display:inline-block;
	border-radius: 50px;
	background: linear-gradient(to right, #FF3BF0, #FF2B54);
	padding: 10px 50px 10px 30px;
	font-weight: bold;
	color: #fff;
	position: relative;
}
.btn_arrow a::after,.btn_arrow input[type="button"]::after,.btn_arrow input[type="submit"]::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;
}



.btn_arrow_back a,.btn_arrow_back input[type="button"]{
	display:inline-block;
	border-radius: 50px;
	background: linear-gradient(to right, #FF3BF0, #FF2B54);
	padding: 10px 50px 10px 30px;
	font-weight: bold;
	color: #fff;
	position: relative;
}
.btn_arrow_back a::after,.btn_arrow_back input[type="button"]::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;
}








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

#homeProduct{
	background: #fff;
	padding: 70px 3vw 70px;
}
#homeProduct .inner{
	width: 100%;
	margin: 0 auto;
	
	display: flex;
	gap: 2vw;
	
	flex-wrap: wrap;
}

.homePdtBox{
	width: calc(32.9vw - 3.33333vw);
	height: 39vw;
	padding: 0 0 0;
	
	background-size: cover;
	background-position: center;
	
	display: flex;
	flex-flow: column;
	justify-content:flex-end;
	flex-wrap: wrap;
}
.homePdtBox a{
	display: block;
	width: 100%;
	height: 39vw;
	cursor: pointer;
}
.homePdtBox .homePdTxt{
	width: 100%;
	text-align: center;
	margin-bottom: 14px;
	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: 14px;
	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%;
	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;
}




#information{
	background: #FAFAFA;
	padding: 90px 0 90px;
}
#information .inner{
	width: 800px;
	margin: 0 auto;
}
.infoBox{
	width:100%;
	margin: 0 auto 30px;
	border-top: 1px solid #ddd;
	
}
#other .infoBox{
	margin-bottom: 40px;
}
.infoBlock{
	padding: 15px 0;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
}
.infoDate{
	display: inline-block;
	width:16%;
	margin-right: 10px;
	vertical-align: top;
}
.infoCat{
	display: inline-block;
	width:16%;
	color:#fff;
	padding: 3px 10px;
	text-align: center;
	margin-right: 10px;
	font-size: 12px;
	vertical-align: top;
	background: #48d084;
}
.infoCat.cat2{
	background: #48d084;
}
.infoCat.cat3{
	background: #d9db15;
}
.infoCat.cat4{
	background: #ed1539;
}
.infoCat.cat5{
	background: #ff5a00;
}
.infoCat.cat6{
	background: #ff008a;
}
.infoCat.cat7{
	background: #d9db15;
}
.infoCat.cat8{
	background: #ed1539;
}
.infoCat.cat9{
	background: #ff5a00;
}
.infoCat.cat10{
	background: #e360ff;
}
.infoTxt{
	display: inline-block;
	width:60%;
	vertical-align: top;
}


#service{
	background:url(../../images/service_imgbg.jpg) no-repeat center center;
    background-size: cover;
	background-attachment: fixed;
	padding: 90px 0 90px;
}
#service .inner{
	width: 1100px;
	margin: 0 auto;
}
#service h3,#service h4{
	color: #fff;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.3)
}

#service .serviceBox{
	display:flex;
}

#service .serviceBlock{
	width:31%;
	margin-right: 3.5%;
	background: #fff;
	float: left;
}

#service .serviceBlock:nth-of-type(3n){
	margin-right: 0;
}

#service .serviceBlock .serviceImg img{
	width:100%;
	height: auto;
}
#service .serviceBlock .serviceTxt{
	margin-bottom: 5px;
	padding: 15px;
	
}
#service .serviceBlock .serviceTxt span{
	font-weight: bold;
}


#partner{
	background:#fff;
    background-size: cover;
	padding: 90px 0 90px;
}
#partner .inner{
	width: 1100px;
	margin: 0 auto;
}
.partnerImg{
	text-align: center;
	padding: 70px 0;
}
.partnerImg img{
	width: 938px;
	height: auto;
}


#company{
    background-size: cover;
	padding: 90px 0 90px;
}
#company .inner{
	width: 1100px;
	margin: 0 auto;
}

#company h3,#profile h4{
	color: #fff;
}



.companyBox{
	width:750px;
	margin: 0 auto;
	border-top: 1px solid rgba(0,0,0,.1);
}
.companyBlock{
	padding: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,.1);
	vertical-align: top;
}
.companySub{
	display: inline-block;
	width:16%;
	margin-right: 10px;
	font-weight: bold;
	vertical-align: top;
}
.companyTxt{
	display: inline-block;
	width:80%;
	vertical-align: top;
}



#contact{
	background:#fff;
    background-size: cover;
	padding: 0 0 0;
}
#contact .inner{
	width: 800px;
	margin: 0 auto;
}
#contact p.sTxt{
	text-align: left;
	color: #111 !important;
	font-size: 13px;
	width:800px;
	margin: 0 auto 7px;
	
}
.contactBox{
	width:800px;
	margin: 0 auto;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
}
.contactBlock{
	padding: 15px 0;
	vertical-align: top;
}
.contactSub{
	display: inline-block;
	width:28%;
	margin-right: 10px;
	font-weight: bold;
	vertical-align: top;
}
.hissu{
	font-size: 60%;
	vertical-align: top;
	position: relative;
	top: -0.0em;
	color: #FF0004;
	margin-left: 4px;
}
.contactInput{
	display: inline-block;
	width:68%;
	vertical-align: top;
}
.contactInput input,.contactInput textarea{
	padding: 12px 18px;
	border: none;
	background: #ededed;
	font-size: 16px;
	
}

.contactInput .input01{
	width: 60%
}
.contactInput .input02{
	width: 70%
}
.contactInput textarea{
	width: 100%;
	height: 160px;

}
.completeTxt{
	font-size: 24px;
	color: #d20347 !important;
	font-weight: bold;
	padding: 100px 0;
	text-align: center !important;
}
.completeTxt2{
	font-size: 15px;
	color: #333 !important;
	margin-bottom: 50px;
	text-align: center !important;

}
#access{
	background:#fff;
    background-size: cover;
	padding: 90px 10px 90px;
}
	#access a{
		color: #111;
	}

#access h3,#access h4{
	color: #111;
}
h2.pagetitle{
	margin-bottom: 30px;
}


.google-map {
    position: relative;
    width: 100%;    /* 左右に余白が必要なら値を変更してもOK */
    height: 0;
    padding:0 0 30%;    /* padding-topでもOK */
    overflow: hidden;
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    /* 必要であれば!importantを付けてください */
    height: 100%;    /* 必要であれば!importantを付けてください */
}



.pageTitle{
	width:1100px;
	margin: 0 auto;
	padding: 70px 0 30px;
}
.pageTitle2{
	font-size: 32px;
	font-weight: bold;
	padding: 0 0 40px;
}




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

/* ========= news ========= */

#newsMiddle{

	width:1100px;
	margin: 0 auto;
	padding:100px 0 100px;
}

#newsMiddle .newsArea{
	
	min-height:276px;
	
	margin:0 auto;
	width:700px;
	margin: 0 auto;
}

#newsMiddle .newsEntry{
	border-top:1px solid #ccc;
	padding:13px 0;
}
#newsMiddle .newsEntry:nth-child(1){
	padding:13px 0 13px 0;
}
#newsMiddle .newsEntry:nth-last-child(1){
	border-bottom:1px solid #ccc;
}
#newsMiddle .newsDate{
	float:left;
	width:17%;
}
#newsMiddle .newsText{
	float:left;
	width:83%;
}
#newsMiddle .newsText a{
	text-decoration:underline;
}


#newsMiddle .newsDetailArea{
	padding:20px;
	background-color: rgba(255,255,255,0.1);
	
	min-height:276px;
	
	width:830px;
	margin:0 auto;
}
#newsMiddle .newsDetailTitle{
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 20px;
	text-align: left;
	border-top: 1px solid #ccc;	
	padding-top: 20px;
}
#newsMiddle .newsDetailDate{
	font-size: 12px;
	text-align: right;
	
	/*border-bottom: 1px solid #ccc;*/
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#newsMiddle .newsDetailBody{
	margin-bottom: 40px
}

#newsMiddle .newsDetailBody p{
	margin-bottom: 30px;
	color: #111 !important;
}
#newsMiddle .newsDetailBody a{
	text-decoration: underline;
}
#newsMiddle .newsDetailBody h2{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
}
#newsMiddle .newsDetailBody h3{
	font-weight: bold;
	margin-bottom: 8px;
	border-left: 5px solid #444;
	padding-left: 8px;
	padding-top:2px;
	line-height: 120%;
}

#newsMiddle .newsDetailBody hr{
	background-color:#444444;
	height: 1px;
	margin-bottom: 30px;
	border: 0;
	width: 100%;
	display: block;
}
#newsMiddle .newsDetailBody img{
	max-width: 100%;
	height: auto;
}


.infoMap {
    position: relative;
    width: 100%;    /* 左右に余白が必要なら値を変更してもOK */
    height: 0;
    padding:0 0 70%;    /* padding-topでもOK */
    overflow: hidden;
	margin-bottom: 40px;
}
.infoMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    /* 必要であれば!importantを付けてください */
    height: 100%;    /* 必要であれば!importantを付けてください */
}


h3.pageStitle{
	font-size: 24px;
	font-weight: bold;
	letter-spacing: .05em;
}
h4.pageStitle{
	font-size: 24px;
}



/*=========サングラス=========*/

#sunglass .sunglassBtn{
	padding-left: 120px;
}
#sunglass .sunglassBtn img{
	width:126px;
	height: auto;
}


#sunglass #cont1{
	background: #fff url(../../images/sunglass/cont1_bg.jpg) no-repeat left top;
	background-size: auto 100%;
	padding: 70px 0;
}

#sunglass .cont1Img{
	float: left;
	width:50%;
	padding: 0 0 0 6%;
}
#sunglass .cont1Img img{
	width:100%;
	height: auto;
}
#sunglass .cont1TxtBox{
	float: left;
	width:510px;
}
#sunglass .cont1Txt01 img{
	width:100%;
	height: auto;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
	
}
#sunglass .cont1Txt02{
	font-size: 24px;
	line-height: 150%;
	margin-bottom: 20px;
	font-weight: bold;
	color: #d20347;
	
}



#sunglass #cont2{
	background: #d20347 url(../../images/sunglass/cont2_bg.jpg) no-repeat right top;
	background-size: auto 100%;
	padding: 70px 0;
}

#sunglass #cont2 h2{
	margin-bottom: 20px;
}
#sunglass #cont2 h2 img{
	width:486px;
	height: auto;
}
#sunglass #cont2 ul{
	width:600px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 30px;
}

#sunglass #cont2 ul li{
	line-height: 100%;
	display: inline-block;
	text-align: center;
	background: url(../../images/sunglass/cont1_check.png) no-repeat left top;
	background-size: 18px auto;
	padding: 0 0 0 25px;
	font-weight: bold;
	color: #fff;
}
#sunglass #cont2 .cont2Box{
	width:800px;
	margin: 0 auto;
}
#sunglass #cont2 .cont2Block{
	float: left;
	width:48%;
	margin-right: 4%;
	background: #fff;
}
#sunglass #cont2 .cont2Block:nth-of-type(2n){
	margin-right: 0;
	background: #f6ff00;
}
#sunglass #cont2 .cont2Block img{
	width:100%;
	height: auto;
}
#sunglass #cont2 .cont2Block .cont2BoxTxt{
	padding: 10px 0;
	font-weight: bold;
	text-align: center;
}



#products{
	background: #f7f7f7;
	padding: 70px 0;
}

#products .inner{
	width:1100px;
	margin: 0 auto;
}
#products h2 img{
	width:186px;
	height: auto;
}
#products .pdtBox{
	display: flex;
	flex-wrap: wrap;
}

#products .pdtBlock{
	float: left;
	width:31%;
	margin-right: 3.5%;
	margin-bottom: 50px;
	position: relative;
}
#products .pdtBlock:nth-of-type(3n){
	margin-right: 0
}

#products .pdtImg{
	box-shadow: 0 0 10px rgba(0,0,0,0.1)
}
#products .pdtImg img{
	width:100%;
	height: auto;
}
#products .pdtTxt{
	padding: 15px 0 0 0;
}
#products .pdtTxt span{
	font-weight: bold;
	font-size: 18px;
}
#products .pdtTxt span.sTxt{
	font-weight: normal;
	font-size: 12px;
}
#products .pdtTxt span.teika{
	display: inline-block;
	font-size: 12px;
	color: #666;
	text-decoration: line-through;
}

#products .pdtBlock .newproduct{
	background: #FFB200;
	border:none;
	border-radius: 40px;
	width:60px;
	height: 60px;
	padding: 20px 0;
	position: absolute;
	text-align: center;
	top:-20px;
	left: -15px;
	font-size: 13px;
	letter-spacing: 0;
	color: #fff;
	font-weight: bold;

}
#products .pdtBlock .gentei{
	background: #E10000;
	border:none;
	border-radius: 40px;
	width:60px;
	height: 60px;
	padding: 20px 0;
	position: absolute;
	text-align: center;
	top:-20px;
	left: -15px;
	font-size: 13px;
	letter-spacing: 0;
	color: #fff;
	font-weight: bold;

}



#sunglass #cont3{
	background: #d20347 url(../../images/sunglass/cont3_bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 70px 0;
}

#sunglass #cont3 h2{
	margin-bottom: 20px;
}
#sunglass #cont3 h2 img{
	width:433px;
	height: auto;
}

#sunglass #cont3 .cont3table{
	width:700px;
	margin: 0 auto;
}
#sunglass #cont3 .cont3table table{
	width:100%;
	border-left: 1px solid #707070;
	border-top: 1px solid #707070;
}
#sunglass #cont3 .cont3table table td{
	padding: 14px 0;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	border-right: 1px solid #707070;
	border-bottom: 1px solid #707070;
}

#sunglass #cont3 .cell00{
	background-color: #707070;
	width:40%;
}
#sunglass #cont3 .cell01{
	background-color: #c1e7ff;
	width:30%;
}
#sunglass #cont3 .cell02{
	background-color: #ffd4e2;
	width:30%;
}
#sunglass #cont3 .cell03{
	background-color: #d20347;
	color: #fff;
}
#sunglass #cont3 .cell04{
	background-color: #f7f7f7;
}
#sunglass #cont3 .cell05{
	background-color: #ffedf3;
}


.chartBtm{
	text-align: center;
	margin: 20px 0 0;
	font-size: 16px;
	/*text-shadow: 0 0 10px rgba(0,0,0,1.0);*/
	font-weight: bold;
}
.astalisk{
	text-align: center;

}
.astalisk p{
	color:#ffffff !important;
	background: rgba(210,3,71,.6);
	padding: 12px 20px 9px;
	display: inline-block;
}
.astalisk p::before{
	content: "※ ";
	font-weight: bold;
	color: #deff00;
}


/*=========ネックレス=========*/
#neckless .necklessBtn a img{
	width: 100px;
	height: auto;
}

#neckless #cont1{
	background: #fff url(../../images/neckless/cont1_bg.jpg) no-repeat left top;
	background-size: cover;
	padding: 70px 0;
}


#neckless #cont1 .cont1Txt1{
	margin-bottom: 20px;
	text-align: center;
}
#neckless #cont1 .cont1Txt1 img{
	width:432px;
	height: auto;
}

#neckless #cont1 .cont1Txt2{
	margin-bottom: 20px;
	text-align: center;
	font-size: 17px;
	color: #fff;
}
#neckless #cont1 .cont1Img{
	text-align: center;
}
#neckless #cont1 .cont1Img img{
	width:70%;
	height: auto;
}

#neckless #cont2{
	background: #fff url(../../images/neckless/cont2_bg.jpg) no-repeat left top;
	background-size: cover;
	background-attachment: fixed;
	padding: 70px 0;
}
#neckless #cont2 .inner{
	width: 1100px;
	margin: 0 auto;
}
#neckless #cont2 h2 img{
	width: 459px;
	height: auto
}
#neckless #cont2 .cont2Box{
	padding: 40px 0 60px;
}
#neckless #cont2 .cont2Img{
	float: left;
	width:40%;
	padding-left: 10%;
}
#neckless #cont2 .cont2Img img{
	width: 100%;
	height: auto;
}
#neckless #cont2 .cont2Txt{
	float: right;
	width:52%;
	
	padding: 20px 0 0 0;
	
	color: #fff;
}

.cont2Cath2{
	margin-bottom: 10px;
	text-align: center;
}
.cont2Cath2 img{
	width:413px;
	height: auto;
}
#neckless #cont2 .cont2CheckBox{
	background: #000;
	padding: 20px;
	width:600px;
	margin: 0 auto;
}
#neckless #cont2 .cont2CheckBox ul{
	margin: 0 auto;
	text-align: center;
}

#neckless #cont2 .cont2CheckBox ul li{
	line-height: 100%;
	display: inline-block;
	text-align: center;
	background: url(../../images/neckless/cont2_check.png) no-repeat left top;
	background-size: 18px auto;
	padding: 0 0 0 25px;
	font-weight: bold;
	color: #fff;
}

.zaoralBana{
	text-align: center;
}
.zaoralBana img{
	width:604px;
	height: auto;
}

/*==========フッターエリア========*/
.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: "> ";
}





#otherpage .inner{
	width: 750px;
	margin: 0 auto;
}

#otherpage .otherpageBg2{
	background: #F7F7F7;
	padding: 70px 0;
}
#otherpage .inner.inner2{
	padding: 70px 0 0;
}

#otherpage .inner.privacy h3{
	margin-bottom: 30px;
	font-size: 16px;
	text-align: left;
	font-weight: bold;
	
}
#otherpage .inner.privacy p{
	margin-bottom: 30px;
	
}
#otherpage .inner.privacy p strong{
	font-weight: bold;
}
#otherpage .inner.privacy p a{
	text-decoration: underline;
}
#otherpage .inner.privacy ol,
#otherpage .inner.privacy ul{
	margin-left: 1.5em;
	margin-bottom: 20px;
}
#otherpage .inner.privacy ol a,
#otherpage .inner.privacy ul a{
	text-decoration: underline;
}
#otherpage .inner.privacy ol li{
	list-style-type: decimal !important;
	margin-bottom: 6px;
}
#otherpage .inner.privacy ul li{
	list-style-type: disc !important;
	margin-bottom: 6px;
}

.otherTitle{
	margin-bottom: 30px;
}
.pageChart{
	font-size: 14px;
	margin-bottom: 10px;
}
.pageChart table{
	font-size: 14px;
	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{
	padding: 10px;
	font-size: 14px;
	line-height: 140%;
	border-right: 1px solid rgba(0,0,0,.1);
	border-bottom: 1px solid rgba(0,0,0,.1);
}
	.pageChart table th{
		font-weight: bold;
	}

.pageChart img.creditcard{
	width:400px;
	height: auto;
	display: block;
	padding: 7px 0 0 1em;
}
.noitem{
	text-align: center;
	padding: 100px 0;
	background-color: #f1f1f1;
	font-size: 18px;
}
.noitem a{
	text-decoration: underline;
}

.sizechart img{
	width:100%;
	height: auto;
}



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

.privateImg{
	width: 25%;
}
.privateImg img{
	width: 100%;
	height: auto;
}
.privateTxt{
	width:70%;
}

.privateChart{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
	border-bottom: 1px solid #ccc;
}
.privateTitle{
	width: 30%;
	border-top: 1px solid #ccc;
	padding: 14px 0;
	font-weight: bold;
}
.privateBody{
	width:70%;
	border-top: 1px solid #ccc;
	padding: 14px 0;
}




/*==================*/
/* 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*/
	
	
	

	#product{
		padding: 20px 0 20px;
	}
	#product .inner{
		width: 90%;
	}
	.productBana{
		float: none;
		width:100%;
		margin-right: 0;
		margin-bottom: 0;
		text-align: center;
	}
	.productBana img{
		width:100%;
		height: auto;
	}

	#shop{
		padding: 20px 0 20px;
	}
	#shop .inner{
		width: 90%;
	}


	.shopBanas{
	}

	.shopBana{
		float: left;
		width:48%;
		margin-right: 4%;
		margin-bottom: 15px;
	}

	.shopBanas2{
	}

	.shopBana2{
		float: left;
		width:48%;
		margin-right: 4%;
		margin-bottom: 15px;
	}
	.shopBana a,
	.shopBana2 a{
		display: inline-block;
		box-shadow: 0 0 10px rgba(0,0,0,0.1);
	}
	.shopBana:nth-of-type(2n){
		margin-right: 0;
	}
	.shopBana2:nth-of-type(3n){
		margin-right: 4%;
	}
	.shopBana2:nth-of-type(2n){
		margin-right: 0;
	}
	.shopBana img,
	.shopBana2 img{
		width:100%;
		height: auto;
	}
	.brandTitle{
		font-size: 18px;
		margin: 30px 0 30px;
		position: relative;
		text-align: center;
		font-weight: bold;

	}
	.brandTitle::after{
		content: '';
		width: 16px;
		height: 16px;
		border: 0px;
		border-bottom: solid 2px #999;
		border-right: solid 2px #999;
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		bottom: -20px;
		left: 50%;
		margin-left: -10px;
		transition: all .3s ease-in-out;
	}
	.shopBanas3{
		width:90%;
		margin: 0 auto;

		display: -webkit-flex;
		display: flex;

		justify-content: space-between;

		flex-wrap: wrap;

	}

	.shopBana3{
		width:40%;
		margin-bottom: 30px;
	}
	.shopBana3 img{
		width:100%;
		height: auto;
	}

    
	#information{
		background: #fff;
		padding: 50px 0 50px;
	}
	#information .inner{
		width: 90%;
		margin: 0 auto;
	}
	.infoBox{
		width:100%;
		margin: 0 auto 20px;

	}
	.infoBlock{
		padding: 10px 0;
	}
	.infoDate{
		width:inherit;
		vertical-align: middle;
	}
	.infoCat{
		width:27%;
		padding: 3px 10px;
		margin-right: 10px;
		font-size: 10px;
		vertical-align: middle;
	}
	.infoTxt{
		width:100%;
		margin-top: 6px;
	}


	#service{
		background:url(../../images/service_imgbg_sp.jpg) no-repeat center center;
		background-size: cover;
		padding: 50px 0 50px;
	}
	#service .inner{
		width: 90%;
		margin: 0 auto;
	}
	#service .serviceBox{
		display:block;
	}

	#service .serviceBlock{
		width:100%;
		margin-right: 0;
		float: none;
		margin-bottom: 20px;
	}

	#service .serviceBlock .serviceImg img{
		width:100%;
		height: auto;
	}
	#service .serviceBlock .serviceTxt{
		padding: 10px;

	}


	#partner{
		background:#fff;
		background-size: cover;
		padding: 50px 0 50px;
	}
	#partner .inner{
		width: 90%;
		margin: 0 auto;
	}
	.partnerImg{
		text-align: center;
		padding: 30px 0 0;
	}
	.partnerImg img{
		width:100%;
		height: auto;
	}


	#company{
		padding: 20px 0 50px;
	}
	#company .inner{
		width: 90%;
	}



	.companyBox{
		width:100%;
	}
	.companyBox a{
		color: #fff !important;
	}
	.companyBlock{
		padding: 10px 0;
		border-bottom: 1px solid rgba(0,0,0,.1);
		vertical-align: top;
	}
	.companySub{
		width:100%;
		margin-right: 0;
	}
	.companyTxt{
		width:100%;
	}



	#contact{
		padding: 0 0 0;
	}
	#contact .inner{
		width: 90%;
	}
	#contact p.sTxt{
		font-size: 11px;
		width:100%;
	}

	.contactBox{
		width:100%;
		margin-bottom:20px;
	}
	.contactBlock{
		padding: 10px 0;
	}
	.contactSub{
		display: inline-block;
		width:100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.contactInput{
		width:100%;
	}
	.contactInput input,.contactInput textarea{
		padding: 10px 12px;

	}

	.contactInput .input01{
		width: 70%
	}
	.contactInput .input02{
		width: 80%
	}
	.contactInput textarea{
		width: 100%;
		height: 160px;

	}
	.completeTxt{
		font-size: 18px;
		padding: 60px 0;
	}
	.completeTxt2{
		font-size: 13px;
		color: #333 !important;

	}


	#access{
		padding: 50px 10px 50px;
	}

	.google-map {
		padding:0 0 100%;    /* padding-topでもOK */
	}



	#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;
	}


	
/* ========= news ========= */
	.pageTitle{
		width:90%;
		margin: 0 auto;
		padding: 30px 0 20px;
	}

	#newsMiddle{
	
		width:90%;
		min-width:inherit;
		margin:0 auto;
		padding:60px 0 60px;
	}
	#newsMiddle .inner{
	
		width:100%;
		margin:0 auto;
	}
	
	#newsMiddle .newsArea{
		padding:20px;
		
		min-height:inherit;
		
		width:90%;
		margin:0 auto;
	}
	
	#newsMiddle .newsEntry{
		padding:8px 0;
	}
	#newsMiddle .newsEntry:nth-child(1){
		padding:0 0 8px 0;
	}
	#newsMiddle .newsEntry:nth-last-child(1){
		border-bottom:none;
		padding:8px 0 0 0;
	}
	#newsMiddle .newsDate{
		float:left;
		width:110px;
	}
	#newsMiddle .newsText{
		float:left;
		width:630px;
	}
	#newsMiddle .newsText a{
		text-decoration:underline;
	}
	
	
	
	

	#newsMiddle .newsDetailArea{
		padding:0;
		
		min-height:inherit;
		
		width:100%;
		margin:0 auto;
	}
	#newsMiddle .newsDetailTitle{
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 10px;
	}
	#newsMiddle .newsDetailDate{
		font-size: 11px;
		text-align: right;

		border-bottom: 1px solid #ddd;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	#newsMiddle .newsDetailBody{
	}
	#newsMiddle .newsDetailBody img{
		max-width:100%;
		height: auto;
	}
	#newsMiddle .newsDetailBody p{
		width:100% !important;
		float: none !important;
		margin-left: 0 !important;
	}
	#newsMiddle .newsDetailBody p img{
		width:100%;
		height: auto;
	}
	#newsMiddle .newsDetailBody a{
		text-decoration: underline;
	}
	#newsMiddle .newsDetailBody h2{
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 8px;
	}
	#newsMiddle .newsDetailBody h3{
		font-weight: bold;
		margin-bottom: 8px;
		border-left: 5px solid #ddd;
		padding-left: 8px;
		padding-top:2px;
		line-height: 120%;
	}

	#newsMiddle .newsDetailBody hr{
		background-color:#444444;
		height: 1px;
		margin-bottom: 30px;
		border: 0;
		width: 100%;
		display: block;
	}

	
	


	/*=========サングラス=========*/

	#sunglass .sunglassBtn{
		padding-left: 0;
		text-align: center;
	}
	#sunglass .sunglassBtn img{
		width:60px;
		height: auto;
	}


	#sunglass #cont1{
		padding: 50px 0;
	}

	#sunglass .cont1Img{
		float: none;
		width:90%;
		margin: 0 auto 10px;
		padding: 0 0 0 0;
		text-align: right;
	}
	#sunglass .cont1Img img{
		width:90%;
		height: auto;
	}
	#sunglass .cont1TxtBox{
		float: none;
		width:90%;
		margin: 0 auto;
	}
	#sunglass .cont1Txt01 img{
		width:100%;
		height: auto;
		padding-bottom: 10px;
		margin-bottom: 10px;

	}
	#sunglass .cont1Txt02{
		font-size: 18px;
		margin-bottom: 10px;
	}



	#sunglass #cont2{
		background: #d20347 url(../../images/sunglass/cont2_bg.jpg) no-repeat center top;
		background-size: auto 100%;
		padding: 50px 0;
	}

	#sunglass #cont2 h2{
		margin-bottom: 20px;
		text-align: center;
	}
	#sunglass #cont2 h2 img{
		width:80%;
		height: auto;
	}
	#sunglass #cont2 ul{
		width:90%;
		margin: 0 auto;
		text-align: left;
		margin-bottom: 30px;
	}

	#sunglass #cont2 ul li{
		line-height: 140%;
		display: inline-block;
		text-align: left;
		background: url(../../images/sunglass/cont1_check.png) no-repeat left 0 top 2px;
		background-size: 14px auto;
		margin-bottom: 7px;
		padding: 0 0 0 18px;
		font-weight: bold;
		color: #fff;
	}
	#sunglass #cont2 .cont2Box{
		width:90%;
		margin: 0 auto;
	}
	#sunglass #cont2 .cont2Block{
		float: none;
		width:100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	#sunglass #cont2 .cont2Block img{
		width:100%;
		height: auto;
	}



	#products{
		background: #f7f7f7;
		padding: 50px 0;
	}

	#products .inner{
		width:90%;
		margin: 0 auto;
	}
	#products h2 img{
		width:auto;
		height: 21px;
	}
	#products .pdtBlock{
		float: left;
		width:49%;
		margin: 0 2% 25px 0;
	}
	#products .pdtBlock:nth-of-type(3n){
		margin: 0 2% 25px 0;
	}
	#products .pdtBlock:nth-of-type(2n){
		margin: 0 0 25px 0;
	}

	#products .pdtTxt{
		padding: 8px 0 0 0;
	}
	#products .pdtTxt span{
		font-size: 15px;
	}
	#products .pdtBlock .newproduct{
		border-radius: 40px;
		width:50px;
		height: 50px;
		padding: 15px 0;

		top:-20px;
		left: -15px;
		font-size: 9px;

	}
	#products .pdtBlock .gentei{
		border-radius: 40px;
		width:50px;
		height: 50px;
		padding: 15px 0;

		top:-20px;
		left: -15px;
		font-size: 9px;

	}

	#sunglass #cont3{
		background: #d20347 url(../../images/sunglass/cont3_bg.jpg) no-repeat center center;
		background-size: cover;
		padding: 50px 0;
	}

	#sunglass #cont3 h2{
		margin-bottom: 20px;
	}
	#sunglass #cont3 h2 img{
		width:80%;
		height: auto;
	}

	#sunglass #cont3 .cont3table{
		width:90%;
		margin: 0 auto;
	}
	#sunglass #cont3 .cont3table table{
		width:100%;
		border-left: 1px solid #707070;
		border-top: 1px solid #707070;
	}
	#sunglass #cont3 .cont3table table td{
		padding: 10px 0;
		text-align: center;
		font-weight: bold;
		font-size: 12px;
		border-right: 1px solid #707070;
		border-bottom: 1px solid #707070;
	}

	#sunglass #cont3 .cell00{
		background-color: #707070;
		width:40%;
	}
	#sunglass #cont3 .cell01{
		background-color: #c1e7ff;
		width:30%;
	}
	#sunglass #cont3 .cell02{
		background-color: #ffd4e2;
		width:30%;
	}
	#sunglass #cont3 .cell03{
		background-color: #d20347;
		color: #fff;
	}
	#sunglass #cont3 .cell04{
		background-color: #f7f7f7;
	}
	#sunglass #cont3 .cell05{
		background-color: #ffedf3;
	}




	/*=========ネックレス=========*/
	#neckless .necklessBtn a img{
		width: 60px;
		height: auto;
	}


	#neckless #cont1{
		padding: 50px 0;
	}


	#neckless #cont1 .cont1Txt1{
		margin-bottom: 20px;
	}
	#neckless #cont1 .cont1Txt1 img{
		width:80%;
	}

	#neckless #cont1 .cont1Txt2{
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 140%;
		padding: 0 5%;
	}
	#neckless #cont1 .cont1Img{
		text-align: center;
	}
	#neckless #cont1 .cont1Img img{
		width:90%;
		height: auto;
	}

	#neckless #cont2{
		background: #fff url(../../images/neckless/cont2_bg.jpg) no-repeat left top;
		background-size: cover;
		padding: 50px 0;
	}
	#neckless #cont2 .inner{
		width: 90%;
		margin: 0 auto;
	}
	#neckless #cont2 h2 img{
		width: 90%;
		height: auto
	}
	#neckless #cont2 .cont2Box{
		padding: 20px 0 40px;
	}
	#neckless #cont2 .cont2Img{
		float: none;
		width:100%;
		padding-left: 10%;
		text-align: center;
	}
	#neckless #cont2 .cont2Img img{
		width: 70%;
		height: auto;
	}
	#neckless #cont2 .cont2Txt{
		float: none;
		width:100%;

		padding: 40px 0 0 0;

		color: #fff;
	}

	.cont2Cath2{
		margin-bottom: 10px;
		text-align: center;
	}
	.cont2Cath2 img{
		width:70%;
		height: auto;
	}
	#neckless #cont2 .cont2CheckBox{
		background: #000;
		padding: 20px;
		width:100%;
		margin: 0 auto;
	}
	#neckless #cont2 .cont2CheckBox ul{
		margin: 0 auto;
		text-align: left;
	}

	#neckless #cont2 .cont2CheckBox ul li{
		line-height: 100%;
		display: block;
		text-align: left;
		background: url(../../images/neckless/cont2_check.png) no-repeat left top;
		background-size: 18px auto;
		padding: 0 0 0 25px;
		font-weight: bold;
		color: #fff;
		margin-bottom: 7px;
	}

	.zaoralBana{
		text-align: center;
	}
	.zaoralBana img{
		width:90%;
		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;
}





.site-content.productsingle #content{
	display: flex;
	justify-content: space-between;
}

.productDetailSide{
	width: 20%;
	border-right: 2px solid #eee;
}
.productDetailSide .productSide{
	width: 100%;
	border: none;
}
.productDetailMain{
	max-width:100%;
	min-width: 100%;
	width: 100%;
	margin: 0 auto;
}




#sunglass .site-content{
	padding: 0 0 0;
	width:100% !important;
}
#categoryitem{
	padding: 0 0 0;
	width:100% !important;
}

#categoryitem #shop{
	background: rgba(255,230,230,.5);
	padding: 70px 0 70px;
}


.site-content p{
	color: #666 !important;
}

.astalisk p{
	color:#ffffff !important;
}


.site-content p#nav a:before{
	content: "> "
}
.submit{
	text-align: center;
}



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

.contCatLists{
	padding: 20px;
	border-radius: 20px;
	background: #eee;
	
	display: flex;
	flex-wrap: wrap;
	gap:10px;
	
	margin-bottom: 50px;
}
.contCatLists .contCatList{
	width: calc(14.2857% - 9px);
	box-shadow: 0 0 5px rgba(0,0,0,.4);
	border-radius: 1px;
	overflow: hidden;
	background: #fff;
	
}
.contCatLists .contCatList .contCatListImg a,
.contCatLists .contCatList .contCatListTxt a{
	display: block;
}
.contCatLists .contCatList .contCatListImg{
	position: relative;
}
.contCatLists .contCatList .contCatListImg::before{
	content: '';
	border: 0px;
	position: absolute;
	bottom: 5px;
	right: 3px;
	margin-top: 0px;
	transition: all .3s ease-in-out;
	width: 12px;
	height: 12px;
	background: url("../../images/catimg/icon_arrow.png") 0 0 no-repeat;
	background-size: 100% auto;
}


.contCatLists .contCatList .contCatListImg img{
	width: 100%;
	height: auto;
}
.contCatLists .contCatList .contCatListTxt{
	font-size: 11px;
	line-height: 130%;
	padding: 5px;
	text-align: center;
	background: #fff;
	position: relative;
}
.contCatLists .contCatList .contCatListTxt span{
	display: block;
	color: #999;
}
.contCatLists .contCatList .contCatListTxt::before{
	content: '';
	border: 0px;
	position: absolute;
	top: 5px;
	right: 3px;
	margin-top: 0px;
	transition: all .3s ease-in-out;
	width: 15px;
	height: 12px;
	background: url("../../images/catimg/icon_list.png") 0 0 no-repeat;
	background-size: 100% auto;

}
.contCatLists .contCatList .contCatListTxt.arrowlink::before{
	content: '';
	border: 0px;
	position: absolute;
	top: 9px;
	right: 5px;
	margin-top: 0px;
	transition: all .3s ease-in-out;
	width: 5px;
	height: 5px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	transform: rotate(-45deg);
	background: transparent;

}


.tshirtsBanaLists{
	display: flex;
	flex-wrap: wrap;
	gap:15px 15px;
	justify-content: flex-start;
	
	margin-bottom: 50px;
}

.tshirtsBanaList{
	width: calc(33.3333% - 10px);
	display: flex;
	flex-wrap: wrap;
	
	
}
.tshirtsBanaList.fullBana{
	width: 100%;
}
.tshirtsBanaList a{
	display: block;
	padding: 22px 16px 22px 72px ;
	width: 100%;
	position: relative;
	background: #E10000;
	
	border-radius: 44px;
	
	color: #fff;
	font-weight: bold;
	
	cursor: pointer;
}
.tshirtsBanaList a::before{
	  content: '';
	  border: 0px;
	  position: absolute;
	  top: 50%;
	  right: 7px;
	  margin-top: 0px;
		transition: all .3s ease-in-out;
		width: 10px;
		height: 10px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(-45deg) translateY(-50%);
}


.tshirtsBanaListIcon{
	position: absolute;
	width: 60px;
	height: 60px;
	top: 6px;
	left: 6px;
	background: #fff;
	border-radius: 50%;
	padding: 5px;

}
.tshirtsBanaListIcon img{
	display: block;
	width: 100%;
	height: auto;
}










.productImg{
	width:59%;
}


.productImg > .bx-wrapper .bxslider > div{
	height: 742px;
	min-height: 590px;
	
}
.productImg > .bx-wrapper .bxslider > div img{
	object-fit:contain;
	width:100%;
	height:100%;
}
.productImg > .bx-wrapper .bx-prev{
    background: url(/images/promotion/prev.png) no-repeat;
	background-size: contain;
}
.productImg > .bx-wrapper .bx-next{
    background: url(/images/promotion/next.png) no-repeat;
	background-size: contain;
}

.productImg > .bx-wrapper .bx-controls-direction a{
	width: 42px;
	height: 42px;
}



.btmImgLists{
	display: flex;
	flex-wrap: wrap;
	gap:15px 0;
	padding: 0 0;
	margin-top: 30px;
	margin-bottom: 30px;
}

.btmImgLists div.btmImgList{
	width: 100%;
}
.btmImgLists div.btmImgList img{
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid #ddd;
	
}




.bxslider_thumbnail > div {
    width: inherit;
    height: inherit;
}
.bxslider_thumbnail > div > a {
	display: block;
	width:100% !important;
	height:100% !important;
	padding-bottom: 3px !important;
	padding: 2px 3px;
}
.bxslider_thumbnail > div > a > picture img {
	object-fit:contain;
	width:100% !important;
	height:100% !important;
	
	border: 1px solid #ddd;
}


.bxslider_thumbnail > div > a > picture source{
	object-fit:contain;
	width:100% !important;
	height:100% !important;
	
	border: 1px solid #ddd;
}


.productTxt{
	width:39%;
}
.subTitle{
	margin-bottom:10px;
	font-size: 14px;
	line-height: 160%;
}
h1.item-name{
	font-size: 26px;
	text-align: left;
	margin-bottom: 10px;
	line-height: 140%;
	font-weight: bold;
}
.itemcode{
	font-size: 18px;
	margin: 5px 0 3px;
	line-height: 100%;
}
.productTxt .itemcode{
	margin: 6px 0 13px;
}
dl.item-sku {
    padding: 40px 0 0;
    border: none;
    border-top: 1px solid #ddd;
	display: flex;
	column-gap: 10px;
	align-items: center;
	width: 100%;
	
}
dl.item-sku dt {
	flex:1;
	margin-bottom: 0;
	white-space: nowrap
}
dl.item-sku dd {
	width: 65%;
	display: inline-block;
    margin-bottom: 0;
    padding-left: 0;
    border-left: none;
}
dl.item-sku dd label {
    color: #000;
    border: 2px solid #ddd;
	border-radius: 5px;
    display: inline-block;
    margin-bottom: 0;
    padding: 7px 15px;
    cursor: pointer;
	line-height: 100%;
}
dl.item-sku dd label:hover {
    color: #000;
    border: 2px solid #ddd;
    display: inline-block;
    margin-bottom: 5px;
    padding: 7px 15px;
    cursor: pointer;
	line-height: 100%;
}

dl.item-sku dd input[type="radio"]:checked + label {
    border: 2px solid #c081ff;
    padding: 7px 15px;
	line-height: 100%;
}
dl.item-sku dd select {
	width: 100%;
	border-radius: 5px;
}
.zaikostatus{
	font-size: 12px;
	margin-bottom: 10px;
	float: none;
}
.field_cprice{
	text-decoration: line-through;
	font-size: 12px;
}
.ss_price{
	font-size: 28px;
	font-weight: bold;
	color: #CD0003;
}

.field_price{
	margin-bottom: 10px;
	float: none !important;
	
}

.item-info .c-box{
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.item-info .quantity{
	width: 21%;
	display: flex;
	align-items: center;
}
.cart-button{
	width: 77%;

}


.productTxt .quantity input.skuquantity {
    width: 40px !important;
    height: 40px;
    margin: 0 .357143em;
    padding: .357143em;
    border: 1px solid #ccc;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.productTxt .skubutton {
    color: #fff;
    font-family: FontAwesome;
    font-weight: bold;
    padding: 20px 0;
    background-color: #FF0098;
    border: none;
    letter-spacing: 1px;
    text-align: center;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 40px;
	display: block;
	width: 100%;

}

.productTxt .field{
	padding-bottom: 0px;
	margin-bottom: 20px;
    /*border-bottom: 1px solid #ddd;*/
	border-bottom: none;
}

#checkout_box{
	margin-bottom: 30px;
}
.wcss_loading{
	display: none;
}
.sideBana{
	margin-bottom: 30px;
}
.sideBana li{
	margin-bottom: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.sideBana li img{
	width:100%;
	height: auto;
}
.productSideList{
	margin-bottom: 30px;
}
.productSideList li{
	position: relative;
	padding-left: 0;
	margin-bottom: 2px;
	font-weight: normal;
	font-size: 13px;
	line-height: 180%;
}
.productSideList li a{
	text-decoration: none;
}
.productSideList .sideTitle{
	font-size: 15px;
	font-weight: bold;
	padding-left: 0;
	margin-bottom: 15px;
}
.productSideList li::before{
	  content: '';
	  border: 0px;
	  position: absolute;
	  top: .6em;
	right: 0;
	left: auto;
	  margin-top: 0px;
		transition: all .3s ease-in-out;
		width: 5px;
		height: 5px;
		border-right: 1px solid #666;
		border-bottom: 1px solid #666;
		transform: rotate(-45deg);
}
.productSideList .sideTitle::before{
	display: none;
}



.productSideList.banaarea li{
	margin-bottom: 10px;
	padding-left: 0;
	box-shadow: 0 0 0 rgba(0,0,0,0);
}
.productSideList.banaarea li img{
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid #ddd;
}
.productSideList.banaarea li::before{
	display: none;
}





.productSidebanaList{
	margin-bottom: 30px;
}
.productSidebanaList li{
	position: relative;
	padding-left: 1em;
	margin-bottom: 2px;
	font-weight: bold;
	font-size: 13px;
	line-height: 180%;
}
.productSidebanaList li a{
	text-decoration: none;
}


#wc_cart #cart .upbutton input {
    color: #752bbe;
    margin-left: 5px;
    padding: 3px 15px;
    background-color: #fff;
    border: 1px solid #752bbe;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.send input.to_customerinfo_button, .send input.to_memberlogin_button, .send input.to_deliveryinfo_button, .send input.to_confirm_button, .send input#purchase_button {
    color: #fff;
    background-color: #752bbe;
	padding: 10px 10px;
}
#wc_customer .send input.to_reganddeliveryinfo_button {
    color: #fff;
    margin-top: .714286em;
    background-color: #752bbe;
	padding: 10px 10px;
}
input[type="button"], input[type="submit"], input[type="reset"] {
	padding: 10px 10px;
}
.member-page .send input {
    color: #fff;
    background-color: #752bbe;
}



.cart_page_title {
    font-size: 24px;
    margin: 0 0 2.22222em;
    line-height: 1.285714em;
	font-weight: bold;
}


.cart_navi ul{
	text-align: center;
	margin-left: -5px;
}
.cart_navi ul li{
	display: inline-block;
	float: none;
}

#wc_ordercompletion{
	padding-bottom: 60px;
}
#cart_completion h3{
	font-size: 32px;
	color: #FF7C00;
	font-weight: bold;
	margin-bottom: 50px;
	padding: 50px 0;
	
}
.header_explanation p{
	font-size: 15px;
	margin-bottom: 50px;
}

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


/*カテゴリータイトル*/
.page-header.titleKanreki .page-title{
	padding: 100px 50px 100px;
	background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
}
.page-header.titleKoki .page-title{
	padding: 100px 50px 100px;
	background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
}
.page-header.titleBeiju .page-title{
	padding: 100px 50px 100px;
	background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
}
.page-header.titleWedding .page-title{
	padding: 100px 50px 100px;
	background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
	background-size: cover;
	color: #fff;
}
.page-header.titleBirthday .page-title{
	padding: 100px 50px 100px;
	background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
	background-size: cover;
	color: #fff;
}
.page-header.titleChildbirth .page-title{
	padding: 100px 50px 100px;
	background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
	background-size: cover;
	color: #fff;
}



.categorytitleImg{
	margin-bottom: 30px;
	text-align: center;
	border: 1px solid #ddd;
	padding: 10px;
	background: rgba(247,247,247,1.00)
}

.categorytitleImg img{
	width: 100%;
	max-width: 640px;
	height: auto;
}




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


#primary #content{
	position: relative;
	padding: 0 0 0 0;
}

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

.item-info .zaikostatus,.item-info .field_price {
	text-align: left;
	display: block;
	width: 100%;
	
}


.pdtOptList{
	display: flex;
	gap:0 10px;
	flex-wrap: wrap;
	justify-content: space-between;
    padding: 20px 0 0;
    border: none;
    border-top: 1px solid #ddd;
}
.pdtOptListBtm{
    padding: 15px 15px 0;
    border: none;
    border: 1px solid #ddd;
	border-radius: 10px;
	margin-bottom: 50px;
	margin-top: 20px;
	position: relative;
	box-shadow: 2px 2px 0px rgba(0,0,0,.05);
	background: rgba(0,0,0,.02);
}
/*.pdtOptListBtm::before{
	content: "名入れ・ラッピングを入力";
	position: absolute;
	top: 0 ;
	left: 10% ;
	width: 80%;
	text-align: center;
	transform: translate(0,-50%);
	background: #E10000;
	border-radius: 5px;
	line-height: 100%;
	color: #fff;
	font-weight: bold;
	padding: 14px 30px;
}*/
.pdtOptListBtm::after{
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	bottom: -30px ;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}
.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop{
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
	font-weight: bold;
	font-size:14px;
	padding-top:15px;
	padding-left:20px;
	border-top:1px solid #ccc;
	position:relative;
	line-height: 150%;
}
.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop:nth-of-type(1){
	/*border-top:none;*/
	padding-top:15px;
}
.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop::before{
	content:"";
	position:absolute;
	top:21px;
	left:0;
	width:15px;
	height:8px;
	border-left:2px solid #3BC100;
	border-bottom:2px solid #3BC100;
	transform:rotate(-45deg);
}


.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop2{
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
	font-weight: bold;
	font-size:14px;
	padding-top:15px;
	padding-left:20px;
	border-bottom:1px solid #ccc;
	position:relative;
	line-height: 150%;
}
.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop2:nth-of-type(1){
	border-top:none;
	padding-top:15px;
}
.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop2::before{
	content:"";
	position:absolute;
	top:21px;
	left:0;
	width:15px;
	height:8px;
	border-left:2px solid #3BC100;
	border-bottom:2px solid #3BC100;
	transform:rotate(-45deg);
}

.pdtOptListBtm .imgupload{
	text-align: center;
	margin-bottom: 10px;
	
}
.pdtOptListBtm .imgupload a{
	display: inline-block;
	padding: 10px 20px ;
	background: #00A4D2;
	line-height: 100%;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	border-radius: 30px;
}

.pdtOptListBtm .imgupload p{
	text-align: left;
	margin-bottom: 10px;
	font-size: 12px;
	padding-top: 6px;
	margin-top: 9px;
	border-top:1px dotted #ccc;
	line-height: 140%;
	color: #222;
	letter-spacing: 0;
	
}

.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitle{
	width: 100%;
	text-align: left;
	margin-bottom: 5px;
	font-weight: bold;
	font-size:13px;
	line-height: 150%;
}



.pdtOptList .pdtOptS,.pdtOptListBtm .pdtOptS{
	width: calc(50% - 5px);
	text-align: left;
}
.pdtOptList .pdtOptL,.pdtOptListBtm .pdtOptL{
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
}
.pdtOptList .pdtOptL.confirmCheck,.pdtOptListBtm .pdtOptL.confirmCheck{
	border: 2px solid #ddd;
	border-radius: 5px;
	text-align: center;
	padding: 6px 0;
	background: #fff;
	font-weight: bold;
}




.pdtOptList .pdtOptS select,.pdtOptListBtm .pdtOptS{
	width: 100%;
	border-radius: 5px;
	background: none;
	position: relative;
}
.pdtOptList .pdtOptL select,.pdtOptListBtm .pdtOptL{
	width: 100%;
	border-radius: 5px;
	border: 1px solid #999;
	background: #fff;
	position: relative;
}

.pdtOptList .pdtOptS select,.pdtOptListBtm .pdtOptS select,
.pdtOptList .pdtOptL select,.pdtOptListBtm .pdtOptL select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
	background: #fff;
	border: none;
	color: #333;
	padding: 10px 10px;
	position: relative;
	display: block;
}
.pdtOptList .pdtOptL select, .pdtOptListBtm .pdtOptL select {
    width: 100%;
    border-radius: 5px;
}
.pdtOptList .pdtOptS select,.pdtOptListBtm .pdtOptS select::after,
.pdtOptList .pdtOptL select,.pdtOptListBtm .pdtOptL select::after{
	position: absolute;
	top: 4%;
	right: 8px;
	transform: translateY(-50%) rotate(45deg);
	content: "";
	border-right: 1px solid #888;
	border-bottom: 1px solid #888;
	width:9px;
	height: 9px;
	color: #333;
	pointer-events: none; /* マウスイベントを無効にする */
	z-index: 1;
	display: block;
}
.pdtOptList .pdtOptL select,.pdtOptListBtm .pdtOptL input[type=text],.pdtOptListBtm .pdtOptL textarea{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background: #fff;
	border: none;
	padding: 10px 10px;
}


.pdtOptL:has(.iopt_select)::after{
	position: absolute;
	top: 45%;
	right: 8px;
	transform: translateY(-50%) rotate(45deg);
	content: "";
	border-right: 1px solid #888;
	border-bottom: 1px solid #888;
	width:9px;
	height: 9px;
	color: #333;
	pointer-events: none; /* マウスイベントを無効にする */
	z-index: 1;
	display: block;
}


.error_message{
	line-height: 180%;
}
.skuform .error_message{
	font-size: 13px;
	color: #D74446;
	border-radius: 7px;
	margin-top: 10px;
	
}

.pdtOptL.optAcce{
}
.pdtOptL.optAcce br{
	display: none;
}
.pdtOptL.optAcce label.iopt_checkbox_label{
	height: 50px;
	line-height: 50px;
	padding: 0 0 0 0;
	display: block;
	border-top: 1px solid #eee;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[type=checkbox]{
}

.pdtOptL.optAcce label.iopt_checkbox_label input[type=checkbox]{
	margin-right: 50px;
	line-height: 50px;
	padding: 50px 50px;
	display: inline-block;
	position: relative;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[type=checkbox]::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width:40px;
	height: 40px;
	background: url("../../images/product/opt_none.jpg") no-repeat 0 center;
	background-size: 34px 34px;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[value="%E3%81%AA%E3%81%97"]::after{
	background: url("../../images/product/opt_none.jpg") no-repeat 0 center;
	background-size: 34px 34px;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[value="%E6%B6%B2%E6%99%B6%E4%BF%9D%E8%AD%B7%E3%82%AC%E3%83%A9%E3%82%B9%E3%83%95%E3%82%A3%E3%83%AB%E3%83%A01%E6%9E%9A%EF%BC%88%2B200%EF%BC%89"]::after{
	background: url("../../images/product/opt_glassfilm1.jpg") no-repeat 0 center;
	background-size: 34px 34px;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[value*="%E6%B6%B2%E6%99%B6%E4%BF%9D%E8%AD%B7%E3%82%AC%E3%83%A9%E3%82%B9%E3%83%95%E3%82%A3%E3%83%AB%E3%83%A02%E6%9E%9A%EF%BC%88%2B1%2C200%EF%BC%89"]::after{
	background: url("../../images/product/opt_glassfilm2.jpg") no-repeat 0 center;
	background-size: 34px 34px;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[value*="%E6%B6%B2%E6%99%B6%E4%BF%9D%E8%AD%B7%E3%82%AC%E3%83%A9%E3%82%B9%E3%83%95%E3%82%A3%E3%83%AB%E3%83%A03%E6%9E%9A%EF%BC%88%2B2%2C200%EF%BC%89"]::after{
	background: url("../../images/product/opt_glassfilm3.jpg") no-repeat 0 center;
	background-size: 34px 34px;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[value*="%E6%B6%B2%E6%99%B6%E4%BF%9D%E8%AD%B7%E3%82%AC%E3%83%A9%E3%82%B9%E3%83%95%E3%82%A3%E3%83%AB%E3%83%A04%E6%9E%9A%EF%BC%88%2B3%2C200%EF%BC%89"]::after{
	background: url("../../images/product/opt_glassfilm4.jpg") no-repeat 0 center;
	background-size: 34px 34px;
}
.pdtOptL.optAcce label.iopt_checkbox_label input[value*="%E6%B6%B2%E6%99%B6%E4%BF%9D%E8%AD%B7%E3%82%AC%E3%83%A9%E3%82%B9%E3%83%95%E3%82%A3%E3%83%AB%E3%83%A05%E6%9E%9A%EF%BC%88%2B4%2C200%EF%BC%89"]::after{
	background: url("../../images/product/opt_glassfilm5.jpg") no-repeat 0 center;
	background-size: 34px 34px;

}



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

	.contCatLists .contCatList{
		width: calc(20% - 9px);
		box-shadow: 0 0 5px rgba(0,0,0,.4);
		border-radius: 1px;
		overflow: hidden;
		background: #fff;

	}

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

	.contCatLists .contCatList{
		width: calc(25% - 9px);
		box-shadow: 0 0 5px rgba(0,0,0,.4);
		border-radius: 1px;
		overflow: hidden;
		background: #fff;

	}

}



@media screen and (max-width: 800px) {
	.site-content{
		width:100%;
		max-width:100%;
		min-width:100%;
		padding: 20px 0 40px;
	}
	.site-content.cart-content{
		max-width:94%;
		min-width:94%;
		width: 94%;
		margin: 0 auto;
		padding: 0 0 10px;
	}


	.site-content.productsingle #content{
		display: block;
	}

	.productDetailSide{
		display: none;
	}
	.productDetailSide .productSide{
		width: 100%;
		border: none;
	}
	.productDetailMain{
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}

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

		justify-content: space-between;
		flex-direction:column-reverse
			;
		margin-bottom: 0;
	}
	
	.productSide {
		width: 100%;
		display: none;
	}
	.productDetail{
		width:100%;
		min-width: 100%;
		display: block;
	}
	.productImg,
	.productTxt{
		width:100%;
	}
	.productTxt{
		margin-top: 30px;
	}
	.productImg img{
		width:100%;
		height: auto;
	}
	

	.productImg > .bx-wrapper .bxslider > div{
		height: 100vw;
		min-height: 100vw;
	}
	.productImg > .bx-wrapper .bxslider > div img{
		object-fit:contain;
		width:100%;
		height:100%;
	}



	.btmImgLists{
		display: flex;
		flex-wrap: wrap;
		gap:15px 0;
		padding: 0 3%;
		margin-bottom: 30px;
	}

	.btmImgLists div.btmImgList{
		width: 100%;
	}
	.btmImgLists div.btmImgList img{
		width: 100%;
		height: auto;
		display: block;
		border: 1px solid #ddd;

	}

	.bxslider_thumbnail > div {
		width: calc(100% / 5);
		height: calc(100vw / 5);
	}
	.bxslider_thumbnail > div > a {
		display: block;
		width:100% !important;
		height:100% !important;

	}
	.bxslider_thumbnail > div > a > img {
		object-fit:contain;
		width:100% !important;
		height:100% !important;
		border: 0;
	}

	
	
	.productSideList{
		margin-bottom: 30px;
	}
	.productSideList li{
		position: relative;
		padding-left: 1em;
		margin-bottom: 2px;
		font-weight: bold;
	}
	.productSideList .sideTitle{
		font-size: 16px;
		font-weight: bold;
		padding-left: 0;
		margin-bottom: 15px;
	}
	.productSideList li::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 #666;
		border-bottom: 1px solid #666;
		transform: rotate(-45deg);
	}
	.productSideList .sideTitle::before{
		display: none;
	}

	.bx-wrapper .bx-controls-direction a {
		top: 50% !important; 
		bottom: 1%;
		margin-top: -16px;
		outline: 0;
		width: 32px;
		height: 32px;
		text-indent: -9999px;
		z-index: 100;
	}
	.bx-wrapper .bx-prev {
		left: 0;
		background:  url(/images/promotion/prev.png) no-repeat 0 0 !important;
		background-size: 100% 100% !important;
		border-radius: 0%;
	}
	.bx-wrapper .bx-next {
		right: 0;
		background:  url(/images/promotion/next.png) no-repeat 0 0 !important;
		background-size: 100% 100% !important;
		border-radius: 0%;
	}
	.subTitle{
		margin-bottom:20px;
		font-size: 12px;
	}

	h1.item-name{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.itemcode{
		font-size: 10px;
		margin-bottom: 1px;
	}

	
	
	.cart_navi ul{
		text-align: center;
		margin-left: -10px;
	}
	.cart_navi ul li{
		display: inline-block;
		float: none;
	}


	#wc_ordercompletion{
		padding-bottom: 60px;
	}
	#cart_completion h3{
		font-size: 24px;
		color: #FF7C00;
		font-weight: bold;
		margin-bottom: 30px;
		padding: 30px 0;

	}
	.header_explanation p{
		font-size: 13px;
		margin-bottom: 30px;
	}

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



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

	.contCatLists{
		padding: 12px;
		border-radius: 13px;
		background: #eee;

		display: flex;
		flex-wrap: wrap;
		gap:10px;

		margin-bottom: 50px;
	}
	.contCatLists .contCatList{
		width: calc(33.33333% - 7px);
		box-shadow: 0 0 5px rgba(0,0,0,.4);
		border-radius: 1px;
		overflow: hidden;
		background: #fff;

	}
	.contCatLists .contCatList a{
		display: block;
	}
	.contCatLists .contCatList .contCatListImg{

	}
	.contCatLists .contCatList .contCatListImg img{
		width: 100%;
		height: auto;
	}
	.contCatLists .contCatList .contCatListTxt{
		font-size: 10px;
		line-height: 130%;
		padding: 5px 2px;
		text-align: center;
		background: #fff;
		position: relative;
	}
	.contCatLists .contCatList .contCatListTxt span{
		display: block;
		color: #999;
	}
	.contCatLists .contCatList .contCatListTxt::before{
		  content: '';
		  border: 0px;
		  position: absolute;
		  top: 9px;
		  right: 5px;
		  margin-top: 0px;
			transition: all .3s ease-in-out;
			width: 5px;
			height: 5px;
			border-right: 1px solid #666;
			border-bottom: 1px solid #666;
			transform: rotate(-45deg);
	}



	.tshirtsBanaLists{
		display: flex;
		flex-wrap: wrap;
		gap:8px 8px;
		justify-content: flex-start;
		
		margin-bottom: 40px;
	}

	.tshirtsBanaList{
		width: calc(50% - 4px);
		display: flex;
		flex-wrap: wrap;


	}
	.tshirtsBanaList.fullBana{
		width: 100%;
	}
	.tshirtsBanaList a{
		display: block;
		padding: 24px 22px 24px 68px ;
		width: 100%;
		position: relative;
		background: #E10000;

		border-radius: 44px;

		color: #fff;
		font-weight: bold;

		cursor: pointer;
	}
	.tshirtsBanaList.pd2 a{
		padding: 14px 22px 14px 68px ;
	}
	.tshirtsBanaList a::before{
		  content: '';
		  border: 0px;
		  position: absolute;
		  top: 50%;
		  right: 8px;
		  margin-top: 0px;
			transition: all .3s ease-in-out;
			width: 8px;
			height: 8px;
			border-right: 2px solid #fff;
			border-bottom: 2px solid #fff;
			transform: rotate(-45deg) translateY(-50%);
	}


	.tshirtsBanaListIcon{
		position: absolute;
		width: 52px;
		height: 52px;
		top: 9px;
		left: 9px;
		background: #fff;
		border-radius: 50%;
		padding: 5px;

	}
	.tshirtsBanaListIcon img{
		display: block;
		width: 100%;
		height: auto;
	}








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


	.page-header.titleKanreki .page-title{
		padding: 60px 30px 60px;
		background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
		background-size: cover;
		color: #fff;
	}
	.page-header.titleKoki .page-title{
		padding: 60px 30px 60px;
		background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
		background-size: cover;
		color: #fff;
	}

	.page-header.titleBeiju .page-title{
		padding: 60px 30px 60px;
		background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
		background-size: cover;
		color: #fff;
	}
	.page-header.titleWedding .page-title{
		padding: 60px 30px 60px;
		background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
		background-size: cover;
		color: #fff;
	}
	.page-header.titleBirthday .page-title{
		padding: 60px 30px 60px;
		background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
		background-size: cover;
		color: #fff;
	}
	.page-header.titleChildbirth .page-title{
		padding: 60px 30px 60px;
		background: #E50000 url(/monolabogiftwp/wp-content/uploads/2023/08/kanreki_title_bg-3.jpg) no-repeat right center;
		background-size: cover;
		color: #fff;
	}




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


	.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop{
		margin-bottom: 10px;
		font-size:14px;
		padding-top:10px;
		padding-left:16px;
	}
	.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop::before{
		top:15px;
		width:15px;
		height:8px;
	}
	.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop2{
		margin-bottom: 10px;
		font-size:14px;
		padding-top:10px;
		padding-left:16px;
	}
	.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitleTop2::before{
		top:15px;
		width:15px;
		height:8px;
	}
	.pdtOptList .pdtOptTitle,.pdtOptListBtm .pdtOptTitle{
		margin-bottom: 4px;
		font-size:12px;
	}

	
	
	.pdtOptList{
		padding: 20px 0 0;
	}
	.pdtOptListBtm{
		padding: 35px 10px 10px;
		margin-bottom: 50px;
	}
	

	/*.pdtOptListBtm::before{
		content: "名入れ・ラッピングを入力";
		position: absolute;
		top: 0 ;
		left: 10% ;
		width: 80%;
		text-align: center;
		transform: translate(0,-50%);
		background: #E10000;
		border-radius: 5px;
		line-height: 100%;
		color: #fff;
		font-weight: bold;
		padding: 14px 30px;
	}*/
	.pdtOptListBtm::after{
		content: "";
		position: absolute;
		width: 20px;
		height: 20px;
		border-right: 2px solid #999;
		border-bottom: 2px solid #999;
		bottom: -30px ;
		left: 50%;
		transform: translateX(-50%) rotate(45deg);
	}


	.pdtOptList .pdtOptL,.pdtOptListBtm .pdtOptL{
		margin-bottom: 20px;
	}

	.pdtOptL.optAcce{
	}
	.pdtOptL.optAcce label.iopt_checkbox_label{
		height: 40px;
		line-height: 40px;
		padding: 0 0 0 0;
		display: block;
	}
	.pdtOptL.optAcce label.iopt_checkbox_label input[type=checkbox]{
		margin-right: 50px;
	}
	.productTxt .skubutton {
		padding: 15px 0;
		width: 100%;
		margin: 0 auto;
	}

	
}


.pageHead{
	
}
.page-title{
	
}






.assistance_item{
	
}

.assistance_item h3{
    font-size: 50px;
    margin-bottom: 60px;
    line-height: 100%;
    font-weight: bold;
    text-align: center;
    border-bottom: none;
}

.assistance_item li .detail h4{
	font-size: 16px;
	overflow: visible;
	font-weight: bold;
	margin-bottom: 10px;
	height: inherit;
}
.assistance_item li .detail .assist_price{
	font-size: 16px;
	text-align: center;
}
.assistance_item li .detail .assist_excerpt p{
	display: none;

}


.pdtDetailArea{
	padding: 10px 0;
}
.pdtDetailAreaW{
	background: #fff;
	padding: 10px 0;
}


.pdtDetailAreaImg{
	width: 100%;
	margin: 0 auto 5px;
}
.pdtDetailAreaImg img{
	width:100%;
	height: auto;
}


.pdtDetailAreaBana{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap:10px 1%;
	border: 2px solid #eee;
	border-radius: 10px;
	padding: 20px;
}
.pdtDetailAreaBana li{
	width: 100%;
}
.pdtDetailAreaBana img{
	width:100%;
	height: auto;
}




.detailDescript,
.comments-area{
	padding: 40px 0;
}
.paymentDetail{
	padding: 40px 0 0;
}

.detailDescript h3,
.comments-area h3,
.paymentDetail h3{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	border-bottom: 2px solid #ccc;
	padding: 0 0 10px 0;
	margin-bottom: 15px;
}
.detailDescript p{
	margin-bottom: 20px;
	font-size: 17px;
}

.paymentDetail h4{
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 15px;
}



.paymentDetail p{
	margin-bottom: 20px;
	font-size: 13px;
}
.paymentDetail p img.creditcard{width: 80%;height: auto;}
.paymentDetail p img.convenience{width: 80%;height: auto;}
.paymentDetail p img.amazonpay{width: 10%;height: auto;}

.paymentDetailBtn{
	text-align: center;
}

.paymentDetailBtn a{
	background: #00A4D2;
	display: inline-block;
	padding: 15px 40px;
	line-height: 100%;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	border-radius: 30px;
}





.commentsLists{
	padding: 0 0 40px;
}
.comment-body{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.comment-author{
	font-size: 14px;
	font-weight: bold;
	color: #999;
}
.says,
.reply,
.commentmetadata,
.comment-notes{
	display: none;
}


.comment-respond p > label{
	font-size: 14px;
}
.comment-respond p > textarea{
	width: 100%;
	border-radius: 5px;
	border: 1px solid #ccc;
}
.comment-respond p > input[type=text]{
	width: 100%;
	border-radius: 5px;
	border: 1px solid #ccc;
}
#respond .form-submit {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}



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


	.pageHead{

	}
	.page-title{

	}






	.assistance_item{

	}

	.assistance_item h3{
		font-size: 24px;
		margin-bottom: 40px;
		line-height: 100%;
		font-weight: bold;
		text-align: center;
		border-bottom: none;
	}

	.assistance_item li .detail h4{
		font-size: 12px;
		overflow: visible;
		font-weight: bold;
		margin-bottom: 10px;
		height: inherit;
	}
	.assistance_item li .detail .assist_price{
		font-size: 16px;
		text-align: center;
	}

	.pdtDetailArea{
		padding: 30px 0;
	}
	.pdtDetailAreaW{
		background: #fff;
		padding: 30px 0;
	}


	.pdtDetailAreaImg{
		width: 100%;
		margin: 0 auto 5px;
		text-align: center;
	}
	.pdtDetailAreaImg img{
		width:94%;
		height: auto;
	}

	.pdtDetailAreaBana{
		width: 94%;
		display: flex;
		flex-wrap: wrap;
		gap:10px 0%;
	}
	.pdtDetailAreaBana li{
		width: 100%;
	}
	.pdtDetailAreaBana img{
		width:100%;
		height: auto;
	}


	.detailDescript,
	.comments-area{
		padding: 20px 3%;
	}
	.paymentDetail{
		padding: 20px 3% 0;
	}
	.detailDescript h3,
	.comments-area h3,
	.paymentDetail h3{
		font-size: 17px;
		font-weight: bold;
		text-align: left;
		border-bottom: 2px solid #ccc;
		padding: 0 0 10px 0;
		margin-bottom: 15px;
	}
	.detailDescript p{
		margin-bottom: 12px;
		font-size: 13px;
		color: #000 !important;
	}

	

	.paymentDetail h4{
		font-size: 15px;
		font-weight: bold;
		text-align: left;
		margin-bottom: 15px;
	}



	.paymentDetail p{
		margin-bottom: 20px;
		font-size: 13px;
	}
	.paymentDetail p img.creditcard{width: 80%;height: auto;}
	.paymentDetail p img.convenience{width: 80%;height: auto;}
	.paymentDetail p img.amazonpay{width: 15%;height: auto;}

	.paymentDetailBtn{
		text-align: center;
	}

	.paymentDetailBtn a{
		background: #00A4D2;
		display: inline-block;
		padding: 15px 40px;
		line-height: 100%;
		color: #fff;
		font-weight: bold;
		font-size: 15px;
		border-radius: 30px;
	}





	.commentsLists{
		padding: 0 0 40px;
	}
	.comment-body{
		margin-bottom: 12px;
		padding-bottom: 12px;
		border-bottom: 1px solid #ddd;
	}
	.comment-body p{
		color: #666 !important;
	}
	.comment-author{
		font-size: 14px;
		font-weight: bold;
		color: #999;
	}
	.says,
	.reply,
	.commentmetadata,
	.comment-notes{
		display: none;
	}


	.comment-respond p > label{
		font-size: 14px;
	}
	.comment-respond p > textarea{
		width: 100%;
		border-radius: 5px;
		border: 1px solid #ccc;
	}
	.comment-respond p > input[type=text]{
		width: 100%;
		border-radius: 5px;
		border: 1px solid #ccc;
	}
	#respond .form-submit {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid #ccc;
	}


	
	
}




.kanrenArea{
	padding: 60px 0 0;
	background: #F2F2F2;
}


.kanrenItems{
	padding:0 0 80px ;
}
.bxsliderKanren{

	
}
.bxsliderKanren::after{
   content: "";
   clear: both;
   display: block;
}
.kanrenImg{
	margin-bottom:10px;
}
.kanrenImg img{
	width:100%;
	height:auto;
}
.bxsliderKanren li p,
.bxsliderKanren li h2{
	font-size:15px;
	margin-bottom:10px;
	text-align:left;
	line-height:130%;
	font-weight: 400;
	
	color: #444 !important;
}
.bxsliderKanren li .priceTxt{
	font-size:16px;
	text-align:center;
	padding-bottom:20px;
}
.bxsliderKanren li a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
}
.bxsliderKanren li a .priceTxt{
	color: #D10104;
	text-align: right;
	display: block;
	font-weight: bold;
}

.kanrenItems .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -43px !important;
    width: 100%;
}


.item-description{
	padding: 20px 20px 0 20px;
	border: 1px solid #ddd;
	font-size:16px;
	margin-top: 0;
}
.item-description p{
	margin-bottom: 20px;
	font-size: 15px;
}

.shippingName{
	text-align: left;
	margin-bottom: 30px;
	color: #FF2A2A;
	font-weight: bold;
}


.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item{
	margin: 0 5px;
}


.iconLists{
	display: flex;
	flex-wrap: wrap;
	column-gap: 5px;
	margin-bottom: 20px;
}
.iconLists li{
	padding: 8px 8px 8px 26px;
	font-size: 13px;
	border-radius: 4px;
	line-height: 100%;
	color: #fff;
}
.iconLists li.icon1{background: #00A2FF url("../../images/product/icon_present.png") no-repeat top 6px left 7px;background-size: 15px;}
.iconLists li.icon2{background: #00A2FF url("../../images/product/icon_name.png") no-repeat top 6px left 7px;background-size: 15px;}
.iconLists li.icon3{background: #00A2FF url("../../images/product/icon_photo.png") no-repeat top 6px left 7px;background-size: 15px;}


.pointtxt{
	font-size: 14px;
	color: #FF0004;
}





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

	.kanrenArea{
		padding: 30px 10px;
	}

	.kanrenItems{
		padding:0 0 80px ;
	}
	.bxsliderKanren{


	}
	.bxsliderKanren::after{
	   content: "";
	   clear: both;
	   display: block;
	}
	.kanrenImg{
		margin-bottom:10px;
	}
	.kanrenImg img{
		width:100%;
		height:auto;
	}
	.bxsliderKanren li p,
	.bxsliderKanren li h2{
		font-size:13px;
		margin-bottom:10px;
		text-align:left;
		line-height:150%;
	}
	.bxsliderKanren li .priceTxt{
		font-size:13px;
	}

	.kanrenItems .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
		position: absolute;
		bottom: -43px !important;
		width: 100%;
	}

	.item-description{
		padding: 10px ;
		border: 1px solid #ddd;
		font-size: 12px;
		margin: 0 auto 30px;
		width: 94%;
	}
	.item-description p{
		margin-bottom: 12px;
		font-size: 13px;
		color: #000 !important;
	}

}





#message{
	padding: 0 0 0;
}

.messageTop{
	padding: 70px 0 70px;
}
.messageTopinner{
	width: 800px;
	margin: 0 auto;
	
	font-size: 18px;
	
	line-height: 180%;
	text-align: left;
}

.messageBtm{
	padding: 70px 0 70px;
	background: #F7F7F7 url("../../images/message_bg.jpg") no-repeat center center;
	background-size: cover;
}
.messageBtminner{
	width: 750px;
	margin: 0 auto;
}
.messageBox{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	padding-bottom: 0;
	border-bottom: none;
	padding: 30px;
	border: 1px solid #ddd;
	border-radius: 15px;
	background: #fff;
	
}
.messageBoxS{
	margin-top: 20px;
}
.messageBox:nth-last-of-type(1){
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.messageBoxS:nth-of-type(1){
	margin-top: 30px;
}
.messageTitle{
	margin-bottom: 20px;
	width: 100%;
	position: relative;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ddd;
}
.messageTitle h2{
	text-align: center;
	font-size: 24px;
	display: inline-block;
	position: relative;
	padding-left: 0;
	color: rgba(0,0,0,1.00);
	margin-bottom: 0;
}

.messageTitle h2::after{

	background: url("../../images/logomark.webp") no-repeat;
	background-size: 40px 40px;
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}
.messageTxt{
	width: 100%;
	font-size: 17px;
	line-height: 180%;

}
.messageTxt p{
	color: #111111 !important;
}

.messageTxt h3{
	font-size: 16px;
	line-height: 180%;
	margin-bottom: 7px;
	text-align: left;

}

.messageTitleS{
	margin-bottom: 10px;
	position: relative;
}
.messageTitleS h2{
	text-align: left;
	font-size: 16px;
	color: #333;
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
}
.messageTitleS h2::before{
	content: "";
	width: 1em;
	height: 1em;
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 50%;
	background: #FF31FE;
	display: inline-block;
}
.messageTxtS{
	font-size: 16px;
	line-height: 180%;

}

.messageTxt .btn_arrow{
	text-align: center;
	margin-top: 30px;
	
}




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


	#message{
		padding: 0 0 0;
	}

	.messageTop{
		padding: 30px 0 20px;
	}
	.messageTopinner{
		width: 90%;
		margin: 0 auto;

		font-size: 14px;

		line-height: 180%;
		text-align: left;
	}

	.messageBtm{
		padding: 40px 0 30px;
		background: #F7F7F7;
	}
	.messageBtminner{
		width: 90%;
		margin: 0 auto;
	}
	.messageBox{
		display: flex;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #ddd;
		flex-wrap: wrap;
		padding: 15px;

	}
	.messageBox:nth-last-of-type(1){
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	
.messageBoxS{
	margin-top: 20px;
}
.messageBoxS:nth-of-type(1){
	margin-top: 30px;
}
	.messageTitle{
		margin-bottom: 15px;
		width: 100%;
		position: relative;
		text-align: center;
	}
	.messageTitle h2{
		text-align: center;
		font-size: 18px;

		display: inline-block;
		position: relative;
		color: rgba(0,0,0,1.00);

	}
	.messageTitle h2::after{

		background: url("../../images/logomark.webp") no-repeat;
		background-size: 30px 30px;
		content: "";
		position: absolute;
		width: 30px;
		height: 30px;
		top: -40px;
		left: 50%;
		transform: translateX(-50%);
	}
	.messageTxt{
		width: 100%;
		font-size: 15px;
		line-height: 180%;

	}
	.messageTxt h3{
		font-size: 15px;
		line-height: 180%;
		margin-bottom: 7px;
		text-align: left;

	}
	

	.messageTitleS{
		margin-bottom: 5px;
		position: relative;
	}
	.messageTitleS h2{
		text-align: left;
		font-size: 16px;
		color: #333;
		display: inline-block;
		position: relative;
	}
	.messageTxtS{
		font-size: 14px;
		line-height: 180%;

	}


	.profileBtn{
		margin-top: 20px;
		text-align: center;
	}
	.profileBtn a{
		display: inline-block;
		background: #ff0000;
		padding: 10px 30px;
		color: #fff;
		line-height: 100%;
		text-decoration: none;
		border-radius: 30px;

	}
}





/*カテゴリーページ*/

.categoryTxt{
	font-size: 18px;
	margin-bottom: 30px;
}
.categoryTxt p.readtxt{
	font-size: 17px;
	margin-bottom: 20px;
	font-weight: normal;
}
.categoryTxt h1{
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: bold;
}

.categoryListlink{
	padding: 20px;
	border: 2px solid #DDD198;
	border-radius: 10px;
	margin-bottom: 30px;
	
	display: flex;
	flex-wrap: wrap;
}
.categoryListlink p.mokujititle{
	font-weight: bold;
	margin-bottom: 10px;
	width: 100%;
}
.categoryListlink ol{
	width: calc(50% - 22px);
	margin-left: 1.2em;
}

.categoryListlink ol li{
	list-style-type: decimal;
	font-size: 16px;
	margin-bottom: 4px;
}
.categoryListlink ol li:nth-last-of-type(1){
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.categoryListlink ol li a{
	text-decoration: underline;
}

.catSec{
	margin-bottom: 50px;
}
.catSec h2{
	text-align: left;
	padding: 14px 12px;
	background: #E10000;
	color: #fff;
	font-size: 24px;
	border-radius: 8px;
}
.catSec h3{
	text-align: left;
	color: #000;
	font-size: 24px;
	margin-bottom: 30px;
}

.secImg{
	margin-bottom: 30px;
	padding: 5px;
	border: 2px solid #ddd;
	text-align: center;
	background: rgba(247,247,247,1.00)
}


.secImg img{
	width: 100%;
	max-width: 640px;
	height: auto;
}


.catSecTxt{
	font-size: 18px;
	margin-bottom: 30px;
}

.catSec .itemLists{
	border-top: 2px solid #ddd;
	padding-top: 30px;
}

.catSec .itemLists.categoryItemList{
	margin-bottom: 30px;
}



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

	.categoryTxt{
		font-size: 14px;
		margin-bottom: 30px;
	}
	.categoryTxt p{
		letter-spacing: 0;
		color: #000 !important;
	}
	.categoryTxt p.readtxt{
		font-size: 14px;
		margin-bottom: 5px;
		font-weight: bold;
	}

	.categoryTxt h1{
		font-size: 16px;
		margin-bottom: 20px;
		font-weight: bold;
	}

	.categoryListlink{
		padding: 15px;
		border: 2px solid #DDD198;
		border-radius: 10px;
		margin-bottom: 30px;

		display: block;
	}
	.categoryListlink p.mokujititle{
		font-weight: bold;
		margin-bottom: 10px;
		width: 100%;
	}
	.categoryListlink ol{
		width: inherit;
		margin-left: 1.2em;
	}

	.categoryListlink ol li{
		list-style-type: decimal;
		font-size: 14px;
		margin-bottom: 4px;
	}
	.categoryListlink ol li:nth-last-of-type(1){
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.categoryListlink ol li a{
		text-decoration: underline;
	}

	.catSec{
		margin-bottom: 30px;
	}
	.catSec h2{
		text-align: left;
		padding: 8px 8px;
		background: #E10000;
		color: #fff;
		font-size: 16px;
		border-radius: 8px;
		margin-bottom: 15px;
		line-height: 120%;
	}
	.catSec h3{
		text-align: left;
		color: #000;
		font-size: 16px;
		margin-bottom: 15px;
		line-height: 120%;
	}



	.catSecTxt{
		font-size: 14px;
		margin-bottom: 20px;
		line-height: 160%;
		letter-spacing: 0;
	}

	
}





#respond p{
	color: #000 !important;
}









/*初めての方へ*/


.beginTitle{
	background: url(https://monolabo-gift.com/monolabogiftwp/wp-content/uploads/2023/11/begin-scaled.jpg) no-repeat center center;
	background-size: cover;
	height: 500px;
	margin-top: -50px;
	margin-bottom: 60px;
	position: relative;
}


h2.lpTitle{
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 700;
	color: #E10000;
	line-height: 130%;
}


h2.lpTitle span{
	display: inline-block;
	position: relative;
}
h2.lpTitle span::before{
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	opacity: .3;
	background: #E10000;
}


h2.lpTitle.titleAnshin span::after{
	position: absolute;
	content: "";
	width: 130px;
	height: 100px;
	left: -136px;
	bottom:-20px;
	background: url(https://monolabo-gift.com/monolabogiftwp/wp-content/uploads/2023/11/begin_img-03.png) no-repeat center center;
	background-size: contain;
}



.site-content #otherpage p{
	margin-bottom: 30px !important;
	color: #111 !important;
	letter-spacing: .0em;
	font-size: 17px;
}
.site-content #otherpage p.btm0{
	margin-bottom: 0 !important;
}

.site-content #otherpage p.otherRead{
	text-align: center;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 24px;
	line-height: 160%;
	font-weight: 700;
}

.otherBox{
	background: #FFFEEF;
	border-radius: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,.1) inset;
	padding: 60px;
}

.beginImg{
	margin-bottom: 70px;
}
.beginImg.beginImgBtm{
	margin-bottom: 0;
}

.beginImg img{
	width: 100%;
	height: auto;
	
}

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

	.beginTitle{
		background: url(https://monolabo-gift.com/monolabogiftwp/wp-content/uploads/2023/11/begin-scaled.jpg) no-repeat center center;
		background-size: cover;
		height: 220px;
		margin-top: -30px;
		margin-bottom: 30px;
		position: relative;
	}


	h2.lpTitle{
		font-family: 'M PLUS 1p', sans-serif;
		font-weight: 700;
		color: #E10000;
		line-height: 130%;
		font-size: 24px;
	}


	h2.lpTitle span{
		display: inline-block;
		position: relative;
	}
	h2.lpTitle span::before{
		content: "";
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 100%;
		height: 6px;
		border-radius: 3px;
		opacity: .3;
		background: #E10000;
	}


	h2.lpTitle.titleAnshin span::after{
		position: absolute;
		content: "";
		width: 130px;
		height: 80px;
		left: 50%;
		bottom:0;
		transform:translateX(-50%);
		top: -80px;
		background: url(https://monolabo-gift.com/monolabogiftwp/wp-content/uploads/2023/11/begin_img-03.png) no-repeat center center;
		background-size: contain;
	}
	h2.lpTitle.titleAnshin{
		padding-top: 80px;
	}



	.site-content #otherpage p{
		margin-bottom: 20px !important;
		color: #111 !important;
		letter-spacing: .0em;
		font-size: 14px;
		line-height: 160%;
	}
	.site-content #otherpage p.btm0{
		margin-bottom: 0 !important;
	}

	.site-content #otherpage p.otherRead{
		text-align: center;
		font-family: 'M PLUS 1p', sans-serif;
		font-size: 18px;
		line-height: 160%;
		font-weight: 700;
	}

	.otherBox{
		background: #FFFEEF;
		border-radius: 20px;
		box-shadow: 2px 2px 5px rgba(0,0,0,.1) inset;
		padding: 30px;
	}

	.beginImg{
		margin-bottom: 30px;
	}
	.beginImg.beginImgBtm{
		margin-bottom: 0;
	}

	.beginImg img{
		width: 100%;
		height: auto;

	}
}









.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-size: 40px;
}


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





.breadcrumb{
	font-size: 13px;
	margin-bottom: 30px;
	padding: 0;
	background: none;
	line-height: 100%;
	border-radius: 5px;
}

.breadcrumb h1{
	display: inline-block;
	font-weight: normal;
}



.thankspage{
	width: 1070px;
	margin: 0 auto;
}

.cartComp{
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
	padding: 30px 0 0 0;
	font-weight: bold;
}

.cartCompTxt2{
	font-size: 15px;
	text-align: center;
	margin-bottom: 40px;

}
.cartCompTxt2 p{
	font-size: 15px;
	text-align: center;
	margin-bottom: 20px;
	color: #000 !important;
	letter-spacing: 0;
}
.cartCompbackhome {
	text-align: center;
	margin-bottom: 40px;
}

.cartCompbackhome a{
	font-size: 15px;
	
	background: #00A4D2;
    display: inline-block;
    padding: 15px 40px;
    line-height: 100%;
    color: #fff;
    font-weight: bold;

    border-radius: 30px;
	
	
}


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

	
	.breadcrumb{
		font-size: 13px;
		margin-bottom: 30px;
		padding: 0;
		background: none;
		line-height: 100%;
		border-radius: 5px;
	}

	.breadcrumb h1{
		display: inline-block;
		font-weight: bold;
	}



	.thankspage{
		width: 90%;
		margin: 0 auto;
	}

	.cartComp{
		font-size: 20px;
		text-align: center;
		margin-bottom: 40px;
	}

	.cartCompTxt2{
		font-size: 15px;
		text-align: center;
		margin-bottom: 30px;
		line-height: 180%;

	}
	.cartCompbackhome {
		text-align: center;
		margin-bottom: 30px;
	}

	.cartCompbackhome a{
		font-size: 14px;
	}


	
}








/*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;

	}

}


/*howto simulator*/



.howToList{
	width: 900px ;
	margin: 50px auto 50px;
}

.howToList h3{
	font-size: 24px;
	padding: 13px 16px 10px 16px;
	
	background: rgba(225,0,0,1.00);
	
	color: #fff;

	
	margin-bottom: 30px;
	
	text-align: left;
	
	letter-spacing: .05em;
	
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	
	border-bottom: 3px solid rgba(0,0,0,1);
}


.howToBox{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	
	gap:0 4%;
	
	padding: 0 0 30px 0 ;
	
	border-bottom: 2px solid #ddd;
	border-radius: 5px;
	
	margin-bottom: 30px;
}


.howToImg{
	width: 40%;
}
.howToImg img{
	width: 100%;
	height: auto;
	border: 2px solid #ddd;
	
	border-radius: 4px;
	
	box-shadow: 4px 4px 0 rgba(0,0,0,.05);
}

.howToTxts{
	width: 56%;
	display: flex;
	flex-wrap: wrap;
	
	justify-content: space-between;
}

.howToTxts .howtoNo{
	display: block;
	margin-right: 5px;
	font-weight: bold;
	
	width: 5%;
}
.howToTxts .howtoNo span{
	padding: 6px;
	line-height: 100%;
	background: rgba(225,0,0,1.00);
	color: #fff;
	
	width: 100%;
	text-align: center;
	display: block;
	border-radius: 4px;
}

.howToTxts .howToTxt{
	width: 92%;
	font-weight: 700;
}

.howToTxts .howToTxt .howToTxtInTxt{
	background: rgba(255,221,221,.5);
	border-radius: 4px;
	padding: 6px 10px 6px 10px;
	font-size: 14px;
	
	margin-top: 10px;
	font-weight: normal;
}



.otherTabList{
	width: 900px ;
	margin: 50px auto 50px;
	display: flex;
	flex-wrap: wrap;
	
	justify-content: space-between;
	border-bottom: 2px solid #ddd;
}
.otherTab{
	width: 49%;
	padding: 20px;
	background: #eee;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	
	transition: all .1s ease-in-out;
	text-align: center;
	font-weight: bold;
	
	cursor: pointer;
}
.otherTab.active{
	background: rgba(225,0,0,1.00);;
	color: #fff;
	position: relative;
}
.otherTab.active::after{
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}
.tabcont{

}

.howToBox.nobdr {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 30px;
}

.howtoOtherBox{
	padding: 20px;
	border: 4px solid rgba(225,0,0,1.00);
	border-radius: 15px;
	margin-bottom: 30px;
	position: relative;
}
.howtoOtherBox::before{
	content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid rgba(225,0,0,1.00);
    border-top: 0;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.howtoOtherBox .howToBox:nth-last-of-type(1){
	padding: 0 0 0 0 ;
	margin-bottom: 0;
	border-bottom: none;
}
.howtoOtherBox h3{
	font-size:20px;
	padding: 13px 16px 10px 16px;
	
	background: rgba(118,118,118,1.00);
	
	color: #fff;

	
	margin-bottom: 20px;
	
	text-align: left;
	
	letter-spacing: .05em;
	
	border-radius: 5px;
	
	border-bottom: none;
}
.howtoOtherBox .howToTxts .howToTxt{
    width: 86%;
}
.howtoOtherBox .howToTxts .howtoNo{
	width: 10%;
}
.howtoOtherBox .howToTxts .howtoNo span{
	padding: 6px;
	line-height: 100%;
	background: rgba(122,122,122,1.00);
	color: #fff;
	
	width: 100%;
	text-align: center;
	display: block;
	border-radius: 4px;
	
	font-size: 14px;
}


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

	.howToList{
		width: 94% ;
		margin: 20px auto 20px;
	}

	.howToList h3{
		font-size: 18px;
		padding: 8px 10px 8px 10px;

		margin-bottom: 20px;


		border-bottom: 3px solid rgba(0,0,0,1);
	}


	.howToBox{
		display: flex;
		flex-wrap: wrap;
		align-items: center;

		gap:0 4%;

		padding: 0 0 20px 0 ;

		border-bottom: 2px solid #ddd;
		border-radius: 5px;

		margin-bottom: 30px;
	}


	.howToImg{
		width: 100%;
		margin-bottom: 15px;
		text-align: center;
	}
	.howToImg img{
		width: 90%;
		height: auto;
		border: 2px solid #ddd;

		border-radius: 4px;

		box-shadow: 4px 4px 0 rgba(0,0,0,.05);
	}

	.howToTxts{
		width: 100%;
		display: flex;
		flex-wrap: wrap;

		justify-content: space-between;
	}

	.howToTxts .howtoNo{
		display: block;
		margin-right: 5px;
		font-weight: bold;
		font-size: 18px;

		width: 7%;
	}
	.howToTxts .howtoNo span{
		padding: 6px;
		line-height: 100%;
		background: rgba(225,0,0,1.00);
		color: #fff;

		width: 100%;
		text-align: center;
		display: block;
		border-radius: 4px;
	}

	.howToTxts .howToTxt{
		width: 88%;
		padding-top: 3px;
		font-size: 14px;
		
	}

	.howToTxts .howToTxt .howToTxtInTxt{
		background: rgba(255,221,221,.5);
		border-radius: 4px;
		padding: 4px 8px 4px 8px;
		font-size: 14px;

		margin-top: 7px;
	}



	.otherTabList{
		width: 94% ;
		margin: 20px auto 0px;
		display: flex;
		flex-wrap: wrap;

		justify-content: space-between;
	}
	.otherTab{
		width: 49%;
		padding: 10px 0;
		background: #eee;

		transition: all .1s ease-in-out;
		text-align: center;
		font-weight: bold;

		cursor: pointer;
	}
	.otherTab.active{
		background: rgba(225,0,0,1.00);;
		color: #fff;
	}
	.tabcont{

	}



	.howtoOtherBox{
		padding: 13px;
		border: 4px solid rgba(225,0,0,1.00);
		border-radius: 15px;
		margin-bottom: 20px;
		position: relative;
	}
	.howtoOtherBox::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-bottom: 20px solid rgba(225,0,0,1.00);
		border-top: 0;
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
	}
	.howtoOtherBox .howToBox:nth-last-of-type(1){
		padding: 0 0 0 0 ;
		margin-bottom: 0;
		border-bottom: none;
	}
	.howtoOtherBox h3{
		font-size:15px;
		padding: 10px 10px 10px 10px;

		background: rgba(118,118,118,1.00);

		color: #fff;


		margin-bottom: 20px;

		text-align: left;

		letter-spacing: .05em;

		border-radius: 5px;

		border-bottom: none;
	}
	.howtoOtherBox .howToTxts .howToTxt{
		width: 84%;
	}
	.howtoOtherBox .howToTxts .howtoNo{
		width: 13%;
	}
	.howtoOtherBox .howToTxts .howtoNo span{
		padding: 6px;
		line-height: 100%;
		background: rgba(122,122,122,1.00);
		color: #fff;

		width: 100%;
		text-align: center;
		display: block;
		border-radius: 4px;

		font-size: 12px;
	}



}













