@charset "UTF-8";
/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&family=Roboto+Slab:wght@300;400;500;600;700&display=swap');
/*
font-family: 'Roboto Slab', serif;
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700

font-family: 'Noto Serif JP', serif;
Regular 400
Medium 500
SemiBold 600
Bold 700
*/

body {
	background-color: #edecef;
	color: #535A65;
}

a,
button {
	color: #535A65;
}

.pc{display: none!important;}
.wow{
	opacity: 0;
}
/* !wrapper
---------------------------------------------------------- */
#wrapper {
  width: 100%;
  overflow: hidden;
  min-width: 320px;
  padding-top: 45px;
}
.menuOpen{
  overflow: hidden;
  height: 100vh;
}
.menuOpen #wrapper{
  position: fixed;
}
.overlay{
    display: none;
  position: fixed;
  left: 0;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: #535A65;
  opacity: .2;
  z-index: 97;
  text-indent: -9999px;

}
.inner,
.inner02{
  width: 100%;
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1000px;
}
.inner02{
  max-width: 1160px;
}

/* !header
---------------------------------------------------------- */
#header {
	
}

#headerIn {
	
}
.headerFixed{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 45px;
	padding-right: 5px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 45px;
	background-color: #edecef;
}
.headerFixedUl{
	display: flex;
	align-items: center;
}
.headerFixedUl li{
	margin-right: 10px;
	width: 25px;
}
.headerFixedUl li a{
	display: block;
}

.headerFixedUl li a.logoutBtn {
	border: 1px solid #535A65;
	border-radius: 2px;
	width: 70px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	color: #535A65;
	font-weight: 500;
	font-family: 'Roboto Slab', serif;
	background: transparent;
}

.headerFixedUl li a.logoutBtn:hover {
	opacity: 1;
}

.searchWrap{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9;
	width: 100%;
	padding: 10px 50px 10px 20px;
	border-top: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
	background-color: #EDECEF;
}
.searchClose{
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 25px;
	cursor: pointer;
}
.searchForm{
	position: relative;
	width: 600px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.searchForm input[type=search]{
	width: calc(100% - 25px);
	height: 25px;
	font-size: 14px;
	font-family: inherit;
	background: none!important;
	border: 0!important;
	border-radius: 0!important;
}
.searchForm button{
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: none!important;
	border: 0!important;
	border-radius: 0!important;
	padding: 0;
	cursor: pointer;
}


/* みんシスが修正 */
#headerLogo {
	margin: 15px 0 20px;
	text-align: center;
	padding: 0 20px;
}
/* みんシスが修正 */
#headerLogo img{
	/* margin-top: 40px; */
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: block;
	/* 公開後修正 */
	max-height: 50px;
	width: auto;
	object-fit: contain;
}
/* みんシスが修正 */
#headerLogo h2 {
	/* margin-top: 40px; */
	font-size: 20px;
	font-weight: 600;
}

#headerLinks {
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btnMenu,
.btnMenu span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.btnMenu {
  position: relative;
  width: 18px;
  height: 15px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.btnMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
  border-radius: 4px;
}
.btnMenu span:nth-of-type(1) {
  top: 0;
}
.btnMenu span:nth-of-type(2) {
  top: 7px;
}
.btnMenu span:nth-of-type(3) {
  bottom: 0;
}

.btnMenu span:nth-of-type(1) {
  animation: menu-bar01 .75s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.btnMenu span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.btnMenu span:nth-of-type(3) {
  animation: menu-bar02 .75s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.btnMenu.active span:nth-of-type(1) {
  animation: active-menu-bar01 .75s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
.btnMenu.active span:nth-of-type(2) {
  opacity: 0;
}
.btnMenu.active span:nth-of-type(3) {
  animation: active-menu-bar03 .75s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	
}

/* !gNavi
---------------------------------------------------------- */
#gNavi {
  position: fixed;
  top: 45px;
  right: -280px;
  width: 280px;
  height: calc(100vh - 45px);
  background:#EDECEF;
  z-index: 98;
  box-sizing: border-box;
  padding: 10px 0 0;
  overflow-x: hidden;
  overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
  transition: opacity .3s,right .3s;
	color: #fff;
}
#gNavi.active{
    opacity: 1;
    pointer-events: auto;
    right: 0;
}	
.navUl{
	font-family: 'Roboto Slab', serif !important;
	font-weight: 500 !important;
}
.navUl li {}
.navUl li a {
	font-size: 20px;
	font-weight: 300;
	display: flex;
	align-items: center;
	height: 45px;
	padding: 0 20px;
}

	
/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
	padding: 0 10px;
}
.mvSlider{
	overflow: hidden;
}
.mvList {
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.mvList img{
	transform: scale(1);
	transition: transform linear 7s;
	opacity: 0;
}
.mvList.active img{
	opacity: 1;
	transform: scale(1.15);
	object-fit: cover;
	width: 100%;
	height: 300px;
}

/* !teaser
---------------------------------------------------------- */
#teaser {
	
}

/* !contents
---------------------------------------------------------- */
#contents {
	
}

#main {
	
}

#side {
	
}

.inner {
	
}

/* !pageTop
---------------------------------------------------------- */
.pageTop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 88;
	display: none;
	width: 40px;
}

/* !footer
---------------------------------------------------------- */
#footer {
}

#footer .footerIn {
	
}
.snsUl{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	border-top: 1px solid #CCCCCC;
	padding: 0 10px;
	background-color: #fff;
}
.snsUl li a{
	display: block;
	width: 20px;
	margin: 0 10px;
}
.ftLink{
	background: #EDECEF;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1.33;
	flex-wrap: wrap;
	padding: 12px 0px 6px;
	color: #535A65;
}
.ftLink li{
	margin: 0 1em 6px;
}

	
#copyright {
	background: #E1DFE5;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	font-size: 10px;
	color: #535A65;
}

