section#category-header {
    display: flex;
    width: 100%;
	height: 48px;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
    top: 46px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    /*border-top: 1px solid #ccc;*/
    align-items: center;
}

.fs-c-productList {
    margin: 0px 0;
}
.fs-c-productListItem__viewMoreImageButton {
    margin-top: -23px;
}
@media screen and (min-width: 813px){
	.fs-l-main {
		margin: 110px auto 60px;
	}
	.fs-c-productList {
		margin: 24px 0 0 -20%;
	}
	.fs-c-productList__list {
		max-width: 1200px;
		margin: 0 auto;
		width: 100vw; /*for tablet:*/
		margin-right: 7%; /*for tablet:*/
	}
}

/*　上に上がる動き　*/
#category-header.UpMove{
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#category-header.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*カテゴリ名とcategoryボタンの調整*/
h1.fs-c-heading--page {
    font-size: 13px;
    margin: 0 0 0 calc(4% + 10px);
    padding: 0;
    text-align: left;
}
.category_header_menu {
    margin-right: 10vw;
}

div#category-nav-toggle {
	padding: 10px 0px 11px 15px;
	font-size: 12px;
}


/*カテゴリードロワーボタン*/
div#category-nav-toggle span {
    position: relative;
}
div#category-nav-toggle span:before {
    content: "";
    position: absolute;
    margin: auto;
    top: 1px;
    bottom: 0;
    right: -20px;
    border-top: 1px solid #000;
    width: 11px;
    height: 1px;
    opacity: 1;
}
div#category-nav-toggle.active span:before {
    transition: all .5s;
    opacity: 0;
}
div#category-nav-toggle span:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0px;
    bottom: 0;
    right: -16px;
    border-left: 1px solid #000;
    width: 1px;
    height: 11px;
    transform: rotate(0deg);
    transition: .5s;
}
div#category-nav-toggle.active span:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0px;
    bottom: 0;
    right: -16px;
    border-left: 1px solid #000;
    width: 2px;
    height: 11px;
    transform: rotate(90deg);
    transition: .5s;
}

.category_drawer__inner {
    -ms-overflow-style: none;
 /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    scrollbar-width: none;
 /*Firefoxへの対応*/
}

.category_drawer__inner::-webkit-scrollbar {
    display: none;
 /*Google Chrome、Safariへの対応*/
}

/*ドロワー挙動*/
.fs-l-main.open .category_drawer__contents {
    z-index: -1;
    position: fixed;
}
nav.category_drawer__nav {
    pointer-events: none;
}
.category_drawer__block {
    position: fixed;
    height: calc(100vh - 50px);
    right: 0;
    top: 50px;
    overflow: hidden;
    width: 100%;
}
.DownMove .category_drawer__block {
    position: fixed;
    height: 100vh;
    right: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
}

.category_drawer__bg {
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
	top: 93px;
    z-index: 8;
    opacity: 0;
    transition: all .7s;
}
.DownMove .category_drawer__bg {
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    top: 48px;
    z-index: 8;
    /* transform: translateX(100%); */
    opacity: 0;
    transition: all .7s;
}
.fs-l-main.open .category_drawer__bg {
    /* transform: translateX(0%); */
    pointer-events: visible;
    opacity: 1;
    transition: all .7s;
}
.category_drawer__inner {
    transform: translateX(100vw);
    transition-duration: .7s;
    position: absolute;
    width: 60vw;
    height: 100vh;
    opacity: 0;
    z-index: 9;
    top: 43px;
    overflow: scroll;
    background: #fff;
}
.fs-l-main.open .category_drawer__inner {
    transform: translateX(40vw);
    pointer-events: visible;
    opacity: 1;
    transition: all .7s;
}

/*ドロワー内メニュー*/
.category_drawer__inner ul#menu--drawer {
    list-style: none;
    margin: 30px auto 0;
    padding: 0 18px 1em;
    width: 100%;
}
.category_drawer__inner ul#menu--drawer li {
    font-size: 14px;
    line-height: 2.5em;
}
.category_drawer__inner ul#menu--drawer li:first-of-type {
    padding-top: 0.5em;
}
.category_drawer__inner ul#menu--drawer li:nth-child(5) {
    margin-bottom: initial;
}
.category_drawer__inner ul#menu--drawer li:nth-child(6) {
    margin-bottom: 0;
}
.category_drawer__inner ul#menu--drawer li a {
    letter-spacing: 1.3px;
    font-size: 13px;
}
.category_drawer__inner ul#menu--drawer a span {
    font-size: 12px;
}

