@charset "UTF-8";
/*================================================
ハンバーガーメニュー専用CSS
================================================*/
/* section_main
--------------------------------------------------------------------*/
.section_main {
	width: 100%;
	padding: 0;
	margin-left: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
	transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.section_main.selected {
	width: 100%;
	overflow: hidden;
}
/* section_menu
--------------------------------------------------------------------*/
.drawer_main {
	display: none;
	position: relative;
}

.drawer_wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 9999px;
	height: 100%;
	transition: transform .3s;
}


.drawer_content {
	position: absolute;
	top: 0;
	width: 100vw;
	height: 100%;
	max-width: 400px;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	flex-direction: column;
	gap: 0px;
	color: rgb(255, 255, 255);
}
.drawer_nav {
	padding-bottom: 80px;
}

.drawer_main {
	display: none;
	position: relative;
}

.is_drawer .drawer_main {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	left: 0;
}
.drawer_main *, .drawer_main *:before, .drawer_main *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-feature-settings: 'palt','lnum';
	letter-spacing: 0.08em;
}
.drawer_bg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0px;
	background-color: rgba(42, 41, 47, 0.6);
	-webkit-backdrop-filter: blur(32px);
	backdrop-filter: blur(32px);
	z-index: 0;
	cursor:pointer;
}
.drawer_menu {
	height: 100%;
	width: 100%;
	background-color: rgb(42, 41, 47);
	position: relative;
	overflow-x: hidden;
	margin-left: auto;
	font-family: "Untitled Sans","Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体","hiragino-kaku-gothic-pron","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Noto Sans JP",Meiryo,sans-serif;
	max-width: 400px;
	min-width: 275px;
	right:-100%;
	transition:all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.drawer_menu.menu_open{
	right:0;
}
.drawer_inner {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}
.drawer_body {
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.drawer_content ul, .drawer_content dl {
	padding: 0;
	margin: 0;
}
.drawer_close {
	display: block;
	position: relative;
	width: 24px;
	height: 24px;
	transition: color .4s;
	opacity: 1;
	z-index: 47;
	cursor: pointer;
	font-size: 0;
}
.drawer_close:before{
	content:"";
	display: inline-block;
	position: absolute;
	left: 0px;
	width: 100%;
	height: 1px;
	transition: all 0s;
	background: #fff;
	box-sizing: border-box;
	top: 4px;
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.drawer_close:after{
	content:"";
	display: inline-block;
	position: absolute;
	left: 0px;
	width: 100%;
	height: 1px;
	transition: all 0s;
	background: #fff;
	box-sizing: border-box;
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
	bottom: 3px;

}

/* bgmodal
--------------------------------------------------------------------*/
#bgmodal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 250;
}
#bgmodal a {
	display: block;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: rgba(0, 0, 0, 0.6);
}
/* store_menu
--------------------------------------------------------------------*/
.store_menu a{
	transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 200ms;
}

.store_menu a:hover{
	text-decoration:none;
	opacity: 0.6;
}
.store_menu_scroll{
	overflow-y: auto;
	overflow-x: hidden;
	width: 100%;
	height: 100%;
	opacity:0;
	transition: all 300ms;
	transition-delay: 0.25s;
}
.menu_open .store_menu_scroll{
	opacity:1;
}
.menu_open .store_menu_scroll > div{
	animation-name:fadeUpAnime;
	animation-duration:0.6s;
	animation-fill-mode:forwards;
	animation-delay: .25s;
	opacity: 0;
}
.menu_open .store_menu_scroll .slideUp{
	animation-name:fadeUpAnime;
	animation-duration:0.6s;
	animation-fill-mode: forwards;
	animation-delay: .25s;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
	    opacity: 0;
		margin-top:5px;
	}

	to {
		opacity: 1;
		margin-top:0px;
	}	
}

.store_menu_member {
	line-height: 24px;
	border-bottom: 1px solid #D9D9D9;
}
.store_menu_member a {
	display: block;
}