/* !h(n)eading
---------------------------------------------------------- */
.hdL {
	
}

.hdM{
	font-family: 'Roboto Slab', serif !important;
	font-weight: 500 !important;
	font-size: 30px;
	line-height: 1;
	margin-bottom: 25px;
}


/* !list
---------------------------------------------------------- */
.list01 {
	
}

/* !table
---------------------------------------------------------- */
.table01 {
	
}

/*common*/
.btnLink01 {
    text-transform: uppercase;
		cursor: pointer;
		width: 190px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 40px;
		border: 1px solid #535A65;
		background-color: #EDECEF;
		font-family: 'Roboto Slab', serif !important;
		font-weight: 500 !important;
		font-size: 13px;
		margin-left: auto;
		margin-right: auto;
}
.btnLink01 span {
    display: none;
}
.btnLink01.redBtn:after,
.btnLink01.grayBtn:after{
	content: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	background: #D53C3C;
}
.btnLink01.redBtn,
.btnLink01.grayBtn{
	background: none;
	border: 0;
	color: #fff;
	line-height: 20px;
}
.btnLink01.redBtn span{
	background: #BC3535;
}
.btnLink01.redBtn img,
.btnLink01.grayBtn img{
	margin-right: 3px;
	width: 20px;
}

.btnLink01.grayBtn:after{
	background: #666;
}

.imgBox {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
}
.imgBox img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: all .4s linear;
}
a:hover .imgBox img{
	transform: scale(1.07);
}

/*top*/
.topAbout{
	margin: 0 10px 40px;
	padding: 30px 20px 20px;
	background-color: #535A65;
}
.topAbout .inner {
	padding: 0;
}
.topAboutDl{
}
.topAboutDl dt{
	margin-bottom: 30px;
}
.topAboutDl dt,
.topAboutDl dd{
	color: #fff;
}
.topAboutDl .hdM{
	text-align: center;
	color: #fff;
}
.topAboutDl .txtP{
	font-size: 13px;
	line-height: 23px;
}
.topAboutDl .txtP p+p{
	margin-top: 20px;
}
.topAboutDl .txtP .boldP{
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
}
.topAboutDl .btnP{
	margin-top: 15px;
	text-align: center;
}
.topAboutDl .btnLink01 {
	border-color: #fff;
	color: #fff;
	background-color: #535A65;
}
.topAboutDl .imgBox img {
	height: auto;
	aspect-ratio: 580 / 370;
}

.topItem{
	/* 公開後修正 */
	padding-top: 30px;
	padding-bottom: 40px;
}
.topItemUl{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px;
}
.topItemUl li{
	margin: 0 7px;
	width: calc(50% - 14px);
	position: relative;
	line-height: 1.33;
}
.topItemUl li:nth-child(n+3){
	margin-top: 40px;
}
.topItemUl li.pickUp:before{
	content: 'PICKUP';
	position: absolute;
	left: 5px;
	top: 5px;
	z-index: 9;
	font-size: 10px;
	line-height: 1;
	letter-spacing: .1em;
	color: #fff;
	background: #C47A3A;
	width: 56px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-family: 'Roboto Slab', serif;
	font-weight: 300;
}
.topItemUl li.soldOut:after{
	content: 'SOLD OUT';
	position: absolute;
	right: auto;
	top: calc(100% + 5px);
	z-index: 9;
	font-size: 12px;
	color: #C47A3A;
	text-align: left;
	font-family: 'Roboto Slab', serif;
	font-weight: 500;
}
.topItemUl li a{
	display: block;
	position: relative;
	opacity: 1;
}
.topItemUl .imgBox{
	padding-top: 140%;
}
.topItemUl .nameP{
	font-size: 11px;
	margin: 10px 0;
}
.topItemUl .priceP{
	font-size: 10px;
	text-align: left;
	font-family: initial;
	font-weight: 300;
}
.topItemUl .priceP span.enFt{
	font-size: 14px;
	font-family: 'Roboto Slab', serif !important;
	font-weight: 600 !important;
	margin-right: 4px;
}
.topItem .btnP{
	margin: 60px 0 0;
}

@-webkit-keyframes fadeInUp{
	0%{opacity:0;-webkit-transform:translateY(75px);transform:translateY(75px)}
	100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}
}
@keyframes fadeInUp{
	0%{opacity:0;-webkit-transform:translateY(75px);transform:translateY(75px)}
	100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}
}

.topBlog{
	/* padding: 30px 0; */
	/* 公開後修正 */
	padding: 30px 0 0 0;
}
.topBlogUl li + li {
	margin-top: 18px;
}
.topBlogUl a{
	display: block;
	font-size: 12px;
	line-height: 1.33;
}
.topBlogUl .dateP{
	margin-bottom: 10px;
	font-weight: normal !important;
	line-height: 1;
}
.topBlogUl .txtP{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 12px;
}
.topBlog .btnP{
	text-align: right;
	font-size: 12px;
	margin-top: 20px;
}
.topBlog .btnP .enFt {
	font-family: 'Roboto Slab', serif !important;
	font-weight: 500 !important;
	text-decoration: underline;
}

/*item*/
.teaserHd{
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 43px;
	margin-bottom: 25px;
	font-weight: 500 !important;
}
.teaserHd.enFt {
	font-family: 'Roboto Slab', serif !important;
	font-weight: 300 !important;
}
.itemWrap{
	padding: 0 0 40px;
}

.itemNavWrap{
	position: relative;
	z-index: 9;
}

.itemSelect{
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 12px;
	padding: 0 10px;
	background: url(/img/shop/item/arrow_select.svg)no-repeat right 10px center #fff;
	background-size: 20px auto;
	border: 1px solid #CCCCCC;
}