/* PC用 ドロワーコンテンツ挙動調整 **************/
@media screen and (min-width: 813px) {
    section#category-header {
		top: 55px;
    }

    /*カテゴリ名とcategoryボタンの調整*/
    h1.fs-c-heading--page {
        margin: 0 50px 0;
    }
    .category_header_menu {
        margin-right: 75px;
		cursor: pointer;
    }
    /*ドロワー挙動*/
    .category_drawer__block {
        width: 100%;
    }
    .category_drawer__bg {
        transform: translateX(0);
        top: 102px;
    }
    .DownMove .category_drawer__bg {
		top: 48px;
    }
    .category_drawer__inner {
        transform: translateX(100vw);
        height: 100vh;
		top: 52px;
    }
    .DownMove .category_drawer__inner {
        top: 55px;
    }
    .fs-l-main.open .category_drawer__inner {
        transform: translateX(70vw); /*ドロワーの幅 数値が多くなるほど狭くなる*/
    }


    /*ドロワー内メニュー*/
    .category_drawer__inner ul#menu--drawer {
        padding: 0 45px 1em;
    }
    .category_drawer__block div.new__arrivals {
        width: 230px;
        margin: 25px auto 0px;
    }
}

/*ALLページに表示*/
#cate_all div {
	position: relative;
}
#cate_all p {
	color: #fff;
	position: absolute;
	left: 20px;
	bottom: 10%;
	font-size: 14px;
}
#cate_all p span {
	text-decoration: underline;
}
.fs-l-page section:nth-of-type(2) {
	margin-top: 130px;
	margin-bottom: -140px;
}
@media screen and (min-width: 813px) {
	#cate_all div {
		width: 100%;
	}
	#cate_all p {
		text-align: center;
		left: 0px;
		right: 0px;
		margin: 0 auto;
		bottom: 50%;
		font-size: 18px;
	}
	.fs-l-page section:nth-of-type(2) {
		margin: 154px auto -220px;
	}
}



/*movie volume*/
.fv_movie {
    position: relative;
    width: 100%;
    overflow: hidden;
    top: 0px;
	background-color: #000;
	margin: 0 auto;
	line-height: 0;
}
.fv_movie > video {
/*    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);*/
    min-width: 100%;
    min-height: 100%;
}
.fv_movie .movie_volume {
    position: absolute;
    bottom: 20px;
    right: 3vw;
    z-index: 1;
	text-decoration: underline;
    text-underline-offset: 4px;
	font-weight: 300;
	font-size: 12px;
	color: #fff;
}
@media screen and (min-width: 813px) {
    section.main_text >  div.fv_movie {
        top: 0px;
		height: 660px;
		width: 400px;
		margin: 0 auto;
	}
	.fv_movie > video {
		object-fit: cover;
	}
	.fv_movie > img {
		object-fit: cover;
		width: 100%;
	}

	.fv_movie .movie_volume {
		right: 2vw;
	}
}


.fs-l-pageMain section#all231127 {
	margin: 60px -20px auto;
}
#all231127 h1, h2, h3, h4, h5 {
	margin: 0 auto 30px;
}
#all231127 .group_ttl {
	padding: 0 40px;
	margin-bottom: 50px;
}
#all231127 div.video {
	height: 230px;
}
#all231127 .fv_movie > video {
	object-fit: cover;
    width: 100%;
}
.group_flex {
	margin: 20px 0 0;
	padding: 0;
}
.group_flex img {
	margin: 0 0 20px;
}

#all231127 .opacity li {
	background-color: #000;
	line-height: 0;
}
#all231127 .opacity img {
	opacity: 0.95;
	line-height: 0;
	margin: 0;
}

@media screen and (min-width: 813px) {
	.fs-l-pageMain section#all231127 {
		width: 100%;
		margin: 60px 0px auto;
	}
	#all231127 .group_ttl {
		padding: 0 20%;
	}
	.group_flex {
		display: flex;
	}
	#all231127 div.video {
		height: 100%;
	}
	.group_flex li:first-of-type {
		margin-right: 20px;
	}
	#all231127 .opacity li {
		width: 50%;
	    margin: 0 auto;
	}
}
/*スマホ横持用の特殊処理*/
@media screen and (min-width: 650px) and (max-width: 812px) {
	#all231127 div.video {
		height: 320px;
	}
}

@media screen and (min-width: 813px) {
	ul.up231212 li:first-of-type {
		margin: auto;
		width: 60%;
	}
}

.fs-l-pageMain section#simple {
    margin: -31px -20px auto;
}
@media screen and (min-width: 813px) {
	.fs-l-pageMain section#simple {
		width: 100%;
		margin: -7px 0px auto;
	}
	.fs-l-pageMain section#simple div.pc_only {
		width: 500px;
	    margin: auto;
	}
}
#simple div {
	width: 100%;
	position: relative;
	line-height: 0;
}
#simple div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
}
#simple h2 {
	position: absolute;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	width: 100%;
	bottom: 5%;
}
@media screen and (min-width: 813px) {
	#simple div {
		width: 425px;
		margin: auto;
	}
}
.all2410 div.sp_only {
	background-color: #000000;	
}
.all2410 div.sp_only > img {
	opacity: 0.9;	
}
@media screen and (min-width: 813px) {
	section#simple.all2410 > div.pc_only {
		width: 100%;
	}
	section#simple.all2410 > div.pc_only >img {
		width: 500px;
		margin: auto;
		display: block;
	}
	section#simple.all2410 h2 {
		color: #000;
		text-align: left;
		bottom: 0%;
		margin: 0;
		left: -9.5%;
		font-size: 13px;
	}
}