.store_menu_brand_logo{
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-direction: row;
	width: 100%;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-inline-start: 24px;
	padding-inline-end: 24px;
	gap: 0.5rem;
	border-bottom: 1px solid rgb(85, 85, 85);
	position: relative;
}
/* store_menu_member_nav
--------------------------------------------------------------------*/
.store_menu_member_nav {
	border-bottom: 1px solid rgb(85, 85, 85);
}
.store_menu_member_nav ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0px, 1fr));
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	justify-content: stretch;
	border-color: rgb(85, 85, 85);
}
.store_menu_member_nav ul:before,
.store_menu_member_nav ul:after{
	content:none;
}
.store_menu_member_nav > ul > li{
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-color: rgb(85, 85, 85);
}
.store_menu_member_nav ul li:last-child{
	border:none;
}
.store_menu_member_nav > ul > li > a {
	display: inline-flex;
	appearance: none;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	user-select: none;
	position: relative;
	white-space: nowrap;
	vertical-align: middle;
	outline: transparent solid 2px;
	outline-offset: 2px;
	line-height: 1.2;
	border-radius: 0px;
	font-weight: 300;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	min-width: 2.5rem;
	padding-inline-start: 1rem;
	padding-inline-end: 1rem;
	color: rgb(255, 255, 255);
	width: 100%;
	padding: 23px;
	transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0s;
	font-size: 18px;
	background: none;
	height: 48px;
}
.store_menu_member_nav > ul > li > a > span{
	display: inline-flex;
	align-self: center;
	flex-shrink: 0;
	margin-inline-end: 0.5rem;
}

.store_menu_member_nav ul li svg {
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: inherit;
}
.store_menu_member_nav ul li svg path {
	stroke: rgb(255, 255, 255);
}
.store_menu_scroll .member_nav_login {
	border-bottom: 1px solid rgb(85, 85, 85);
}

.store_menu_scroll .member_nav_login a{
	display: inline-flex;
	appearance: none;
	-webkit-box-align: center;
	align-items: center;
	user-select: none;
	position: relative;
	white-space: nowrap;
	vertical-align: baseline;
	outline: transparent solid 2px;
	outline-offset: 2px;
	line-height: normal;
	font-weight: 300;
	transition-property:  background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 200ms;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	height: auto;
	min-width: 2.5rem;
	padding: 30px 0px;
	padding-inline: 24px;
	width: 100%;
	font-size: 18px;
	-webkit-box-pack: start;
	justify-content: flex-start;
	color: rgb(255, 255, 255);
}
.store_menu_top_area{
	border-bottom: 1px solid rgb(85, 85, 85);
	padding-bottom: 20px;
}
.store_menu_user_info a{
	display: inline-flex;
	appearance: none;
	-webkit-box-align: center;
	align-items: center;
	user-select: none;
	position: relative;
	white-space: nowrap;
	vertical-align: baseline;
	outline: transparent solid 2px;
	outline-offset: 2px;
	line-height: normal;
	font-weight: 300;
	transition-property:  background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 200ms;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	height: auto;
	min-width: 2.5rem;
	padding: 30px 0px 0px;
	padding-inline: 24px;
	width: 100%;
	font-size: 16px;
	-webkit-box-pack: start;
	justify-content: flex-start;
	color: rgb(255, 255, 255);
}