.itemNav{
	display: none;
	width: 100%;
	border: 1px solid #CCCCCC;
	border-top: 0;
}
.itemNav li {
    position: relative;
    border-top: 1px solid #CCCCCC;
}
.itemNav>li:first-of-type{
	border-top: 0;
}
.itemNav>li>ul>li>a{
	padding-left: calc(10px + 1em);
}
.itemNav>li>ul>li>ul>li>a{
	padding-left: calc(10px + 2em);
}
.itemNav a{
	background: #F2F2F2;
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 12px;
	padding: 0 10px;
}

.itemTop{
	margin:15px 0;
	font-size: 10px;
	line-height: 1.35;
}
.itemPath{
    display: flex;
    align-items: center;
}
.itemPath li{
    white-space: nowrap;
}
.itemPath li+li{
    position: relative;
    padding-left: 22px;
}
.itemPath li+li:before {
content: '>';
	position: absolute;
	left: 11px;
	top: calc(50% - 2px);
	transform: translate(-50%,-50%);
	z-index: 2;
}

.itemPath li:last-of-type{
    /*white-space: normal;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.itemPath li a{
    opacity: 1;
    color: #567DBA;
}
.itemPath li a:hover{text-decoration: underline;}

.itemCounter{
	text-align: right;
	margin-top: 2px;
}

.wp-pagenavi{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
		margin-top: 20px;
}
.wp-pagenavi .enFt {
	font-family: 'Roboto Slab', serif;
}
.wp-pagenavi a,
.wp-pagenavi span{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    color: #535A65;
    font-size: 14px;
    text-decoration: none;
    width: 30px;
    height: 30px;
    position: relative;
    border: 1px solid #fff;
		background-color: #fff;
    margin-bottom: 10px;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink{
}
.wp-pagenavi a.nextpostslink{
}

.wp-pagenavi span{
    background: #535A65;
    color: #fff;
    border-color: #535A65;
}
.wp-pagenavi a:hover{
    opacity: 1;
}


/*itemDtWrap*/
.itemDtWrap{
	padding: 0px 0 30px;
}
.itemDtWrap .slick-slide img {
	aspect-ratio: 580 / 812.2;
	object-fit: cover;
}
.itemDtDl{
	line-height: 1.35;
}
.itemDtDl dt{
	position: relative;
	margin-bottom: 25px;
}
.itemDtDl dd{
}
.itemDtSlist{
	position: relative;
}
.itemDtSlist.pickUp:before{
	content: 'PICKUP';
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 9;
	font-size: 10px;
	line-height: 1;
	letter-spacing: .1em;
	font-weight: 500;
	font-family: 'Roboto Slab', serif;
	color: #fff;
	background-color: #C47A3A;
	padding: 0px 16px;
	width: 54px;
	height: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
}
.slick-prev, .slick-next {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 3;
    background: url(/img/shop/item/prev_slider3.png)no-repeat;
    background-size: 100% auto;
    left: 0px;
    top: auto;
    bottom: 0;
    transform: translateY(0%);
}
.slick-next{
	left: auto;
	right: 0;
    background: url(/img/shop/item/next_slider3.png)no-repeat;
    background-size: 100% auto;
}

.itemDtSlist .imgBox{
	padding-top: 140%;
}
.itemDtSlist .imgBox img {
	aspect-ratio: 580 / 812.2;
}
.progresses{
	background: rgba(68,68,68,.4);
	border-radius: 4px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	height: 22px;	
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 9;
	font-weight: 400!important;
	font-size: 10px;
}
.progresses img{
	margin-right: 5px;
	width: 10px;
}

.productName{
	font-size: 14px;
	line-height: 1.44;
	font-weight: normal;
	margin-bottom: 15px;
}
.productPrice{
	font-size: 14px;
	font-weight: bold;
}
.productPrice span{
	font-size: 32px;
	margin-right: 8px;
	font-family: 'Roboto Slab', serif !important;
}
.productPrice span.enFt {
	font-family: 'Roboto Slab', serif !important;
	font-weight: 500 !important;
}
.productPrice.soldOut:after{
	content: 'SOLD OUT';
	margin-left: 8px;
	font-size: 20px;
	font-weight: 500;
	font-family: 'Roboto Slab', serif;
	color: #C47A3A;
}
.freePrice{
	font-size: 14px;
}
.productCode{
	font-size: 14px;
	margin-top: 6px;
}
.productItem{
	margin-top: 17px;
}
.productItemType{
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #535A65;
}
.productItemBox{
}
.productItemNumber{
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.productItemNumber span{
	font-size: 14px;
	margin-right: 20px;
}
.countNum{
	border-radius: 2px;
	border: 1px solid #CCCCCC;
	display: flex;
}
.countNum font{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.countNum input{
	width: 60px;
	height: 40px;
	padding: 0 14px;
	text-align: right;
	font-size: 14px;
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
}
.productItemBtn{
	width: 100%;
}
.productItemBtn button.btnLink01{
	height: 50px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	max-width: 100%;
	font-family: inherit;
	background-color: #D53C3C;
	border-radius: 0;
}
.productItemBtn button.btnLink01.soldOut{
	color: #fff;
	background: #AAAAAA;
	pointer-events: none;
	border: 0;
	font-family: 'Roboto Slab', serif !important;
	border-radius: 0;
	margin-left: 0;
	margin-top: 16px;
}


.itemDtDescrip{
	font-size: 13px;
	line-height: 1.8;
	margin-top: 20px;
}
.itemDtDescrip p+p{
	margin-top: 23px;
}
.itemDtDescrip a{
	color: #567DBA;
}


/*about*/
.aboutWrap{
	padding: 0 0 40px;
}
.aboutWrap p{
	font-size: 12px;
	line-height: 1.35;
	margin-bottom: 16px;
}
.aboutWrap .aboutHd{
	font-size: 14px;
	font-weight: bold;
}
.aboutOtherLink{
}
.aboutOtherLink li+li{
	margin-top: 15px;
}
.aboutOtherLink li a{
	max-width: 100%;
}
/*blogWrap*/
.blogWrap{
	padding: 0 0 40px;
}
.blogWrap .topBlogUl{
	margin-bottom: 30px;
}

.blogWrap .noItem {
	display: block;
	text-align: center;
	height: auto;
	padding-bottom: 20px;
}

/*blogDt*/
.blogDtTop .dateP{
	font-size: 12px;
	text-align: right;
	margin: 10px 0;
}

/*lawWrap*/
.lawWrap{
	padding: 0 0 40px;
}
.lawTable{
	width: 100%;
	border-top: 1px solid #CCCCCC;
}
.lawTable th,
.lawTable td{
	display: block;
	font-size: 12px;
	line-height: 1.33;
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 12px;
}
.lawTable th{
	font-weight: bold;
	padding: 12px 0 8px;
	border-bottom: 0;
}

/*policyWrap*/
.policyWrap{
	font-size: 12px;
	line-height: 2;
	padding: 0 0 40px;
}
.policyWrap p+p{
	margin-top: 24px;
}
.policyWrap p span{
	display: block;
	font-weight: bold;
}


/*contactWrap*/
.contactWrap{
	padding: 0 20px 40px;
}
.contactWrap .inner{
	max-width: 680px;
	background-color: #fff;
	border-top: 8px solid #535A65;
	padding: 20px 25px;
}
.contactForm{
	padding: 0;
	line-height: 1.33;
}
.contactDl{
	font-size: 12px;
}
.contactDl+.contactDl{
	margin-top: 13px;
}
.contactDl dt{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 9px;
}
.contactDl dt font{
	color: #666666;
	margin-left: 4px;
	font-size: 10px;
	font-weight: normal;
}
.contactDl dt font.requiredFt{
	color: #D53C3C!important;
}
.contactDl dd{
	display: flex;
	margin: 0 -5px;
}
.contactDl dd>div{
	margin: 0 5px;
	width: calc(100% - 10px);
	position: relative;
}
.contactDl input[type=text],
/* みんシスが追加 */
.contactDl input[type=number],
.contactDl input[type=tel],
.contactDl input[type=email],
.contactDl input[type=date],
.contactDl textarea{
	width: 100%;
	height: 35px;
	padding: 0 10px;
	font-family: inherit;
	font-size: 12px;

	border: 1px solid #CCCCCC;
	border-bottom: 1px solid #535A65;
	background: #fff;
	outline: none;
}
.contactDl textarea{
	display: block;
	resize: none;
	height: 200px;
	padding: 8px 10px;
}
.contactDl input[type=text]:focus,
.contactDl input[type=tel]:focus,
.contactDl input[type=email]:focus,
.contactDl textarea:focus{
	border: 1px solid #535A65;
}

.agreeP {
	text-align: center;
	font-size: 12px;
	margin: 13px 0;
}
.agreeP label{
	display: inline-flex;
	align-items: center;
}
.agreeP label input[type="checkBox"]{
  -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  -moz-appearance: none;
	width: 16px;
	height: 16px;
	border: 1px solid #CCCCCC;
	margin-right: 8px!important;
	background: #fff;
}
.agreeP label input[type="checkBox"]:checked{
	background: url(/img/shop/common/check_on.svg)no-repeat;
	background-size: 100% auto;
	border: 0;
}
.agreeP a{
	color: #567DBA;
	text-decoration: underline;
}

.contactBtn{
	display: flex;
	justify-content: center;
	margin-top: 13px;
}
button.btnLink01{
	background: none;
	cursor: pointer;
	font-family: "Hiragino Kaku Gothic ProN", Roboto, "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3",  Arial, "メイリオ", Meiryo, sans-serif !important;
}


/*cart*/
.cartWrap{
	padding: 20px 0 40px;
}
.cartStep{
	border: 1px solid #CCCCCC;
	display: flex;
	background: #F2F2F2;
	font-size: 12px;
	font-weight: bold;
	color: #666666;
	margin-bottom: 20px;
}
.cartStep li{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
}
.cartStep li+li{
	border-left: 1px solid #CCCCCC;
}
.cartStep li.is_active{
	background: #666666;
	color: #fff;
	z-index: 9;
}
.cartStep li.is_active:before{
	content: '';
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 2;
	width: 6px;
	height: 100%;
	background: url(/img/shop/cart/before_step.svg)no-repeat right center;
	background-size: 100% auto;
}
.cartStep li:last-of-type:before{
	content: none!important;
}

.cartItem{
	margin-bottom:30px;
	line-height: 1.33;
}
.cartItemName{
	font-size: 14px;
	margin-bottom: 5px;
	font-weight: bold;
}
.cartItemList{
	margin-top: -1px;
	border: 1px solid #CCCCCC;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.cartItemList .imgP{
	width: 100px;
	margin-right: 10px;
}
.cartItemList .imgBox{
	padding-top: 100%;
}
.cartItemRow01{
	width: 430px;
	width: calc(100% - 110px);
	margin-bottom: 10px;
}
.cartItemRow02{
	width: 100px;
	margin-right: 15px;
}
.cartItemRow03{
	width: 150px;
	margin-right: 15px;
}
.cartRemoveBtn{
	width: 25px;
	cursor: pointer;
}
.cartItemRow03.productItemNumber span{
	margin-right: 10px;
	white-space: nowrap;
}
.cartItemRow03 .countNum{
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	display: flex;
}
.cartItemRow03 .countNum font{
	width: 25px;
	height: 25px;
}
.cartItemRow03 .countNum input{
	width: 45px;
	height: 25px;
}
.cartItemRow02 .priceP{
	font-size: 10px;
	margin-bottom: 4px;
}
.cartItemRow02 .priceP span{
	font-size: 16px;
	margin-right: 4px;
}
.cartItemRow02 .freePrice{
	font-size: 10px;
}
.cartItemRow01 .nameP a{
	color: #567DBA;
	font-size: 14px;
	display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.cartItemRow01 .typeP{
	font-size: 12px;
	margin-top: 10px;
}
.cartSum{
	text-align: right;
	margin: 7px 0 15px;
	font-size: 14px;
}
.cartSum font{
	font-size: 10px;
	color: #D53C3C;
	margin-left: 10px;
}
.cartSum font span{
	font-size: 20px;
	margin-left: 4px;
}
.cartBtn{
	text-align: center;
}
.cartBtn .btnLink01{
	max-width: 320px;
}
.cartBack a{
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #567DBA;
	margin-top: 0px;
}
.cartBack a img{
	margin-right: 6px;
}

/*cartContactWrap*/
.cartContactWrap{
	line-height: 1.33;
}
.cartContactMain{
	margin-bottom: 20px;
}
.cartContactSide{
	border: 1px solid #CCCCCC;
	padding: 15px 15px;
	position: relative;
	z-index: 89;
}
.cartContactSide .flexP{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cartContactSide .flexP+.flexP{
	margin-top: 8px;
}
.cartContactSide .flexP .txtP{
	font-size: 12px;
}
.cartContactSide .flexP .priceP{
	font-size: 10px;
}
.cartContactSide .flexP .priceP span{
	font-size: 16px;
	margin-left: 6px;
}
.cartContactSide .flexP .priceP.redFt{
	color: #D53C3C;
}

.cartContactSide .totalP{
	padding-top: 8px;
	margin-top: 16px!important;
	border-top: 1px solid #CCCCCC;
}
.taxBox{
	padding: 10px;
	background: #F2F2F2;
	margin: 8px 0 10px;
}
.cartContactSide .taxBox .flexP+.flexP{
	margin-top: 3px;
}
.freeBox{
	padding: 15px;
	background: #FAF6F5;
}
.freeBox .txtP{
	font-size: 12px;
	font-weight: bold;
}
.freeBox .txtP span{
	color: #D53C3C;
}
.freeBox .txtP font{
	color: #D53C3C;
	font-size: 16px;
}
.btnLink02{
	display: inline-block;
	font-size: 12px;
	color: #567DBA;
	padding-right: 20px;
	background: url(/img/shop/cart/arrow_btnlink02.svg)no-repeat right center;
	background-size: 14px auto;
}
.sideBtn{
	margin-top: 10px;
}
.sideBtn .btnLink01{
	max-width: 100%;
}

.cartContactTop{
	padding: 15px;
	background: #F8F7EC;
	border: 1px solid #E3DFB6;
	text-align: center;
	margin-bottom: 20px;
}
.cartContactTop .btnP>a{
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 40px;
	border: 1px solid #E18631;
	background: #fff;
	font-size: 14px;
	font-weight: bold;
	/*color: #E18631;*/
	color: #1A1311;
}
.cartContactTop .btnP>a img{
	width: 80px;
	margin-right: 5px;
}
.cartContactTop .linkP{
	text-align: center;
	margin-top: 7px;
}
.cartContactTop .linkP a{
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	color: #E18631;
	color: #567DBA;
}
.cartFormWrap{
	border: 1px solid #CCCCCC;
}
.cartFormHd{
	background: #F2F2F2;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 15px;
}
.cartFormCont{
	padding: 15px;
}
.cartFormWrap .contactDl input[type=text], 
.cartFormWrap .contactDl input[type=tel], 
.cartFormWrap .contactDl input[type=date], 
.cartFormWrap .contactDl input[type=email]{
    height: 40px;
    padding: 8px 10px;
}
.cartFormWrap .contactDl textarea {
    padding: 8px 10px;
}
.cartFormWrap .contactDl dt {
    margin-bottom: 8px;
}
.cartFormWrap .contactDl+.contactDl{
	margin-top: 17px;
}
.contactDl dt span{
	margin-left: 10px;
	font-size: 12px;
	font-weight: normal;
}
.contactDl select{
	width: 100%;
	height: 40px;
	padding: 0 10px;
	font-family: inherit;
	font-size: 12px;

	border: 1px solid #CCCCCC;
	outline: none;
	background: url(/img/shop/cart/select.svg)no-repeat right 10px center #fff;
	background-size: 20px auto;
}
.radioWrap{
	margin-bottom: 15px;
	font-size: 12px;
}
.md-radio {
    margin: 0 10px 10px 0;
    position: relative;
}
.md-radio input[type=radio],
.md-radio input[type=checkbox] {
    display: none;
}
.md-radio label {
	font-size: 12px;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
}
.md-radio label:before, .md-radio label:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    transition: all 0.3s ease;
    transition-property: transform, border-color;
}
.md-radio label:before {
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #CCCCCC;
}
.md-radio input[type=radio]:checked + label:before ,
.md-radio input[type=checkbox]:checked + label:before {
    border-color: #567DBA;
    animation: ripple 0.2s linear forwards;
}
.md-radio label:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    transform: scale(0);
    background: #567DBA;
}
.md-radio input[type=radio]:checked + label:after ,
.md-radio input[type=checkbox]:checked + label:after {
    transform: scale(1);
}
.radioCont{
	display: none;
}
.contactDlWrap{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.contactDlWrap .contactDl{
	margin: 0 5px;
	width: calc(100% - 10px);
}
.contactDlWrap .contactDl.halfDl{
	width: calc(50% - 10px);
}
.contactDl input[type=date]{
	border: 1px solid #CCCCCC;
	background: url(/img/shop/cart/icon_date.svg)no-repeat right 10px center #fff;
	background-size: 20px auto;
	cursor: pointer;
}
.paymentWrap{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.paymentWrap .contactDl{
	margin: 0 5px!important;
	width: 110px;
	width: calc(50% - 10px);
}
.paymentWrap .contactDl.cardDl{
	width: calc(100% - 10px);
	margin: 0 5px 17px!important;
}
.paymentWrap .contactDl input[type=text]{
	border: 0!important;
	border-radius: 5px;
	background-color: #F1F1F1;
}
.paymentWrap .contactDl.cardDl input[type=text]{
	background: url(/img/shop/cart/icon_card.svg)no-repeat right 10px center #F1F1F1;
	background-size: 32px auto;
}
.paymentWrap .contactDl.cvcDl input[type=text]{
	background: url(/img/shop/cart/icon_cvc.svg)no-repeat right 10px center #F1F1F1;
	background-size: 30px auto;
}

/*datepicker-add*/
#ui-datepicker-div {
	display: none;
	background: #fff;
	border-radius:0 0 6px 6px;
	border: 1px solid #ccc;
	padding: 10px;
	width: 303px !important;
	/*top: -2px !important;*/
	/*left: 0!important;*/
	position: absolute!important;
	z-index: 9999!important;
	margin-top: -2px;
}

#ui-datepicker-div .ui-datepicker-header {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 24px;
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: 500;
	background: none;
	border: 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
	position: absolute;
	left: 45px;
	top: 0;
	width: 24px;
	height: 24px;
	background: url(/img/shop/cart/arrow_back.svg) center center no-repeat;
	background-size: 100% auto;
	z-index: 2;
	display: block;
	text-indent: -9999px;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
	position: absolute;
	right: 50px;
	top: 0;
	width: 24px;
	height: 24px;
	background: url(/img/shop/cart/arrow_btnlink02.svg) center center no-repeat;
	background-size: 100% auto;
	z-index: 2;
	display: block;
	text-indent: -9999px;
}
#ui-datepicker-div .ui-datepicker-header select {
	/*width: 68px;
	height: 33px;
	background: url(../img/contact/select.svg) no-repeat right 9px center #fff;
	padding-right: 22px;
	border: 1px solid #DEDEDE;
	border-radius: 6px;*/

	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: inherit;
}

#ui-datepicker-div .ui-datepicker-calendar {
	width: 100%;
}

#ui-datepicker-div .ui-datepicker-calendar th,
#ui-datepicker-div .ui-datepicker-calendar td {
	/*border: 1px solid #000;*/
	text-align: center;
	vertical-align: middle;
	height: 38px;
	/*color: #4E4E4E;*/
}
#ui-datepicker-div .ui-datepicker-calendar th {
	/*background: #DFF2EE;*/
	/*color: #84B7AB;*/
	font-size: 15px;
	font-weight: 500;
}

