@charset "UTF-8";
a img {
	transition: none;
}
.fv {
	position: sticky;
	top: 0;
	display: none;
}
.fv.is-hide {
	visibility: hidden;
}
.fv-wrapper {
	position: relative;
}
.fv-scroll {
	display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 80px;
    /* bottom: 35px; */
	font-size: 11px;
	color: #fff !important;
	z-index: 100;
	text-decoration: none !important;
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.fv-scroll::after {
	content: '';
	display: inline-block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
	transform: rotate(45deg);
	position:absolute;
	bottom:0;
	animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove{
      0%{bottom:0;}
      50%{bottom:10%;}
     100%{bottom:0;}
}
#contents {
	position: relative;
	width: 100%;
	background-color: #fff;
	top: 0;
	transition: top 1s;
	/* z-index: 20 !important; */
}
/* #contents {
    z-index: 1200;
}
#header,#footer .pageTop {
	z-index: 1500;
}
.searchModalOverlay {
	z-index: 1501;
}
#searchWindow {
	z-index: 1502;
}
.navi-wrapper {
	z-index: 1501;
} */
#footer {
	position: relative;;
}
/* contents
----------------------------------------------- */
.contents{
	max-width:1280px;
	padding:0 37px;
	margin:0 auto;
	box-sizing: border-box;
}
/* headline
--------------------------------------------------------------*/
.headline{
	max-width: 100%;
	height:40px;
	text-align:center;
	box-sizing:border-box;
	overflow:hidden;
}
.headline li{
	height:40px;
	line-height:40px;
	padding:0 30px;
	white-space:nowrap;
	box-sizing:border-box;
	text-overflow: ellipsis;
	overflow: hidden;
	background:#000;
	color: #fff;
	font-weight: bold;
}
.headline a{
	display:block;
	text-decoration:none;
	white-space:nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #fff;
	font-weight: normal;
	font-size: 14px;
	letter-spacing: 0.05em;
}
.headline a:hover{
	opacity: .7;
}
.headline span {
	margin-right: 15px;
}
/* mainImage
--------------------------------------------------------------*/
#main-image{
	overflow:hidden;
	white-space:nowrap;
	margin-top: 0;
	background-color: #000;
}
@media all and (max-width: 1120px) {
	#main-image {
		/* margin-top: -95px; */
	}
}
@media all and (max-width: 767px) {
	#main-image {
		margin-top: -50px;
	}
}
#main-image ul li {
    height: 100%;
    min-height: 1px;
}
#main-image ul li a{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
#main-image ul li a img{
	/* width: 100vw; */
	width: 100%;
	/* height: 100vh; */
	/* height: 100svh; */
	/* object-fit: cover; */
	opacity: 0;
}

#main-image ul li a:hover img {
	opacity: 1;
}
#main-image ul li a img {
	opacity: 0;
    transition:none;
}
#main-image ul li a img.loaded {
    animation:fade-in 1.5s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	opacity: 1;
    transition:none;
}
#main-image ul li {
    /*opacity: 0;*/
    transition: none;
}
#main-image ul li.swiper-slide-active {
    opacity: 1;
    transform: translate(0);
    transition: all .7s ease;
}
@keyframes fade-in{
	0%{
	  opacity:0;
	}
	to{
	  opacity:1;
	}
 }
@keyframes zoom-fade{
	0%{
	  transform:scale(1.3);
	}
	to{
	  transform:scale(1);
	}
  }

#main-image .swiper-button-prev,
#main-image .swiper-button-next{
	margin-top:-37px;
	transition:.3s;
}
#main-image .swiper-button-prev{ left:48px; }
#main-image .swiper-button-next{ right:48px; }
	
#main-image .swiper-button-prev:hover,
#main-image .swiper-button-next:hover{
	opacity:0.7;
}
#main-image .swiper-button-prev:after,
#main-image .swiper-button-next:after{
	content:'';
	width: 30px;
    height: 90px;
	background:url(../images/slider_prev.svg) no-repeat left top;
	background-size: contain;
}
#main-image .swiper-button-next:after{
	background:url(../images/slider_next.svg) no-repeat left top;
	background-size: contain;
}
#main-image .swiper-button-next.swiper-button-disabled,
#main-image .swiper-button-prev.swiper-button-disabled{
	pointer-events:auto;
	opacity:1;
	cursor:pointer;
}
#main-image .swiper-container .swiper-pagination {
	display: flex;
	width: 65%;
	max-width: 600px;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: 8.5svw;
	top: unset !important;
}

#main-image .swiper-container .swiper-pagination-bullet {
    opacity: 1;
	flex: 1;
    position: relative;
    width: 100%;
    height: 3px;
    border-radius: 0;
    margin: 0 4px;
    background-color: rgb(233 233 233 / 50%);
    transition: background-color .3s ease;
}