.store_menu_user_info a{
	display:flex;
	flex-wrap: wrap;
	color: #D9D9D9;
}
.store_menu_user_info a:after{
	content:"";
	width:0.75rem;
	height:0.75rem;
	border-top: 1px solid #9D9D9D;
	border-right: 1px solid #9D9D9D;
	transform:rotate(45deg);
	position:absolute;
	right: 40px;
	top:0;
	bottom:0;
	margin:auto;
	transition: all 0.2s;
}
.store_menu_user_info a:hover:after{
	right: 35px;
}
.store_menu_user_name{
	width: 100%;
	color: #fff;
	font-size: 20px;
}
.store_menu_user_point{
	font-family: 'EuclidCircularB';
	font-size: 16px;
	line-height: 29px;
}
#store_menu_cart_total{
	display: flex;
	position: relative;
	margin-right: 0;
}
.store_menu_cart_item{
	color: rgb(42, 41, 47);
	font-size: 10px;
	position: relative;
	height: 1.25rem;
	width: 1.25rem;
	line-height: 1.25rem;
	background: rgb(190, 116, 84);
	border-radius: 50%;
	margin-left: 8px;
	margin-right: 0;
	text-align: center;
}

.store_menu_user_coupon {
    position:relative;
    padding-right: 24px;
    margin-left: 16px;
}

.store_menu_user_coupon_symbol {
    position:absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #BE7454;
    border-radius: 50%;
    font-size: 10px;
    padding: 3px 3px;
    color: #2A292F;
    margin-left: 2px;
    text-align: center;
}
.store_menu_nws_notice{
	margin-left:16px;
}
.store_menu_nws_notice_symbol_wrapper {
    position:relative;
}

.store_menu_nws_notice_symbol {
    position: absolute;
    display:block;
    top: -10px;
    height: 8px;
    left: 6px;
    width: 8px;
    background: #BE7454;
    border-radius: 50%;
}

/* store_menu_item_nav
--------------------------------------------------------------------*/
.store_menu_nav_wrap {
	padding-top: 24px;
	padding-bottom: 24px;
	padding-inline-start: 24px;
	padding-inline-end: 24px;
	border-bottom: 1px solid rgb(85, 85, 85);
}
.store_menu_nav_title{
	margin-bottom: 12px;
	font-family: "Untitled Sans", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, hiragino-kaku-gothic-pron, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Noto Sans JP", Meiryo, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
.store_menu_item_nav{
	width: 100%;
}

.store_menu_item_nav ul:before,
.store_menu_item_nav ul:after{
	content:none;
}

.store_menu_item_nav ul li {
	width: 100%;
}
.store_menu_item_link {
	transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	cursor: pointer;
	text-decoration: none;
	outline: transparent solid 2px;
	outline-offset: 2px;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	color: rgb(255, 255, 255);
	line-height: 1.5;
	position: relative;
}
.store_menu_item_link:hover {
	color: rgb(255, 255, 255);
	text-decoration: none;
	opacity: 1 !important;
}
.store_menu_item_link span{
	display:inline-block;
	position:relative;
}
.store_menu_item_link span:after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}
.store_menu_item_link:hover span:after{
	transform: scaleX(1);
}

/* store_menu_nav
--------------------------------------------------------------------*/