#ui-datepicker-div .ui-datepicker-calendar td {
	font-size: 15px;
	font-weight: 500;
}

.ui-datepicker td a, .ui-datepicker td span {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	height: 38px;
}

.ui-datepicker-week-end .ui-state-default {
	/*background: #F6C3C2;*/
}

.ui-datepicker-week-end:last-child .ui-state-default {
	/*background: #ABCAFB;*/
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
	opacity: .35;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	background:#FEEECC;
}

.ui-button.ui-state-active:hover, .ui-button:active, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active {
	background: #004098;
	color: #fff;
}

.cartFormWrap .halfDl+.halfDl:nth-of-type(2).halfDl {
    margin-top: 0px;
}


/*confirm*/
.confirmPolicy{
	text-align: center;
	margin-top: 17px;
}
.confirmPolicy a{
	font-size: 12px;
	color: #567DBA;
	text-decoration: underline;
}
.mw_wp_form_confirm{
	
}
.mw_wp_form_confirm .contactDl dt font{
	display: none;
}
.mw_wp_form_confirm .radioCont{
	display: block!important;
}
.mw_wp_form_confirm .paymentWrap .contactDl.cardDl{
	width: auto;
}

.mw_wp_form_confirm .cartStep li {
	background: none!important;
	color: inherit!important;
	z-index: 1!important;
}
.mw_wp_form_confirm .cartStep li:before{
	content: none!important;
}
.mw_wp_form_confirm .cartStep li:nth-of-type(3) {
	background: #666666!important;
	color: #fff!important;
	z-index: 9!important;
}
.mw_wp_form_confirm .cartStep li:nth-of-type(3):before{
	content: ''!important;
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 2;
	width: 6px;
	height: 100%;
	background: url(/img/shop/cart/before_step.svg)no-repeat right center;
	background-size: 100% auto;
}

