@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500&family=Roboto:wght@100;300;400;500;700&display=swap');


/* animation
--------------------------------------------------------------------*/

@keyframes rubberBand {
	from { transform: scale3d(1, 1, 1); }
	30% { transform: scale3d(1.25, 0.75, 1); }
	40% { transform: scale3d(0.75, 1.25, 1); }
	50% { transform: scale3d(1.15, 0.85, 1); }
	65% { transform: scale3d(.95, 1.05, 1); }
	75% { transform: scale3d(1.05, .95, 1); }
	to { transform: scale3d(1, 1, 1); }
}
@-webkit-keyframes rubberBand {
	from { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
	30% { -webkit-transform: scale3d(1.25, 0.75, 1); transform: scale3d(1.25, 0.75, 1); }
	40% { -webkit-transform: scale3d(0.75, 1.25, 1); transform: scale3d(0.75, 1.25, 1); }
	50% { -webkit-transform: scale3d(1.15, 0.85, 1); transform: scale3d(1.15, 0.85, 1); }
	65% { -webkit-transform: scale3d(.95, 1.05, 1); transform: scale3d(.95, 1.05, 1); }
	75% { -webkit-transform: scale3d(1.05, .95, 1); transform: scale3d(1.05, .95, 1); }
	to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
}
/* PC/SP切り替え
--------------------------------------------------------------------*/

@media all and (min-width: 768px) { .d-sp{ display:none!important; } }
@media all and (max-width: 767px) { .d-pc{ display:none!important; } }




/* header
----------------------------------------------- */
#header{
	position: sticky;
	left: 0;
	top: 0;
	width:100%;
	background-color: #FFF;
	border-bottom: solid 1px #DDD;
	padding: 0;
	box-sizing: border-box;
	transition: background-color .3s ease;
	z-index: 50;
}
#header:hover{
	background-color: rgb(255 255 255 / 100%);
}
#header.fixed {
	background-color: rgb(255 255 255 / 100%);
}
#header a{ text-decoration:none;display: block; }

.header-inner{
	display:flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin:0 auto;
}
/* header-inner */
.header-inner .logo{
	margin-right: 65px;
	transition: .3s all;
}
.header-inner .logo a {
	padding: 8px;
	margin-left: -8px;
}
.header-inner .logo img{
	width: 100%;
	min-width: 260px;
	transition: 0.3s;
}
.header-nav {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.header-menu{
	display:flex;
	align-items: center;
	flex-wrap: wrap;
	line-height: 1;
	font-size:15px;
	width: 100%;
	max-width: 330px;
	justify-content: space-between;
}
.header-menu__item {
	position: relative;
	padding: 15px 0;
}
.header-menu__item:last-child {
	margin-right: 10px;
}
.header-menu__item.header-menu--is-megamenu {
	position: static;
}
.header-menu__item > a {
	position: relative;
	display:block;
	padding:10px 5px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.08em;
}
.header-menu__item > a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
}
.header-menu__item:hover > a:after{
	transition:.3s;
	transform: scaleX(1);
}

/* header-navi */
.header-navi{
	display:flex;
	margin:0 3px 0 auto;
	align-items: center;
	position: relative;
}
.header-navi .header-navi__item {
	margin-left: 20px;
}
.header-navi .header-navi__item.key {
	margin-right: 2px;
}
.header-navi .header-navi__item.global {
	margin-right: 4px;
	margin-left: 5px;
}
.header-navi .header-navi__item.fav {
	margin-right: -5px;
}
.header-navi .header-navi__item > a,
.header-navi .header-navi__item .header-menu--has-dropdown > a {
	padding: 0 5px;
    height: 65px;
    display: flex !important;
    align-items: center !important;
}
.header-navi__item img{width:26px;height: 26px;}
.header-navi__item.searchBtn img {
    vertical-align: sub;
}
.header-navi__item.cart{
	position:relative;
}
.header-navi__item.cart .count {
	position: absolute;
	left: 21px;
	bottom: 15px;
	width: 15px;
	height: 15px;
	margin: 0;
	background: #ff0078;
	font-size: 10px;
	text-align: center;
	line-height: 15px;
	border-radius: 50%;
	color: #fff;
	box-sizing: border-box;
}

/* header-menu__dropdown */
.header-menu__dropdown {
	position: absolute;
	left: 0;
	margin: 15px 0 0 0;
	z-index: 5;
	display: block;
	visibility: hidden;
	background-color: #FFF;
	border: solid 1px #666;
	box-sizing: border-box;
	min-width: 150px;
	padding: 10px 20px 10px;
	line-height: 1.5;
	box-shadow: 0 10px 10px #78787812;
	transform: translateY(-12px);
}

