a {
	color: inherit;
	text-decoration: none;
}

strong {
	font-weight: 700;
}

em{
	font-style: normal;
}

/**************************************
wrap
**************************************/
#outerWrap{
	width: 100%;
	margin: 0 auto;
	padding: 0 0 0 0;
    /* overflow: hidden; */
}

#outerWrap.lock{
	position: fixed;
	overflow: hidden;
	top: 0;
}
#outerWrap.spLock{
	position: fixed;
	overflow: hidden;
	top: 0;
}

/**************************************
btn
**************************************/
.btnBlack>a,
.btnBlack>span,
.btnBlack>button,
.btnBlack>input {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 5rem;
	background: #505050;
	font-size: 1.3rem;
	font-family: var(--hirakaku);
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	color: #FFFFFF;
}


.btnBlue>a,
.btnBlue>span,
.btnBlue>button,
.btnBlue>input {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 5rem;
	background: var(--bg-primary);
	padding: 0 2rem 0;
	font-size: 1.3rem;
	font-family: var(--hirakaku);
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-decoration: none;
	color: #FFFFFF;
}

.btnBlue.large>a,
.btnBlue.large>span,
.btnBlue.large>button {
	height: 8rem;
}


.btnGray>a,
.btnGray>span,
.btnGray>button,
.btnGray>input {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 5rem;
	background: #AFAFAF;
	font-size: 1.5rem;
	font-family: var(--hirakaku);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	color: #FFFFFF;
}

/**************************************
title
**************************************/
.sectionTTL {
	display: block;
	margin-bottom: 2.2rem;
	text-align: center;
}

.sectionTTL>em {
	display: block;
	height: 2.65rem;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
}

.sectionTTL>em>img {
	display: block;
	height: 100%;
	width: auto;
	margin: 0 auto;
}

.sectionTTL>span {
	display: block;
	margin-top: 1.2rem;
	font-size: 1.2rem;
	color: #7C7B7B;
	line-height: 1;
	letter-spacing: 0.1em;
}

.mainTTL {
	display: block;
	text-align: center;
	margin-bottom: 3.125rem;
}

.mainTTL .mainTTL__en {
	display: block;
	font-size: 1.875rem;
	font-family: var(--font-eng);
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.08em;
	text-align: center;
	color: var(--color-font-primary);
	line-height: 1;
}

.mainTTL .mainTTL__jp {
	display: block;
	font-size: 0.875rem;
	font-family: var(--font-primary);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-align: center;
	color: var(--color-font-primary);
	line-height: 1.5;
}

.subTTL {
	display: block;
	width: 100%;
	margin-bottom: 1.5rem;
	padding: 0.2rem 1rem 0 1.5rem;
	text-align: left;
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
	color: #333333;
	position: relative;
}

.subTTL::before {
	content: '';
	display: block;
	width: 0.5rem;
	height: calc(100% - 0.6rem);
	background: var(--bg-primary);
	position: absolute;
	left: 0;
	top: 0.3rem;
}

/**************************************
.noProduct
**************************************/
.noProduct {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 40vh;
	margin: 4rem auto 0;
	border: 2px solid #707070;
	border-radius: 0.5rem;
	font-size: 1.8rem;
	text-align: center;
}

/**************************************
.breadcrumbs
**************************************/
/* .breadcrumbs {
	display: block;
	width: 100%;
	padding: 0.9rem 1rem 0.9rem;
	background: #F5F5F5;
}

.breadcrumbs>ol {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: stretch;
	align-items: stretch;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	width: 100%;
	margin: 0 auto;
}

.breadcrumbs>ol>li {
	display: block;
	font-size: 1.3rem;
	line-height: 1.2;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.breadcrumbs>ol>li:nth-last-of-type(1) {
	font-weight: 700;
}

.breadcrumbs>ol>li::after {
	content: '/';
	padding: 0 0.5em;
}

.breadcrumbs>ol>li:nth-last-of-type(1)::after {
	display: none;
}

.breadcrumbs>ol>li a {
	text-decoration: none;
	color: #333333;
} */