.cartThanks .cartStep li {
	background: none!important;
	color: inherit!important;
	z-index: 1!important;
}
.cartThanks .cartStep li:before{
	content: none!important;
}
.cartThanks .cartStep li:nth-of-type(4) {
	background: #666666!important;
	color: #fff!important;
	z-index: 9!important;
}
.cartThanks .cartStep li:nth-of-type(4):before{
	content: ''!important;
	position: absolute;
	left: -1px;
	top: 0;
	z-index: 2;
	width: 6px;
	height: 100%;
	background: url(/img/shop/cart/before_step_last.svg)no-repeat right center;
	background-size: 100% auto;
}


.cartThanksWrap{
	text-align: center;
	line-height: 1.33;
}
.cartThanksP01{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 12px;
}
.cartThanksP02{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 8px;
}
.cartThanksP03{
	font-size: 12px;
	margin-bottom: 14px;
}

/*0117*/
.headerFixedUl li{
	min-width: 25px;
	width: auto;
}
.headerFixedUl li a{
	display: flex;
	align-items: center;
}
.headerFixedUl li a span{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 10px;
	min-width: 20px;
	height: 20px;
	background: #C47A3A;
	color: #fff;
	border-radius: 50%;
	/*margin-left: 6px;*/
}


.deliveryDate{
	background: #EDECEF;
	padding: 8px 10px;
	font-size: 12px;
	margin: 13px 0 0px;
	border: 1px solid #535A65;
}
.deliveryDate span{
	display: block;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 2px;
}