#main-image .swiper-container .swiper-pagination-bullet::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: 0 0;
}

#main-image .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: sliderPagination 3.3s linear forwards
}

#main-image .swiper-container .swiper-pagination-bullet:hover {
    background-color: #fff;
}

@keyframes sliderPagination {
  100% {
    transform: scaleX(1);
        opacity: 1;
    }
}

/* contents
----------------------------------------------------------------------*/
.contents{
	display:flex;
	padding-top: 100px;
	justify-content: space-between;
}
/* main
----------------------------------------------------------------------*/
#main{
	flex:1;
	min-width: 0;
}
/* section */
.topContents:not(:first-of-type){
    margin-top: 150px;
}
.topContents .itemList{
	margin-top: 50px;
    margin-bottom: 40px;
}
.topContents li.btn {
	display: block;
	width: 100%;
	margin-top: 30px;
}
.topContents li.btn a {
	margin: 0 auto;
}

/* headLine */
#headLine + section{ margin-top:65px; }

#headLine ul li{
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#headLine ul li:not(:first-child){ margin-top:10px; }
#headLine ul li a{ font-size:13px; }

.itemList li {
    margin-bottom: 40px;
}
.itemList li .data .price {
	font-size: 16px;
}
.itemList li .data > .name:first-child {
    margin-top: 10px;
}
/* hashTag */
#hashTag {
	background-color: #eee;
}
.hashTag-slide {
	width: 100%;
	background-color: #eee;
	overflow: hidden;
    padding: 30px 0;
	max-width: 1920px;
	margin: 0 auto;
}
.hashTag-slide .swiper-slide {
	width: auto !important;
	margin: 0 7px;
  }
.hashTag-slide .swiper-slide a {
    width: auto;
    height: 100%;
    padding: 5px 10px;
    border: 1px solid #000;
    font-size: 16px;
    text-decoration: none;
}
.hashTag-slide > .swiper-wrapper{
	-webkit-transition-timing-function:linear!important; -o-transition-timing-function:linear!important; transition-timing-function:linear!important;
}
/* ranking */
#ranking li:nth-child(n+6) {
	display: none;
}
#ranking.topContents li.btn {
	display: block;
	width: 100%;
}
#ranking .itemList.ranking li.btn a:before {
	display: none;
}

/* pickup */
#pickup{
	position:relative;
}
.pickupTtl {
	text-align: center;
    margin: 30px 0 10px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.5px;
	word-break: break-all;
}
.pickup-slide{
	position:relative;
	overflow:hidden;
	opacity:0;
}
#pickup .itemList{
	flex-wrap: unset;
	margin-left: 0;
}
.pickup-slide.swiper-container-initialized{
	opacity:1;
}
#pickup .itemList li .data{
	font-size:12px;
}
#pickup .itemList li .data .brand{
	color:#000;
}
#pickup .itemList li .data .name{
	display:block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* swiper */
.topContents .swiper-button-next,
.topContents .swiper-button-prev{
	width: 36px;
	height: 36px;
	margin-top:0;
}
.topContents .swiper-button-prev:after,
.topContents .swiper-button-next:after{
	content:'';
    width: 20px;
	height: 25px;
	background:url(../img/slider_prev.svg) no-repeat left top;
	background-size: contain;
}
.topContents .swiper-button-next:after{
	background:url(../img/slider_next.svg) no-repeat left top;
	background-size: contain;
}
.topContents .swiper-button-prev{ left:-30px; }
.topContents .swiper-button-next{ right:-30px; }

#styling .swiper-button-next,
#styling .swiper-button-prev{
	top:45%;
}
/* slider(swiper) */
.topContents .swiper-button-next.swiper-button-disabled,
.topContents .swiper-button-prev.swiper-button-disabled{
	display:none;
}

/* centerBanner */
#centerBanner .video,
#centerBanner .image{
	position:relative;
	cursor:pointer;
}
#centerBanner .video:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/movie_ico.svg) no-repeat center center;
	background-size: 80px 80px;
}
#centerBanner .video.play:after {
	display:none;
}
#centerBanner video,
#centerBanner img{
	width: 100%;
	margin: 0 auto;
	vertical-align: middle;
}