.hm-cat .header-menu__dropdown {
	min-width: 300px;
}

.header-menu__dropdown:before {
	content: "";
	position: absolute;
	top: -18px;
	left: 25%;
	margin-left: -15px;
	border: 9px solid transparent;
	border-bottom: 9px solid #333;
}
.hm-cat .header-menu__dropdown:before {
	left: 17%;
}


.header-navi__item .header-menu__dropdown {
	margin-top: 0;
}
.header-menu__dropdown:not(.megamenu) {
	left: 0%;
	transform: translateY(-12px) translateX(0%);
}
.megamenu {
	transform: none;
	opacity: 0;
	transition: all .3s cubic-bezier(.2,.06,.05,.95);
	transition-delay: .3s;
}
.header-menu--has-dropdown {
	position: relative;
}
.header-menu--has-dropdown:hover .header-menu__dropdown {
	display: block;
	visibility: visible;
	transform: translateZ(0);
	transition: all .3s cubic-bezier(.2,.06,.05,.95);
}
.header-menu--has-dropdown:hover .header-menu__dropdown:not(.megamenu) {
	transform: translateZ(0) translateX(0%);
}
.user-menu .header-menu__dropdown {
	transform: translateY(-12px);
}
.user-menu .header-menu--has-dropdown:hover .header-menu__dropdown {
	transform: translateZ(0);
}
.header-menu--has-dropdown:hover .megamenu {
	opacity: 1;
	transition-delay: 0s;
}
.header-menu--has-dropdown a {
	opacity: 1;
	transition: none;
}
.header-menu__dropdown > li {
	position: relative;
}
.header-menu__dropdown-inner {
	padding: 0 40px;
	margin: 0 auto 20px;
	box-sizing: border-box;
}
.header-category {
	display: flex;
	justify-content: center;
}
.header-category__categorylist {
	margin-right: 120px;
	margin-left: 100px;	
}
.header-category__categorylist .header-menu__dropdown-item {
	width: 90px;
}
.header-category__itemList {
	column-count: 3;
	column-gap: 0;
}
.header-menu__dropdown-item {
	/* max-width: 175px; */
	font-size: 13px;
	margin: 12px 0;
}
.header-menu__dropdown-item a {
	padding: 4px 0;
	white-space: nowrap;
}
.megamenu .header-menu__dropdown-item a {
	padding: 4px 0;
	white-space: normal;
}
.header-category__itemList .header-menu__dropdown-item {
	margin-right: 70px;
}

.user-menu .header-menu__dropdown {
	left: auto;
	right: -105px;
}
.user-menu .header-menu__dropdown-item {
	max-width: 100%;
	width: 255px;
	padding: 0 20px;
	box-sizing: border-box;
}
.user-menu.noLogin {
	margin-left: 5px;
}
.user-menu.noLogin .header-menu__dropdown {
	right: -70px;
}
.user-menu.noLogin .header-menu__dropdown-item {
	width: 145px;
}
.user-menu .usrInfo {
	margin-bottom: 35px;
}
.user-menu .usrInfo dt {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #bbb;
}
.user-menu .usrInfo dd {
	margin-top:10px;
	font-weight:normal;
}
.user-menu .usrInfo dd a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.user-menu .usrInfo dd span {
	line-height:1;
	font-size:15px;
	font-weight: bold;
	float: right;
}
.user-menu .usrInfo dd .unit {
	margin-left:5px;
	font-size:12px;
	font-weight:normal;
}
.user-menu a {
	padding: 0 !important;
}



@media all and (max-width: 1190px) {
	.header-category__categorylist {
		margin-right: 40px;
		margin-left: 0px;
	}
	.header-category__itemList .header-menu__dropdown-item {
		margin-right: 15px;
	}
	.header-menu {
		padding: 20px 0 0;
	}
	.header-menu__item {
		padding: 0px 0 12px;
	}
	.header-menu__item > a {
		padding: 0px 5px 10px;
	}
	.header-menu__dropdown {
		margin: 12px 0 0 0;
	}
}

/* footer
----------------------------------------------- */
#footer{
	padding-top: 180px;
	width:100%;
	background: #fff;
	box-sizing:border-box;
}
.footer-bg {
	background: #000;
}
#footer .footer-inner{
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 110px 0 90px;
	justify-content: space-between;
	/* align-items: center; */
	box-sizing: border-box;
	color: #fff;
}
.footer__item {
	display: flex;
	flex-direction: column;
}
.footer__item.d-pc {
	flex-direction: row;
}
.footer__head {
	margin-bottom: 23px;
}
.footer__head .head {
	width: 260px;
	margin-bottom: 20px;
}
.footer__head .head img {
	width: 100%;
	margin-left: 0;
	transition: .3s;
}
#footer .copyright {
	width:100%;
	font-size: 12px;
	color:#999;
	line-height:1;
	letter-spacing: 0.08em;
	margin: 100px 0 0;
}
/* sns-link */
.footer__sns-list {
	display: flex;
	justify-content: space-between;
	width: 165px;
}
.footer__sns-list a {
	width: 23px;
}
.footer__sns-list a img {
	width: 100%;
}