.freeTxt{
	padding: 12px 10px 8px;
	background: #FAF6F5;
	line-height: 1.33;
	display: flex;
	justify-content: center;
	margin: 20px 0;
}
.freeTxt .txtP{
	font-size: 12px;
	font-weight: bold;
}
.freeTxt .txtP font{
	color: #D53C3C;
	font-size: 16px;
}
.freeTxt .txtP span{
	color: #D53C3C;
}

.cartFormItem{

}
.cartFormItem .cartItemList{
	margin: -1px 15px 0;
	border-width: 0 0 1px 0;
	padding: 10px 0px;
	display: flex;
	align-items: flex-start;
}
.cartFormItem .cartItemRow01{
	width: calc(100% - 110px);
	margin-right: 0px;
}
.cartFormItem .cartItemList .nameP{
	font-size: 14px;
}
.cartFormItem .cartItemRow02{
	width: auto;
	margin: 0;
}
.cartFormItem .cartItemRow02 .priceP{
	margin: 2px 0;
}
.cartFormItem .cartItemRow02 .priceP span{
	font-size: 16px;
	font-weight: bold;
	width: 68px;
	display: inline-block;
}
.cartFormItem .cartItemRow02 .priceP font{
	font-size: 14px;
	margin-left: 20px;
}

.checkboxWrap.contactDl{
	margin: 10px 5px -10px!important;
}
.checkboxWrap .md-radio label:before, 
.checkboxWrap .md-radio label:after {
	border-radius: 0;
}