/* news */
#news .itemList.list4Clm li{
	width:calc((100% - 42px ) / 4);
	margin:0 14px 45px 0;
}
#news .itemList.list4Clm li.btn {
	width: 100%;
	margin: 0;
}
#news .itemList.list4Clm li:nth-child(4n){
	margin-right:0;
}
#news .itemList li .data{ 
    margin: 10px 0px 0;
	text-align: left;
}
#news .itemList li .date {
	font-size: 16px;
}
#news .itemList li .ttl{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	white-space:normal;
	font-weight: bold;
	word-break: break-all;
}
/* moreViewBtn */
.btn.linkBtn a{
	width: 150px;
    height: 50px;
    line-height: 50px;
	font-size:14px;
	color: #000;
	border: 1px solid #999;
	background-color: #fff;
	letter-spacing: 1.4px;
	transition: .2s;
}
.btn.linkBtn a:hover{
	background-color: #000;
	color: #fff;
	opacity: 1;
}

/*--------------------------------------------------------------------
 sp
--------------------------------------------------------------------*/
@media all and (max-width: 767px) {
	.fv{
    padding-top: 50px;
}
	.fv-scroll {
		right: 0;
		/* bottom: 15px; */
	} 
	.contents{
		padding: 0 20px;
		padding-top: 80px;
	}
	.topContents:not(:first-of-type){
		margin-top:65px;
	}
	.topContents .itemList{
		margin-top: 40px;
		margin-bottom: 80px;
	}

	/* headLine */
	.headline{
		height: 35px;
	}
	.headline li{
		padding:0 10px;
		font-size:12px;
		height: 35px;
		line-height: 35px;
	}

	/* main-image */
	#main-image .swiper-container{
		width:100%;
	}
	#main-image .swiper-button-next,
	#main-image .swiper-button-prev{
		display:none;
	}
	#main-image .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	#main-image .swiper-container-horizontal>.swiper-pagination-bullets,
	#main-image .swiper-pagination-custom, .swiper-pagination-fraction{
		bottom: 50px;
	}

	/* hashTag */
	.hashTag-slide {
		padding: 10px 0 10px;
	}
	.hashTag-slide .swiper-wrapper {
		overflow: hidden;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}
	.hashTag-slide .swiper-wrapper li {
		display: inline-block;
		height: 70px;
		line-height: 70px;
		margin-right: 10px;
		margin-left: 0;
	}
	.hashTag-slide .swiper-wrapper li:first-child {
		margin-left: 15px;
	}
	.hashTag-slide .swiper-slide a {
		font-size: 13px;
	}

	/* topContents */
	.topContents .swiper-button-next,
	.topContents .swiper-button-prev{
		width:30px;
		height:30px;
	}
	.topContents .swiper-button-next {
		right: -16px;
	}

	/* section */
	.topContents .itemList{
		overflow: hidden;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		margin-left: -15px;
		margin-right: -15px;
	}
	.topContents .itemList li {
		width: 39vw;
		flex: 0 0 39vw;
		display: inline-block;
		margin-right: 10px;
	}
	.topContents .itemList.list4Clm li:not(:nth-child(2n)),
	.topContents .itemList.list4Clm li:not(:nth-child(4n)),
	.topContents .itemList.list5Clm li:not(:nth-child(3n)),
	.topContents .itemList.list5Clm li:not(:nth-child(5n)) {
		margin-right: 10px;
	}
	.topContents .itemList li:first-child {
		margin-left: 15px;
	}
	.topContents .swiper-wrapper {
		width: auto;
	}
	/* newItems */
	#newItems .itemList li .data .name .brand{
		color:#000;
	}
	/* ranking */
	#ranking li:nth-child(n+6) {
		display: block;
	}
	/* pickup */
	#pickup .pickup-slide {
		opacity: 1;
		margin-right: -15px;
	    margin-left: -15px;
	}
	#pickup.topContents li.btn {
		margin-right: 30px;
	}
	/* centerBanner */
	#centerBanner {
		margin-top: 0;
	}
	/* news */
	#news .itemList.list4Clm {
		flex-wrap: wrap;
		align-items: flex-start;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0;
	}
	#news .itemList.list4Clm li {
		width:100%;
		margin-right:0;
		margin-bottom: 15px;
		flex: auto;
	}
	#news .itemList.list4Clm li a {
		display: flex;
		align-items: center;
	}
	#news .itemList.list4Clm li.btn a {
		display: block;
		margin-top: 45px;
	}
	#news .itemList.list4Clm li a .image {
		width: 30vw;
		margin-right: 15px;
	}
	#news .itemList.list4Clm li a .data {
		width: calc((100% - 30vw) - 15px);
		margin: 0;
	}
	#news .itemList li .date {
		font-size: 12px;
	}
	#news .itemList li .data > span {
		margin-top: 0;
	}
	/* btn */
	.btn.linkBtn a{
		width: 112px;
		height: 40px;
		line-height: 40px;
		font-size: 13px;
		margin: 0 auto;
	}
	.headline a {
    font-size: 11px;
	}
	#main-image ul li a img {
    height: auto;
    width: 100%;
 }

}