/* footer-menu */
.footer__menu:last-child {
	margin-right: 10px;
	margin-left: 85px;
}
.footer__menu a {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	transition: .2s;
	letter-spacing: 0.05em;
}
.footer__menu a:hover{
	opacity: .7;
}
.footer__menu dt {
	margin-bottom: 20px;
	font-size: 17px;
	letter-spacing: 0.1em;
	font-weight: 500;
}
.footer__menu dd:not(:last-child) {
	margin-bottom: 10px;
	font-family: 'Roboto','Noto Sans JP', sans-serif;
}

#footer .pageTop{
	position:fixed;
    right: 35px;
    bottom: 110px;
	width:43px;
	height:43px;
	font-size: 0;
	line-height: 0;
	cursor:pointer;
	z-index:50;
	transform: translate3d(0,0,0);
	transition:.5s;
	visibility: hidden;
	opacity: 0;
}
#footer .pageTop a{
	display:block;
	width:100%;
	height:100%;
	border-radius:50%;
	border:1px solid #656565;
	background:rgba(255,255,255,.69);
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
}
#footer .pageTop:hover{
	opacity:.7;
}
#footer .pageTop:after{
	content:'';
	position: absolute;
	left: 17px;
	top: 19px;
	display: block;
	opacity: 0;
	visibility: hidden;
	width: 7px;
	height: 7px;
	transform: rotate(-45deg);
	border-top: 2px solid #656565;
	border-right: 2px solid #656565;
}
#footer .pageTop.is-show,
#footer .pageTop.is-show:after,
#footer .pageTop a.is-show {
	opacity: 1;
	visibility: visible;
	transition: all .5s;
}
/* contents
----------------------------------------------- */
.contents{
	max-width:1200px;
	padding:0 43px;
	margin:0 auto;
	box-sizing: border-box;
}


/* お店ページに会員カート情報表示（PC_header02） */
.item_cnt {
  background: #717171;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  display: block;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: -15px;
  text-align: center;
  top: 17px;
  width: 20px;
}

/* お店ページに会員カート情報表示（非表示設定） */
.member_info_cart_info {
    display: none;
}

.member_info_cart_info .account_guest {
    display: none;
}

.member_info_cart_info .rank_name_0 {
    display: none;
}

.member_info_cart_info .rankup_none {
    display: none;
}

.member_info_cart_info .nrank_prc_0 {
    display: none;
}

.member_info_cart_info .nrank_cnt_0 {
    display: none;
}

.member_info_cart_info .firstname_guest {
    display: none;
}

.member_info_cart_info .more_maru_1 {
    display: none;
}

.member_info_cart_info .free_shipping_0 {
    display: none;
}

.member_info_cart_info .shipping_box_none {
    display: none;
}

.member_info_cart_info .pointmember_none {
    display: none;
}

.member_info_cart_info .rankmember_none {
    display: none;
}

.member_info_cart_info .memberrank_none_none {
    display: none;
}

.member_info_cart_info #member_info_none_none {
    display: none;
}



/*--------------------------------------------------------------------
 tablet & medium
--------------------------------------------------------------------*/
@media all and (max-width: 980px) { 
	.modalWin{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width:calc(100% - 30px);
	}
 }
@media all and (max-width: 1200px) {
	.header-inner{
    width: 95%;
}
}