/**************************************
.productList staffFavoriteList
**************************************/
.productList{
	display: block;
	width: 100%;
	padding: 0 0;
	margin: 0 auto;
}

.productList > ul.listView{
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-justify-content: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.productList > ul.listView > li{
	display: block;
    height: auto;
    width: 48.59154929577465%;
    margin-right: 2.8169014084507%;
	position: relative;
}
.productList > ul.listView > li:nth-of-type(2n){margin-right: 0;}
.productList > ul.listView > li:nth-of-type(n + 3){margin-top: 4rem;}

.productList > ul.listView > li > a{
	display: block;
	text-decoration: none;
	color: #333333;
}

.productList > ul.listView > li > a > figure{
    display: block;
    width: 100%;
	border: 1px solid #E0E0E0;
    margin-bottom: 1.3rem;
    position: relative;
	overflow: hidden;
}

.productList > ul > li > a > figure::after{
	content: '';
	display: block;
	padding-top: 100%;
}

.productList > ul > li > a > figure > img{
	display: block;
	width: 100%; height: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.productList > ul > li > a > dl.text{ display: block;}

.productList > ul > li > a > dl.text > dt{
	display: block;
	min-height: 2rem;
	margin-bottom: 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: left;
    line-height: 1.2;
    letter-spacing: 0.02em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
}

.productList > ul > li > a > dl.text > dt > em{margin-right: 0.5em;}

.productList > ul > li > .btnDelete > a {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 3rem;
	background: #FFFFFF;
	border: 1px solid #022363;
	padding: 0 2rem 0;
	font-size: 1.2rem;
	font-family: var(--hirakaku);
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-decoration: none;
	color: #022363;
}

/**************************************
.error
**************************************/
#errInfoSection {
	display: block;
	padding: 3rem 1.5rem 8rem;
}

#errInfoSection .errInfo {
	display: block;
	width: 100%;
	margin: 0 auto 4rem;
	padding: 3rem 2rem;
	border: 1px solid #707070;
	border-radius: 0.8rem;
	text-align: left;
}

#errInfoSection .errInfo>.hErrorContent {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

#errInfoSection .errInfo>.errDetail {
	display: block;
	color: #fe3a3a;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
}


#errInfoSection .bottomBtnArea {
	display: block;
	width: 30rem;
	margin: 3rem auto 0;
}

#errInfoSection .bottomBtnArea>ul {
	display: block;
}

#errInfoSection .bottomBtnArea>ul>li+li {
	margin-top: 1rem;
}

/**************************************
toolTip
**************************************/
#addFavoriteTip {
	display: none;
	margin: 0px;
	padding: 3rem 1.5rem;
	width: 90%;
	border-radius: 1rem;
	background-color: rgba(0, 0, 0, .4);
	overflow: hidden;
	position: fixed;
	font-size: 1.4rem;
	text-align: center;
	z-index: 2000;
	color: #FFFFFF;
	top: calc(50% - 4rem);
	left: calc(5%);
}

#addFavoriteTip .btnBlack {
	display: block;
	width: 18rem;
	margin: 2rem auto 0;
}

#addFavoriteTip .btnBlack>a {
	height: 4rem;
}



/**************************************
btnPageTop
**************************************/
#btnPageTop {
	display: block;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

#btnPageTop>a {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	-webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, .16);
	        box-shadow: 0 0 2rem rgba(0, 0, 0, .16);
	position: absolute;
	right: 0;
	bottom: -2.75rem;
	z-index: 10;
	webkit-transition: opacity 0.2s ease, transform 0.2s ease;
	-o-transition: opacity 0.2s ease, transform 0.2s ease;
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	transition: opacity 0.2s ease, transform 0.2s ease;
	transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
	-webkit-transform: translate(0, 200px);
	-ms-transform: translate(0, 200px);
	    transform: translate(0, 200px);
}



#btnPageTop.view>a {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	    transform: translate(0, 0);
}


#btnPageTop.fixed>a {
	position: fixed;
	right: 0;
	bottom: 3rem;
}

#btnPageTop>a>img {
	display: block;
	width: 1.3rem;
	height: 1.4rem;
}


/**************************************
orverRide
**************************************/
.pcView {
	display: none !important;
}