.halfRadio{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px!important;
}

.mw_wp_form_confirm .checkboxWrap.contactDl{
	margin: 17px 10px 0px!important;
}
.mw_wp_form_confirm .halfRadio{
	margin-bottom: 0!important;
}

input[type=text].hiddenIpt{
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
}
.contactDl input[type=date]::-webkit-calendar-picker-indicator{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	opacity: 0;
}


#ui-datepicker-div .ui-datepicker-calendar th:nth-of-type(1){
	color: red;
}
#ui-datepicker-div .ui-datepicker-calendar th:nth-of-type(7){
	color: blue;
}


/*0109*/
.md-radio input[type=checkbox]:checked + label:before{
	background: url(/img/shop/common/check_on.svg)no-repeat;
	background-size: 100% auto;
	border: 0 solid #CCCCCC;
}
.md-radio input[type=checkbox]:checked + label:after{
	content: none;
}

.contactDlhide{
	display: none;
}

/*0203*/
input::-webkit-search-cancel-button{
  display: none;
}
input[type=search]::-ms-clear{
  display: none;
}

.paymentWrap .contactDl.checkboxWrap{
	width: calc(100% - 10px);
	margin: 10px 5px 0px!important;
}

.productItemBtn{
	display: flex;
}
.productItemBtn button.btnLink01{
	width: calc(100% - 60px);
	margin-right: 10px;
}
.favCheckbox{
	width: 50px;
	min-width: 50px;
	position: relative;
}
.favCheckbox input{
	position: absolute;
	opacity: 0;
}
.favCheckbox label{
	display: block;
	width: 50px;
	height: 50px;
	background: url(/img/shop/common/check_fav_no.svg)no-repeat;
	background-size: 100% auto;
}
.favCheckbox input[type=checkbox]:checked + label{
	background: url(/img/shop/common/check_fav_on.svg)no-repeat;
	background-size: 100% auto;
	border: 0 solid #CCCCCC;
}

.itemCategDl{
	margin-top: 35px;
}
.itemCategDl dt{
	font-size: 18px;
	font-weight: 500 !important;
	font-family: 'Roboto Slab', serif !important;
	margin-bottom: 10px;
}
.itemCategUl li a{
	display: inline-block;
	padding-right: 17px;
    background: url(/img/shop/common/arrow_path.svg)no-repeat right center;
    background-size: auto;
    color: #567DBA;
    font-size: 12px;
}
.itemCategUl li a:hover{
	text-decoration: underline;
}
.itemCategUl li li a{
	padding-left: 1em;
}
.itemCategUl li li li a{
	padding-left: 2em;
	background: none;
}

/*20230306*/
.noItem{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90px;
	font-size: 14px;
}
.wp-pagenavi{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.wp-pagenavi a.disabled{
	pointer-events: none;
}
.wp-pagenavi a.disabled img{
	opacity: .5;
}

.countNum02{
	width: 140px;
}
.countNum02 select{
	width: 100%;
	height: 40px;
	padding: 0 33px 0 10px;
	font-family: inherit;
	font-size: 14px;
	border-radius: 2px;
	text-align: right;

	border: 1px solid #CCCCCC;
	outline: none;
	background: url(/img/shop/cart/select.svg)no-repeat right 8px center #fff;
	background-size: 20px auto;
}

.cartItemRow03 .countNum02 select{
	height: 30px;
}
.cartBtn .btnLink01.disabled{
	background-color: #AAAAAA;
	pointer-events: none;
}
.cartBtn+.cartBtn{
	margin-top: 10px;
}


.loginHeader{
	position: fixed;
	/*position: absolute;*/
	top: 0;
	left: 0;
	right: 0;
	z-index: 88;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 46px;
	padding: 0 10px;
	background: #fff;
	border-bottom: 1px solid #ccc;
}
.loginHeaderLogo img{
	width: 100px;
}
.loginHeaderQuit a{
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
}
.loginHeaderQuit a img{
	margin-right: 4px;
	width: 18px;
}

.cartContactTop {
    background: #f2f2f2;
    border: 1px solid #ccc;
}
.cartContactTop .btnP>a {
    border: 1px solid #aaa;
    color: #000;
}
.cartContactTop .btnP>a img{
	width: 100px;
	margin-right: 7px;
}
.cartFormWrap .contactDl input.readonly,
.cartFormWrap .contactDl select.readonly{
	background-color: #F2F2F2;
	border-color: #CCCCCC;
	pointer-events: none;
}
.cartContactTop .btnP>a.loginA{
	background-color: #E05D62;
	border: 0;
	color: #fff;
}
.contactPrice{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	background: #F2F2F2;
	font-size: 14px;
	font-weight: bold;

	margin: 0 5px 8px;
    width: calc(100% - 10px);
}

.noCard{
	margin: 8px 5px;
    width: calc(100% - 10px);
    font-size: 12px;
}
.paymentWrap .contactDl.cardDl02{
    width: calc(100% - 10px);
}
.paymentWrap .selectInlineRadio {
	margin: 0px 5px 8px;
}
.paymentWrap .md-radio{
}

.menuOpen .cartContactMain{
	position: relative;
	z-index: 999;
}
/*fancybox*/
.fancyboxArea{
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 9999;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s;

	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: left;
}

.fancyboxArea.is-open{
	visibility: visible;
	opacity: 1;
	transition: opacity .3s;
}

.fancyboxOverlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: rgba(48,49,57,.2);
}