@media all and (max-width: 1120px) {
	.header-inner .logo {
		margin-right: 15px;
	}
	.header-inner{
    width: 95%;
}
	.header-nav{
    justify-content: space-between;
}
	.header-menu {
		width: auto;
		max-width: 470px;
		display: flex;
		justify-content: center;
		width: 60%;
	}
	.header-navi{
    margin: 0;
}
	.header-menu__item {
		margin-right: 0;
		width: 20%;
		min-width: 88px;
		margin: 0 2%;
	}
	.header-menu__item > a {
		text-align: center;
		white-space: nowrap;
	}
	.hm_new {
		width: 26%;
		margin: 0px 5.3%;
	}
	.hm_pre { 
		width: 23%;
		margin: 0px 5.3%;
	}
}
@media all and (max-width: 1020px) {
	#header {
		padding-right: 20px;
		padding-left: 20px;
	}
	.header-inner {
		justify-content: space-between;
		width: 100%;
	}
	.header-inner .logo {
		margin-right: 5px;
	}
	.header-inner .logo img {
		width: 100%;
		min-width: 180px;
	}
	.footer__head .head {
		width: 266px;
	}
	.footer__menu:last-child {
		margin-left: 40px;
	}

	.header-menu {
		max-width: 440px;
		/* margin: 0 3px 0 auto; */
	}
	.header-menu__dropdown-inner {
		padding: 0 10px 0 40px;
	}

}
@media all and (max-width: 980px) { 
	.footer__menu:last-child{
		width: auto;
		margin: 0;
		/* width: 70%; */
	}
}
@media all and (max-width: 830px) {
	.header-menu__item{
    width: 10%;
    margin: 0;
}
	.header-menu__item > a{
    font-size: 13px;
}
	.header-menu {
		max-width: 360px;
		width: 70%;
	}
	.hm_new,.hm_pre {
		margin: 0px 6.3%;
	}
	.hm_cate { 
		margin: 0 2%;
	}
	.hm_gen { 
		margin: 0 2%;
	}
	.hm_con {
		margin: 0 2%;
	}
}
/*--------------------------------------------------------------------
 sp 
--------------------------------------------------------------------*/
@media all and (max-width: 767px) { 



@media all and (max-width: 767px) { 
/* common
----------------------------------------------- */

	/* -- header -- */
	#header{
		width: 100%;
		display:flex;
		align-items: center;
		height: 50px;
		padding: 0px 10px;
		margin:0;
		box-sizing:border-box;
		z-index: 2;
	}
	#header .header-inner{
		width:100%;
		min-width:unset;
		padding:0;
	}
	.header-inner .logo {
		margin: 0;
	}
	.header-inner .logo a {
		margin-left: -5px;
	}
	.header-inner .logo img{
		width: 180px;
	}
	.header-nav {
		width: auto;
		margin-left: auto;
		margin-right: 35px;
	}
	.header-navi {
		margin: 0;
	}
	.header-navi .header-navi__item {
		margin: 0 10px 0 0;
	}
	.header-navi .header-navi__item.cart {
		margin-bottom: 1px;
	}
	.header-navi__item img {
		width: 20px;
		height: 20px;
	}
	.header-navi__item.cart .count {
		left: 18px;
		bottom: 1px;
	}
	.header-navi .header-navi__item a {
		padding: 5px;
		height: auto;
	}
	#header .side-navi {
		position: relative;
		display:block;
		width: 20px;
		height: 20px;
		padding: 6px 15px 6px 5px;
		margin-right: -11px;
		cursor: pointer;
		overflow: hidden;
		order:1;
		transition: all 1s 0.4s ease;
	}
	#header .side-navi:focus { outline:none; }
	#header .side-navi:before,
	#header .side-navi:after {
		content: '';
		position: absolute;
		top: 6px;
		left: 10px;
		width: 18px;
		height: 2px;
		background: #000;
		transition: all .4s ease;
		backface-visibility: hidden;
		overflow: hidden
	}
	#header .side-navi:after {
		top: auto;
		bottom: 6px;
	}
	#header .side-navi span {
		position: absolute;
		top: 15px;
		left: 10px;
		width: 18px;
		height: 2px;
		background: #000;
		transition: all .4s ease;
		backface-visibility: hidden;
		overflow: hidden
	}



	/* -- footer -- */
	#footer{padding-top: 50px;}

	#footer .footer-inner {
		width:auto;
		padding: 50px 20px 20px;
		justify-content: center;
		display: block;
	}
	.footer__item {
		align-items: flex-start;
		flex-direction: column-reverse;
	}
	.footer__item+.footer__item{
    display: flex;
    justify-content: flex-start;
    align-items: unset;
    flex-direction: unset;
}
	.footer__head {
		margin-bottom: 0;
		text-align: center;
	}
	.footer__head .head {
		width: 70%;
		margin-bottom: 20px;
	}
	.footer__sns-list {
		width: 200px;
	}
	.footer__sns-link {
		margin-bottom: 50px;
	}
	.footer__sns-link a {
		width: 33px;
	}
	/* pageTop */
	#footer .pageTop{
		right: 15px;
		bottom: 80px;
	}



	/* -- contents -- */
	.contents{
		min-width:unset;
		width:100%;
		padding:0 15px;
		box-sizing:border-box;
	}
	