.store_menu_nav {}
.store_menu_nav_content {}
.store_menu_nav_list {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.8rem;
	font-size: 18px;
}
.store_menu_nav_item {width: 100%;}
.store_menu_nav_item_large {}
.store_menu_nav_link {
	display: block;
	font-size: 12px;
	font-weight: bold;
	background-color: #fff;
	padding: 20px 20px 20px 15px;
	position: relative;
}
.store_menu_nav_link:after {
	content:"";
	display:block;
	width: 7px;
	height: 7px;
	margin-top:-3px;
	border-top:1px solid #000;
	border-right:1px solid #000;
	transform:rotate(45deg);
	position:absolute;
	top:50%;
	right:15px;
}
.store_menu_nav_toggle {
	display: block;
	font-size: 12px;
	background-color: #fff;
	padding: 20px 40px 20px 15px;
	position: relative;
}
.store_menu_nav_name {
	display: inline-block;
	padding: 0 15px 0 0;
	position: relative;
}
.store_menu_nav_accrodion {
	display: none;
	background-color: #f4f4f4;
}
.store_menu_nav_toggle_large {
	display: block;
	font-size: 12px;
	font-weight: bold;
	background-color: #f4f4f4;
	padding: 20px 20px 20px 15px;
	border-top: 1px solid #707070;
	position: relative;
}
.store_menu_nav_toggle_large:after {
	content:"";
	display:block;
	width:6px;
	height:6px;
	margin-top:-5px;
	border-top:1px solid #707070;
	border-right:1px solid #707070;
	transform:rotate(135deg);
	position:absolute;
	top:50%;
	right:15px;
}
.store_menu_nav_toggle_large.is_open:after {
	transform:rotate(-45deg);
	margin-top:-2px;
	right:15px;
}
.icon_menu_toggle {
	display: inline-block;
	position: absolute;
	width: 11px;
	height: 11px;
	top: 50%;
	right: 20px;
	margin-top: -5px;
}
.icon_menu_toggle.toggle_type_large:before,
.icon_menu_toggle.toggle_type_large:after {
	display: block;
	content: '';
	background-color: #1e1e1e;
	position: absolute;
	width: 11px;
	height: 1px;
	top: 5px;
	left: 0;
}
.icon_menu_toggle.toggle_type_large:before {
	width: 1px;
	height: 11px;
	top: 0;
	left: 5px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.store_menu_nav_toggle.is_open .icon_menu_toggle.toggle_type_large:before {
	opacity: 0;
}
.icon_menu_toggle.toggle_type_medium:before,
.icon_menu_toggle.toggle_type_medium:after {
	display: block;
	content: '';
	background-color: #1e1e1e;
	position: absolute;
	width: 9px;
	height: 1px;
	top: 4px;
	left: 0;
}
.icon_menu_toggle.toggle_type_medium:before {
	width: 1px;
	height: 9px;
	top: 0;
	left: 4px;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.store_menu_nav_toggle_medium.is_open .icon_menu_toggle.toggle_type_medium:before {
	opacity: 0;
}

/* store_menu_sub_nav
--------------------------------------------------------------------*/
.store_menu_sub_nav_wrap{
	padding-top: 24px;
	padding-bottom: 16px;
	padding-inline: 24px;
}
.store_menu_sub_nav{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5em;
	font-size: 14px;
	line-height: 24px;
}

.store_menu_sub_nav .store_menu_sub_nav_item {
	width: 100%;
}
.store_menu_sub_nav .store_menu_sub_nav_item_link{
	cursor: pointer;
	text-decoration: none;
	outline: transparent solid 2px;
	outline-offset: 2px;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	color: rgb(255, 255, 255);
	line-height: 24px;
}
.store_menu .store_menu_sub_nav_item_link:hover{
	text-decoration:inherit;
	color:inherit;
	opacity: 1;
}
.store_menu .store_menu_sub_nav_item_link span{
	display:inline-block;
	position:relative;
}
.store_menu .store_menu_sub_nav_item_link span:after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}
.store_menu .store_menu_sub_nav_item_link:hover span:after{
	transform: scaleX(1);
}

/*brand*/
.store_menu_brand_logo span {
	transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	cursor: pointer;
	-webkit-text-decoration: none;
	text-decoration: none;
	outline: 2px solid transparent;
	outline-offset: 2px;
	color: inherit;
}
.store_menu_brand_logo img {
	width: 153px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.store_menu_nav_brand li a {
	vertical-align: middle;
	height: 90px;
	width: 100%;
	padding: 0 16px;
}
.store_menu_nav_brand li a {
	display: table;
	width: 100%;
	vertical-align: middle;
}
.store_menu_nav_brand li span {
	display: table-cell !important;
	vertical-align: middle;
	line-height: 20px;
	font-size: 16px !important;
	height: 82px;
	padding: 0 !important;
}
.store_menu_nav_brand li span:first-child {
	width: 84px;
}
.store_menu_nav_brand li img {
	display: inline-block;
	width: 84px;
	height: auto;
	max-height: 62px;
	overflow: hidden;
	font-size: 1%;
	white-space: normal;
	margin: 15px 20px 15px -1px;
	vertical-align: middle;
}
/*favbrand*/
.store_menu_favbrand {
	padding: 24px 0px 0;
	padding-inline: 24px;
}
.store_menu_favbrand_list:before,
.store_menu_favbrand_list:after{
	content:none;
}
.store_menu_favbrand .embla__viewport {
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
}
.store_menu_favbrand .embla__progress{
	display:block;
	width: calc(100% - 1px);
	background-color: #000;
	height: 3px;
	bottom: 1px;
	border-radius: 10px;
}
.store_menu_favbrand .embla__progress__bar{
	background-color:#555555;
	border-radius: 10px;
}
.store_menu_favbrand dt {
	font-size: 14px;
	color: #fff;
	line-height: 25px;
	margin-bottom: 4px;
}
.store_menu_favbrand dd {
	box-sizing: border-box;
	margin: 0 -40px -20px;
	padding: 0 40px 20px;
}
.store_menu_favbrand_list {
	display: block;
	width: 100%;
	padding-bottom: 10px !important;
	position: relative;
	white-space: nowrap;
	letter-spacing: -.75em;
}
.store_menu_favbrand_item {
	display: inline-block;
	width: 80px;
	min-width: 80px;
	height: auto;
	position: relative;
	letter-spacing: normal;
}
.store_menu_favbrand_item:last-child {
	margin-right: 40px
	;
}
.store_menu_favbrand_link {
	display: block;
	position: relative;
	border: 1px solid #555555;
}
.store_menu_favbrand_photo {
	position: relative;
}
.store_menu_favbrand_photo:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.store_menu_favbrand_image {
	width: 100%;
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	filter: invert(1);
}
/*checkitem*/
.store_menu_checkitem {
	padding: 18px 0px 0;
	padding-inline: 24px;
}
.store_menu_checkitem .embla__viewport {
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
}
.store_menu_recently_list:before,
.store_menu_recently_list:after{
	content:none;
}
.store_menu_checkitem .embla__progress{
	display:block;
	width: calc(100% - 1px);
	background-color: #000;
	height: 3px;
	bottom: 1px;
	border-radius: 10px;
}
.store_menu_checkitem .embla__progress__bar{
	background-color:#555555;
	border-radius: 10px;
}
.store_menu_checkitem dt {
	font-size: 14px;
	color: #fff;
	line-height: 25px;
	margin-bottom: 4px;
}
.store_menu_checkitem dd {
	box-sizing: border-box;
	margin: 0 -40px -20px;
	padding: 0 40px 20px;
}
.store_menu_recently_list {
	display: block;
	width: 100%;
	padding-bottom: 10px !important;
	position: relative;
	white-space: nowrap;
	letter-spacing: -.75em;
}
.store_menu_recently_item {
	display: inline-block;
	width: 80px;
	min-width: 80px;
	height: auto;
	position: relative;
	letter-spacing: normal;
}
.store_menu_recently_item:last-child {
	margin-right: 40px
	;
}
.store_menu_recently_link {
	display: block;
	position: relative;
}
.store_menu_recently_photo {
	position: relative;
}
.store_menu_recently_photo:before {
	content: "";
	display: block;
	padding-top: 133.33333%;
	background: #f5f5f5;
}
.store_menu_recently_image {
	width: 100%;
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.store_menu_nav{
	/* z-index:10001; */
	position: relative;
	width: 100%;
}
.store_menu_nav ul {

}
.store_menu_nav > ul {
	width: 100%;
}
.store_menu_nav li {
	width: 100%;
}

.store_menu_nav > ul  > li > a{
	appearance: none;
	-webkit-box-align: center;
	align-items: center;
	user-select: none;
	position: relative;
	white-space: nowrap;
	vertical-align: baseline;
	outline: transparent solid 2px;
	outline-offset: 2px;
	line-height: normal;
	font-weight: normal;
	transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 200ms;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	height: auto;
	min-width: 2.5rem;
	padding-inline-start: 1rem;
	padding-inline-end: 1rem;
	padding: 0px;
	width: 100%;
	color: rgb(255, 255, 255);
	font-size: inherit;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.store_menu_nav > ul  li > a:hover{
	text-decoration: none;
	opacity:0.8;
}
.store_menu_nav:not(.drilldown_menu2) .nav_wrapper li:last-of-type {
	padding-bottom:116px;
}

.store_menu_nav > ul  li.selected {
	position: fixed;
	top: 0;
	border: none;
	z-index: 1;
	height: 100%;
}
.store_menu_nav_level00{
	/* position:fixed; */
	padding: 0 !important;
}
.store_menu_nav li a.selected .selected {

}
.selected + .store_menu_nav_level02 {
	left: 0;
	top:0;
	overflow: scroll;
	z-index: 10012;
}
.selected + .store_menu_nav_level03 {
	left: 0;
	top: 0;
	overflow: scroll;
	z-index: 10013;
}
.selected + .store_menu_nav_level04 {
	left: 0;
	top:0;
	overflow: scroll;
	z-index: 10014;
}
.store_menu_nav > li > a{
	text-decoration: none;
	color: #fff;
}
.store_menu_nav li > a.selected {
	font-size: 14px;
	width: 100%;
	height: 58px;
	line-height: 58px;
	border: none;
	padding: 0;
	color: #fff;
	background: #4D4D4D;
	text-align: center;
	top: 0;
	text-decoration: none;
	position: fixed;
	max-width: 400px !important;
	min-width: 275px;
	animation-name:fadeRightAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100%);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.store_menu_nav li > a.selected > span {
	display: none;
}

.store_menu_nav li > a.selected:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(225deg);
	position: absolute;
	top: 50%;
	left: 15px;
}
.store_menu_nav_level00 > li > a.selected {
    z-index: 10012;
    right: 0;
}
.store_menu_nav_level02 > li > a.selected {
	z-index: 10016;
	top: 0;
	left: 0;
}
.store_menu_nav_level03 > li > a.selected {
	z-index: 10017 !important;
}
.store_menu_nav_level04 > li > a.selected {
	z-index: 10018 !important;
}

/* menu_drilldown
--------------------------------------------------------------------*/
.menu_drilldown {
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 100vw;
	height: 100%;
	background-color: #fff;
	transition: transform .3s;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	background: rgb(42, 41, 47);
	inset: 0px;
	display:block;
}
.menu_drilldown_wrap{
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	flex-direction: column;
	gap: 0px;
	color: rgb(255, 255, 255);
	height: 100%;
}
.menu_drilldown.drilldown2 {
	transform: translate(400px,0);
}
.menu_drilldown.drilldown3 {
	/*left: 650px;*/
	transform: translate(650px,0);
}
.menu_drilldown_next {
	transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	cursor: pointer;
	text-decoration: none;
	outline: transparent solid 2px;
	outline-offset: 2px;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	color: rgb(255, 255, 255);
	line-height: 1.6;
	position: relative;
}
.menu_drilldown_next:hover{
	color: rgb(255, 255, 255);
}
.menu_drilldown_next.menu_drilldown_account {
}
.menu_drilldown_next.menu_drilldown_category {
}
.menu_drilldown_next.menu_drilldown_brand {
}
.menu_drilldown_next:after {
	content:"";
	display:block;
	width: 12px;
	height: 12px;
	border-top:1px solid #9D9D9D;
	border-right:1px solid #9D9D9D;
	transform:rotate(45deg);
	position:absolute;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto;
	transition-property: all;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.menu_drilldown_next:hover:after {
	right: 3px;
}
.menu_drilldown_item {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5em;
	font-size: 18px;
	width: 100%;
}
.menu_drilldown_text{
	position: relative;
	margin-left: 48px;
	color: #fff;
}

.menu_drilldown_prev{
	display: inline-flex;
	appearance: none;
	-webkit-box-align: center;
	align-items: center;
	user-select: none;
	position: relative;
	white-space: nowrap;
	vertical-align: baseline;
	outline: transparent solid 2px;
	outline-offset: 2px;
	line-height: normal;
	font-weight: 300;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	height: auto;
	min-width: 2.5rem;
	padding-inline-start: 1rem;
	padding-inline-end: 1rem;
	padding: 0px;
	width: 100%;
	-webkit-box-pack: start;
	justify-content: flex-start;
	font-size: 16px;
	color: inherit;
	transition: opacity 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0s;
	cursor: pointer;
	border-bottom: 1px solid rgb(85, 85, 85);
	padding: 18px 16px;
}
.menu_drilldown_prev .menu_drilldown_text:after {
	content:"";
	display:block;
	width: 12px;
	height: 12px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform:rotate(-135deg);
	position:absolute;
	top: 0;
	left: -35px;
	bottom: 0;
	margin: auto;
	transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}
.menu_drilldown_prev:hover{
	opacity:0.6;
}
.menu_drilldown_prev:hover .menu_drilldown_text:after{
	left:-40px;
}
.menu_drilldown_list {
	width: 100%;
	max-width: 100vw;
	height: 100%;
	left: 0;
	overflow-y: auto;
	transition: margin-left 0.25s;
	padding-bottom: 80px;
	display: flex;
	color: rgb(255, 255, 255);
	height: 100%;
	padding-inline: 24px;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.8em;
	font-size: 20px;
}
.menu_drilldown_list:before,
.menu_drilldown_list:after{
	content:none;
}
.menu_drilldown_item:not(:first-child) {
}
.menu_drilldown_toggle{
	position: relative;
	color: #fff;
	width: 100%;
	line-height: 1.5;
}
.menu_drilldown_toggle:after{
	content:"";
	display:block;
	position:absolute;
	width:12px;
	height:12px;
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	transform: rotate(135deg);
	right: 8px;
	top: 5px;
	bottom: 0px;
	margin: auto;
	transition: transform 0.3s ease-out;
	transform-origin: 70% 30%;
}
.toggle_open.menu_drilldown_toggle:after{
	transform: rotate(315deg) translateZ(0px);
}
.menu_drilldown_toggle:hover{
	color: #fff;
	opacity:0.6;
}
.menu_drilldown_toggle_list{
	overflow: hidden;
	display: block;
	opacity: 0;
	height: 0px;
	transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}
.toggle_open + .menu_drilldown_toggle_list{
	overflow: hidden;
	display: block;
	opacity: 1;
	height: auto;
}
.menu_drilldown_toggle_list > .menu_drilldown_toggle_list_inner{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5em;
	font-size: 16px;
	padding-inline-start: 0;
	padding-inline-end: 0;
	padding-top: 22px;
	padding-bottom: 22px;
	transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
	opacity:0;
}
.toggle_open + .menu_drilldown_toggle_list > .menu_drilldown_toggle_list_inner{
	opacity:1;
}
.menu_drilldown_toggle_list_inner:before,
.menu_drilldown_toggle_list_inner:after{
	content:none;
}
.menu_drilldown_toggle_list .store_menu_item_link{
	font-size:16px;
}
.menu_drilldown_toggle_item{
}
.menu_drilldown_link {
	display: block;
	font-size: 12px;
	padding: 20px 20px 20px 30px;
	position: relative;
}
.menu_drilldown_link:after {
	content:"";
	display:block;
	width:6px;
	height:6px;
	margin-top:-3px;
	border-top:1px solid #000;
	border-right:1px solid #000;
	transform:rotate(45deg);
	position:absolute;
	top:50%;
	right:15px;
}
.drill_open .menu_drilldown_item{
	animation-name:drillFadeUpAnime;
	animation-duration:0.6s;
	animation-fill-mode: forwards;
	animation-delay: .25s;
	opacity: 0;
	gap: 0;
}
@keyframes drillFadeUpAnime{
	from {
	    opacity: 0;
		margin-top:2px;
	}

	to {
		opacity: 1;
		margin-top:0px;
	}	
}

.store_menu_nav_gender_list{
	padding-inline: 24px;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	border-bottom:1px solid rgb(85, 85, 85);
}
.store_menu_nav_gender_list ul{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5em;
	font-size: 20px;	
}
.store_menu_nav_gender_list ul:before,
.store_menu_nav_gender_list ul:after{
	content:none;
}
.store_menu_nav_gender_list .store_menu_item_link{
	font-size:20px;
}
.store_menu_sns{
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	flex-direction: row;
	gap: 0.5rem;
	padding-bottom: 40px;
	padding-inline: 24px;
	width: 100%;
}
.store_menu_sns_link{
	transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
	transition-duration: 150ms;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	cursor: pointer;
	text-decoration: none;
	outline: transparent solid 2px;
	outline-offset: 2px;
	color: inherit;	
}
@media screen and (min-width: 1001px){
	.drawer_content{
	}
	.drawer_menu{
	}
	.store_menu_brand_logo {
		padding-top: 44px;
		padding-bottom: 44px;
		padding-inline: 40px;
	}
	.store_menu_brand_logo img{
		width:auto;
		height:14px;
	}
	.store_menu_favbrand{
		padding-inline: 40px;
		padding-top: 20px;
		padding-bottom: 0;
	}
	.store_menu_checkitem{
		padding-inline: 40px;
		padding-top: 20px;
		padding-bottom: 0;
	}
	.store_menu_scroll .member_nav_login{
		padding-bottom:20px;
	}
	.store_menu_top_area{
		border-bottom: 1px solid rgb(85, 85, 85);
		padding-bottom: 20px;
	}
	.store_menu_scroll .member_nav_login a,
	.store_menu_scroll .store_menu_user_info a {
		padding-inline: 40px;
		padding-top: 20px;
		padding-bottom: 0;
	}
	.store_menu_member_nav ul{
		padding-top: 0px;
		padding-bottom: 0px;
	}
	
	.store_menu_member_nav ul li a{
		height:70px;
	}
	.store_menu_member_nav > ul > li > a {
		font-size:20px;
	}
	.store_menu_scroll .member_nav_login a{
		font-size:20px;
	}
	.store_menu_nav_wrap {
		padding-inline: 40px;
	}
	.store_menu_sub_nav_wrap{
		padding-inline: 40px;
	}
	
	.menu_drilldown{
		max-width:400px;
	}
	.menu_drilldown_list{
		max-width:400px;
		padding-inline: 40px;
		padding-top: 32px;
		padding-bottom: 32px;
	}
	.menu_drilldown.drilldown2 {
		transform: translate(400px,0);		
	}
	.menu_drilldown_item{
	}
	.menu_drilldown_prev{
		font-size:20px;
		padding: 30px;
	}
	.menu_drilldown_prev .menu_drilldown_text:after {
		width: 16px;
		height: 16px;
	}
	.store_menu_nav_list{
		gap:0.5rem;
		font-size:20px;
	}
	.store_menu_nav_gender_list{
		padding-inline: 40px;
		padding-top: 32px;
		padding-bottom: 32px;		
	}
	.store_menu_sns {
		padding-inline: 40px;
	}
	.menu_drilldown_list{
		gap:0.5rem;
	}
	.menu_drilldown_item{
		font-size:20px;
	}
}
@media screen and (max-width: 400px){
	.menu_drilldown.drilldown2 {
		transform: translate(100vw,0);
	}	
}