.fancyboxWrap{
	width: 500px;
	background: #fff;
	border-radius: 10px;
	padding: 0px 20px 20px;
	position: relative;
	overflow-y: auto;
	max-height: 100%;
}


.fancyboxHd{
	padding: 0 20px;
	margin: 0 -20px;
	border-bottom: 2px solid #CAD0DD;
	font-size: 16px;
	font-weight: bold;
	height: 50px;
	display: flex;
	align-items: center;
}
.fancyboxClose{
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	cursor: pointer;
	width: auto;
}
.fancyboxLogo{
	margin: 20px auto;
	text-align: center;
}
.fancyboxLogo img{
	width: 180px;
}
.fancyboxDl{
	margin-bottom: 10px;
}
.fancyboxDl dt{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 7px;
}
.fancyboxDl input{
	width: 100%;
    height: 40px;
    padding: 0 20px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid #CAD0DD;
    background: #E9F0FD;
    border-radius: 8px;
    outline: none;
}
.fancyboxWrap .agreeP{
	text-align: left;
	margin: 18px 0;
}
.fancyboxWrap .agreeP label input[type="checkBox"]{
  -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  -moz-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #979CA9;
	margin-right: 7px!important;
	background: #fff;
	border-radius: 4px;
}
.fancyboxWrap .agreeP label input[type="checkBox"]:checked{
	background: url(/img/shop/common/check_on.svg)no-repeat;
	background-size: 100% auto;
	/*border: 0;*/
}
.fancyboxWrap .fancyboxBtn button{
	border-radius: 8px;
	background: #E05D62;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	font-family: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 40px;
	border: 0;
	margin: 0 auto;
}
.registerLink{
	text-align: center;
	margin-top: 14px;
	font-size: 12px;
}
.registerLink a{
	color: #3074B2;
	text-decoration: underline;
}

.sideNoticeBox{
	margin-bottom: 110px;
}
.sideNoticeUl{
	position: absolute;
	top: calc(100% + 20px);
	left: 0;
	z-index: 2;
	width: 100%;
}
.sideNoticeUl li+li{
	margin-top: 10px;
}
.sideNoticeUl a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background: #D53C3C;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.sideNoticeUl a.greenBtn{
	background: #6DBEA7;
}

/* みんシスが変更 */
.sideNoticeRedTxt{
	position: fixed;
	top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    padding: 0 20px;
    color: #fff;
    background: rgba(224,93,98,.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.sideNoticeGreenTxt{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 45px;
	padding: 0 20px;
	color: #fff;
	background: rgba(109,190,167,.8);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.sideNoticeRedTxt.is_active, .sideNoticeGreenTxt.is_active{
    opacity: 1;
    pointer-events: auto;
}

.sideNoticeUl a.greenBtn+.sideNoticeTxt{
    background: rgba(109,190,167,.8);
}

/*error*/
.contactDl .error input[type=text],
.contactDl .error input[type=tel],
.contactDl .error input[type=email],
.contactDl .error input[type=date],
.contactDl .error textarea{
	background: #F8E9E9;
}
.errorTxt{
	font-size: 12px;
	color: #D53C3C;
	margin-top: 5px;
}


/*notFound*/
.notFoundWrap{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	background: #F2F2F2;
	color: #666666;
}
.notFoundImg img{
	width: 180px;
}
.notFoundTxt{
	font-size: 22px;
	line-height: 1.33;
	font-weight: bold;
}

.wp-pagenavi+.wp-pagenavi{
	margin-top: 15px;
}

.favoriteBtn {
	margin-top: 20px;
}

.favoriteBtn button {
	width: 100%;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}

.favoriteBtn button span.checked_no,
.favoriteBtn button.is-favorite span.checked_on {
	width: 100%;
	height: 48px;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	display: flex;

}

.favoriteBtn button.is-favorite span.checked_no,
.favoriteBtn button span.checked_on {
	display: none;
}

.favoriteBtn button span.checked_no:before {
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/common/icon_fav_no.svg) center center no-repeat;
	background-size: cover;
	margin-right: 8px;
	content: '';
}

.favoriteBtn button span.checked_on:before {
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/common/icon_fav_on.svg) center center no-repeat;
	background-size: cover;
	margin-right: 8px;
	content: '';
}

.errorWrap {
	background: #F2F2F2;
	min-height: 100vh;
}

.errorPage {
	padding: 50px 20px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.714;
}

.errorPage .logoTit {
	margin-bottom: 24px;
  	line-height: 1;
	text-align: center;
}

.errorPage .logoTit img {
	width: 130px;
}

.errorPage h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #666666;
  font-weight: bold;
  margin-bottom: 10px;
	text-align: center;
}

.errorPage .btnList {
  margin-top: 40px;
}

.errorPage .btnList a {
  max-width: 250px;
  height: 50px;
  background: #767B89;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #535A65;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  background: none;
}

.cartThanksP04 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.cartThanksP04 a + a {
	margin: 10px 0 0 0;
}

.topContact {
	display: none;
}