/* Navimenu（SPのみ）
----------------------------------------------- */
	.navi-wrapper {
		display:block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		pointer-events: none;
		z-index: 1001;
	}
	/* overlay */
	.navi-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.34);
		opacity:0;
		pointer-events: none;
		transform: translatez(0);
	}
	.navi-overlay .dispChange {
		position: absolute;
		top: 12px;
		right: 12px;
		width: 23px;
		height: 23px;
		opacity: 0;
		transform: translateY(-50%);
	}
	.navi-overlay .dispChange:before,
	.navi-overlay .dispChange:after {
		content: "";
		position: absolute;
		top: 22px;
		left: -1px;
		width: 25px;
		height: 1px;
		background: #fff;
		transform: rotate(45deg);
		transition: .3s;
		border-radius: 10px;
	}
	.navi-overlay .dispChange:after {
		transform: rotate(-45deg);
	}
	/* navi */
	.navi {
		display:block;
		position: relative;
		top: 0;
		right: -100.01%;
		width: 87%;
		height: 100%;
		background: #fff;
		font-size: 12px;
		transform: translate3d(0,0,0);
		transition: .5s;
		backface-visibility: hidden;
		will-change: transform, opacity;
	}
	.navi-inner {
		position: relative;
		height: 100%;
		font-size: 12px;
		overflow-y: auto;
		overscroll-behavior-y: contain;
		-webkit-overflow-scrolling: touch;
	}
	/* open */
	.open body,
	.searchOpen body { overflow:hidden }

	.open .navi-wrapper,
	.searchOpen .navi-wrapper {
		position: fixed;
		height: 100%;
		pointer-events: initial;
	}
	.open .navi-overlay {
		opacity:1;
		pointer-events: initial;
	}
	.open.disable .navi-overlay {
		background:rgba(34,34,34,.2);
	}
	.navi-wrapper .navi.navi-open {
		transform: translateX(-100%);
	}
	/* navi-head */
	.navi-head{
		height: 50px;
		align-items: center;
	}
	.navi-head .close{
		position: absolute;
		top: 7px;
		right: 7px;
		display: block;
		width: 22px;
		height: 22px;
		padding:6px 8px;
		line-height: 0;
		cursor: pointer;
		text-indent: -9999px;
		overflow: hidden;
	}
	.navi-head .close:focus { outline:none; }

	.navi-head .close:before,
	.navi-head .close:after {
		content: '';
		position: absolute;
		top: 6px;
		left: 10px;
		width: 18px;
		height: 2px;
		background: #000;
		transition: all .4s 0.4s ease;
		backface-visibility: hidden;
		transform-origin: left top;
		overflow: hidden;
	}
	.navi-head .close:after {
		top: auto;
		bottom: 6px;
		transform-origin: left bottom;
	}
	.navi-head .close span {
		position: absolute;
		top: 16px;
		left: 10px;
		width: 18px;
		height: 2px;
		background: #000;
		transition: all .4s 0.4s ease;
		backface-visibility: hidden;
		overflow: hidden;
	}
	.navi-open .navi-head .close:before {
		top: 8px;
		left: 11px;
		width: 25px;
		height: 2px;
		transform:rotate(45deg);
	}
	.navi-open .navi-head .close:after {
		left: 11px;
		bottom:8px;
		width: 25px;
		height: 2px;
		transform:rotate(-45deg);
	}
	.navi-open .navi-head .close span{
		opacity:0;
	}
	.navi-head .logo {
		flex: 1;
		text-align:center;
	}
	.navi-head .logo a{
		display:inline-block;
		padding: 15px 10px;
	}
	.navi-head .logo img{
		width:178px;
	}

	/* sidemenu */
	#sidemenu {
		display: block;
		padding: 0 20px 50px;
	}
	#sidemenu a {
		text-decoration: none;
		display: block;
	}
	.navi__iconMenu {
		width: 100%;
		max-width: 260px;
		margin: 15px auto 0;
	}
	.navi__iconMenu ul {
		display: flex;
		flex-wrap: wrap;
	}
	.navi__iconMenu li {
		display: flex;
		align-items: center;
		justify-content: center;
		width: calc(100% / 3);
		margin-bottom: 4px;
	}
	.navi__iconMenu li a {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		width: 55px;
		margin: 0 auto;
		padding: 5px 15px;
		font-size: 11px;
		line-height: 1.2;
		text-align: center;
	}
	.navi__iconMenu li img {
		margin-bottom: -3px;
	}
	.navi__iconMenu li.cart{
		position:relative;
	}
	.navi__iconMenu li .count {
		position: absolute;
		right: 25px;
		bottom: 21px;
		width: 15px;
		height: 15px;
		margin: 0;
		background: #ff0078;
		font-size: 10px;
		text-align: center;
		line-height: 15px;
		border-radius: 50%;
		color: #fff;
		box-sizing: border-box;
	}
	.navi__tabList {
		font-size: 11px;
		letter-spacing: 1px;
		background-color: #fff;
		margin-top: 30px;
	}
	.navi__tabList ul {
		display: flex;
		height: 30px;
		justify-content: space-between;
	}
	.navi__tabList li {
		width: calc((100% / 3) - 4px);
	}
	.navi__tabList li a {
		height: 30px;
		line-height: 30px;
		border-bottom: 1px solid #000;
		color: #000;
		text-align: center;
	}
	.navi__tabList li.selected a {
		color: #fff;
		background-color: #000;
	}
	.navi__cateList {
		background-color: #F5F5F5;
	}
	#itemList { display: block; }

	#categoryList,
	#genderList {
		display: none;
	}
	.navi__cateList ul {
		padding: 20px 22px;
		box-sizing: border-box;
	}
	.navi__cateList li:not(:last-child) {
		margin-bottom: 10px;
	}
	#categoryList.navi__cateList ul {
		column-count: 2;
		column-gap: 10px;
	}
	.navi__menu {
		padding: 20px 0;
		border-top: 1px solid #BBB;
	}
	.navi__menu li:not(:last-child) {
		margin-bottom: 10px;
	}
	.navi__menu.myFontB {
		font-size: 13px;
	}
	.navi__sns-list {
		display: flex;
		justify-content: space-between;
		width: 130px;
		margin: 40px auto 0;
	}
	.navi__sns-link a {
		width: 26px;
	}
	.navi__sns-list a img {
		width: 100%;
	}
}
}










/* add */
.column4{
	transform: translate(0, 20%);
	opacity: 0;
	transition: 1s;
}
.column4.show {
  	transform: translate(0, 0);
  	opacity: 1;
}
.column4:nth-of-type(4n+2){
	transition-delay: 0.1s;
}
.column4:nth-of-type(4n+3){
	transition-delay: 0.2s;
}
.column4:nth-of-type(4n+4){
	transition-delay: 0.3s;
}
#main-column .news h2,
#main-column .area-news h2{
	font-size: 24px;
	letter-spacing: 0.12em;
	font-weight: 500;
	border-top: none;
	position: relative;
	display: inline;
}



#main-column .news h2:before,
#main-column .area-news h2:before{
	content:'';
	position: absolute;
	left: -50px;
	top: 0;
	background: #333;
	width: 2px;
	height: 100%;
}

#main-column .news h2:after,
#main-column .area-news h2:after{
	content:'';
	position: absolute;
	right: -50px;
	top: 0;
	background: #333;
	width: 2px;
	height: 100%;
}




#main-column .news{text-align: center;margin: 120px 0 0;}
#main-column .news-contents {
    margin: 60px auto 0;
    padding: 0;
    width: 1000px;
}
#main-column .area-news {
    margin: 120px 0 0;
    text-align: center;
}
#content-wplist {
    margin-top: 60px;
    text-align: center;
}
dl.news-box{
    padding: 20px 0;
}
#main-column .news-contents .text{
    text-align: left;
}
.top-bnr {
    max-width: 1200px;
    margin: 120px auto 0;
}

.freeArea2 .free-contents .top-bnr ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.freeArea2 .free-contents .top-bnr ul li {
    list-style-type: none;
}
div#btn-wplist {
    margin: 40px 0 0;
}
div#btn-wplist a {
    width: 200px;
    margin: 0 auto;
    display: block;
    border: solid 1px #333;
    padding: 15px 0;
    letter-spacing: 0.12em;
    font-size: 15px;
    transition: .3s;
}
#btn-wplist a:hover{
    background: #000;
    color: #FFF;
    border: solid 1px #000;
    transition: .3s;
}
.header-inner #search-wrap{
    position:absolute;
    top: 35px;
    left: 20px;
    padding: 15px;
    z-index: 999999999;
    /* opacity: 0; */
    transition: all 0.3s;
    width: 300px;
    pointer-events: none;
}
.header-inner #search-wrap.panelactive{
	opacity: 1;
	z-index: 3;
	width: 300px;
	padding: 10px 12px;
	top: 65px;
	left: 20px;
	background: #FFF;
	border: solid 1px #666;
	box-sizing: border-box;
	pointer-events: auto;
}
.header-inner #search-wrap #searchform{
	display: none;
}
.header-inner #search-wrap.panelactive #searchform{
	display: flex;
	align-items: center;
}
.header-inner #search-wrap input{
	-webkit-appearance:none;
	outline: none;
	color: #333;
	width: 20px;
	height: 20px;
}
.header-inner #search-wrap input[type="text"] {
	width: 244px;
	border: none;
	/* border-bottom: 1px solid #666; */
	transition: all 0.3s;
	letter-spacing: 0.05em;
	height: auto;
	padding: 5px 3px;
	background: none;
	margin: 0 10px 0 0;
}
.header-inner #search-wrap input[type="text"]::placeholder {
  color: #bebcb1;
}
.header-navi__item.searchBtn {
    cursor: pointer;
}
.no-item {
    text-align: center;
    line-height: 200%;
    font-size: 15px;
    letter-spacing: 0.03em;
    margin: 50px 0;
}

.no-item a {
    text-decoration: underline;
}
#itemDetail-wrap #box-description-images nav {}

#itemDetail-wrap #box-description-images nav ul {
    max-width: 100%;
    margin: 30px auto 10px;
}

#itemDetail-wrap #box-description-images nav ul li {
    text-align: center !important;
    width: 32%;
    margin-right: 2%;
}
#itemDetail-wrap #box-description-images nav li:nth-child(3){
    margin-right: 0;
}
#itemDetail-wrap #box-description-images nav ul li a{
    display: block;
    background: #EEE;
    padding: 10px 0;
    font-size: 12px;
}

#itemDetail-wrap #box-description-images nav li span {
    font-size: 12px;
}


.swiper-container-wrapper {
    /* display: flex; */
    /* justify-content: space-evenly; */
    /* flex-direction: row-reverse; */
    /* max-width: 100%; */
}

section#box-description-images {
    float: left;
    width: 600px;
    margin: 0 0 80px 0;
    display: none;
}

#itemDetail-cont {
    /* float: right; */
    /* width: 550px; */
    margin: 0 0 80px;
}

section#itemDetail-wrap .description {
    clear: both;
    margin: 100px 0 0;
}
article#Detail #main-column h1 {
    text-align: left;
    margin-bottom: 20px;
}

section#itemDetail-wrap table.price tr.price th, section#itemDetail-wrap table.spec th {
    width: 8em !important;
    font-size: 13px;
    vertical-align: middle;
}
section#box-description-images2 {
    display: none;
}

section[id^="box-description-"] h2 {
	display: block;
	position: relative;
}

section[id^="box-description-"] h2:before{
	display: block;
	content: "";
	position: absolute;
	top: 25%;
	right: 10px;
	margin:auto;
	width: 12px;
	height: 2px;
	background-color: #333;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}

section[id^="box-description-"] h2:after{
	display: block;
	content: "";
	position: absolute;
	top: 25%;
	right: 10px;
	margin: auto;
	width: 12px;
	height: 2px;
	background-color: #333;
	transition: .3s;
}

section[id^="box-description-"] h2.on:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
section[id^="box-description-"] h2.on:after{
	background-color: transparent;
}
#itemDetail-wrap #box-description h2 {
    padding: 0 30px 15px 0;
    line-height: 140%;
    font-size: 1.09rem;
    cursor: pointer;
    border-bottom: 1px solid #333;
}
section[id^="box-description-"] .main {
    display: none;
}
.header-menu__dropdown-item a {
	position: relative;
}
.header-menu__dropdown-item a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
}
.header-menu__dropdown-item:hover a:after{
	transition:.3s;
	transform: scaleX(1);
}




/*Slider*/
.item-slider .swiper-container-horizontal {
    overflow: hidden;
    /* width: 100%; */
    /* margin-left: auto; */
    margin-right: 0;
}
@media (min-width: 480px) {
    .item-slider .swiper-container-horizontal {
        /* max-height: 500px; */
    }
}
.item-slider {
    display: flex;
    flex-flow: column nowrap;
    /* height: 500px; */
    max-width: 100vh;
    /* overflow: hidden; */
    justify-content: space-between;
    margin: 20px 0 0;
}
@media (min-width: 480px) {
    .item-slider {
        flex-flow: row nowrap;
        flex-direction: row-reverse;
        position: relative;
    }
}
.swiper-button-next, .swiper-button-prev {
    color: #000;
}
.swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.swiper-slide .description, .swiper-slide .title {
    display: block;
    opacity: 0;
    transition: 0.5s ease 0.5s;
}
.swiper-slide-active .description, .swiper-slide-active .title {
    opacity: 1;
}
.swiper-slide-active .title {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #000;
    transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-active .description {
    font-size: 16px;
    color: #777;
    transition: opacity 0.5s ease 0.75s;
}
.swiper-container-main {
    position: relative;
    width: 100%;
    /* height: 75vh; */
}
@media (min-width: 480px) {
    .swiper-container-main {
        width: 83%;
        /* height: 100vh; */
        margin-right: 10px;
    }
}
.swiper-container-sub {
    width: 100%;
    height: 25vh;
    padding-top: 10px;
}
@media (min-width: 480px) {
    .swiper-container-sub {
        width: 15%;
        height: 500px;
        padding: 0;
    }
}
.swiper-container-sub {
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.swiper-container-sub .swiper-wrapper{
    flex-direction: row;
    /* transform: unset !important; */
}

.swiper-container-sub::-webkit-scrollbar {
 display:none;
}


@media (min-width: 480px) {
    .swiper-container-sub .swiper-wrapper {
        flex-direction: column;
    }
}
.swiper-container-sub .swiper-slide {
    width: 25%;
    /* flex-flow: row nowrap; */
    height: 100%;
    opacity: 0.75;
    cursor: pointer;
    /* height: auto !important; */
    /* margin: 0 0 5px !important; */
    overflow: hidden;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
@media (min-width: 480px) {
    .swiper-container-sub .swiper-slide {
        /* flex-flow: column nowrap; */
        width: 100%;
    }
}
.swiper-container-sub .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #c00;
    box-sizing: border-box;
}
#itemDetail-wrap .swiper-container-sub img {
    /* max-width: 70px; */
}

.item-slider {}


@media all and (max-width: 768px) {
	.item_cnt {
    right: 50px;
    top: 11px;
    height: 16px;
    line-height: 16px;
    width: 16px;
    font-size: 10px;
}
	.header-inner #search-wrap.panelactive{
    left: 0;
    width: 100%;
    padding: 1% 3% 1% 1%;
    top: 50px;
}
	.header-navi {
    position: unset;
    /* margin: 0 10px 0 0; */
}

.header-inner #search-wrap input[type="text"] {
    width: 98%;
    padding: 1%;
    height: 35px !important;
}

.header-inner #search-wrap {
    width: 98%;
    left: 0;
    padding: 1% 1% 1% 1%;
}

#main-column .news h2, #main-column .area-news h2 {
    font-size: 16px;
}

div#btn-wplist a {
    width: 40%;
    font-size: 12px;
    padding: 9px 0;
}

#footer .copyright {
    /* display: none; */
    margin: 50px 0 0;
    text-align: center;
}

.footer__menu dt {
    font-size: 15px;
}

.footer__item+.footer__item .footer__menu {
    width: 35%;
}
.footer__menu a {
    font-size: 11px;
}

.footer__item+.footer__item .footer__menu:last-child {
    width: 65%;
}
	.footer__item.d-pc {
    display: flex !important;
}
	#header-nav-drawer {
    position: absolute;
}


.header-navi__item.icn-cart.d-pc {
    display: block !important;
}

.header-inner .logo a {
    padding: 5px 8px 8px;
}

#header.fixed {
    /* top: 15px; */
}

.top-bnr {
    max-width: unset;
    margin: 30px 0;
}

.freeArea2 .free-contents .top-bnr ul {
    display: block;
}

.freeArea2 .free-contents .top-bnr ul li {
    margin: 0 0 20px;
}

#wrapper #contents #main-column {
    padding: 0 15px;
}

#main-column .news {
    margin: 40px 0 0;
}

#main-column .area-news {
    margin: 40px 0 0;
}

#content-wplist {
    margin-top: 30px;
}

#main-column .news-contents {
    margin: 30px auto 0;
}

#main-column .news-contents dd {
    text-align: left;
}

#main-column .news .news-box dd .date {
    margin: 0 0 10px 0;
    display: block;
}
#wrapper #contents #sub-column {
    padding: 20px 0 0 0;
}
.header-navi__item.icn-cart.d-pc img {
    position: relative;
    top: 0px;
}

.header-navi__item img {
    vertical-align: sub;
}
.scroll #sub-column {
    top: 50px;
}

.scroll #wrapper.spsDrawerOpen::before {
    top: 50px;
}
.smp-login-btn a {
    background: #EEE;
    display: block;
    padding: 15px 15px;
    border-radius: 3px;
    font-size: 13px;
}

.smp-login-btn a img {
    width: 20px;
    margin: 0 8px 0 0;
}

#sub-column h2 {
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    color: #333;
}

#sub-column h2:after {
    display: none;
}

#sub-column .category nav ul li a,#sub-column .about nav ul li a {
    font-size: 13px;
    line-height: 150%;
    padding: 0;
}

#sub-column .about nav ul li {
    margin: 0 0 12px;
}

#sub-column .category nav ul li {
    margin: 0 0 12px;
}
#sub-column .freeArea2 {
    padding: 0 0 60px;
}
.header_area {
    margin: 0 0 10px;
}

article h1 {
    font-size: 18px;
    margin-bottom: 20px;
}
#itemDetail-wrap #box-description h2 {
    font-size: 14px;
    padding: 0 30px 15px 0;
    margin: 20px 0 0 0;
    border-bottom: 1px solid #666;
}

section#itemDetail-wrap .description {
    margin: 20px 0 0;
}

#itemDetail-cont {
    margin: 0 0 20px;
    float: none;
    width: auto;
}

section#box-description-images {
    float: none;
    width: auto;
    margin: 0 0 0;
}
#floating-menu {