@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');
/*
font-family: 'Noto Sans JP', sans-serif;
300/Light
400/Regular
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap');
/*
font-family: 'Noto Serif JP', serif;
400/Regular
*/


@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400&display=swap');
/*
font-family: 'Jost', sans-serif;
300/Light
*/


@import url('https://fonts.googleapis.com/css2?family=Amiri:ital@0;1&display=swap');
/*
font-family: 'Amiri', serif;
Regular 400
Regular 400 Italic
*/






/* ---------- RESET ---------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, b, u, i, center,
ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea, input {
  margin:0;
  padding:0;
  border:0;
  font-size: 100%;
  font:inherit;
  vertical-align: baseline;
  text-decoration:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul, li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, textarea, button{
  -webkit-apparence:none;
  border:none;
  background: none;
  outline: none;
}
input:focus, textarea:focus{
  -webkit-apparence:none;
  outline: none;
  border:none;
}
img{
	border:none;
	outline:none;
	vertical-align:top;
	font-size:0;
	line-height:0;
}
img a{
	border:none;
	outline: none;
}
a:focus{
	outline:none;
}
hr {
  height:0;
  margin:0;
  padding:0;
  border:0;
}
h1, h2, h3, h4, h5, h6, p{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration:none;
}

input, textarea, button{
  -webkit-apparence:none;
  border:none;
  background: none;
  outline: none;
}
a{
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

img{
	width:100%;
	height:auto;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	transform:translate3d(0,0,0);
}
*{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-box-shadow:none;
    box-shadow:none;   
    outline:none;
	box-sizing:border-box;
	margin:0;
	padding:0;
}

.clear:after,
ul:after,
li:after,
dl:after{
	  content: "";
	  display: table;
	  float:none;
	  clear: both;
}

html{
    width: 100%;
    height: 100%;
}

body{
	color:#51534A;
    background:#C7C7AB;
    width: 100%;
    height: 100%;
    line-height: 1.7;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;   
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', Arial, Meiryo, sans-serif;
    font-weight:300;/*Light*/
	
}

/* =============================================== */


#loader-bg{
    display:block;
    position:fixed;
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    background:#FFF;
    z-index:1000;
    overflow:hidden;

}
#loader-bg .spinner {
    width: 100px;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    font-size: 0;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#loader-bg .spinner > div {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color:#D0CFCD;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.3s infinite ease-in-out both;
  animation: sk-bouncedelay 1.3s infinite ease-in-out both;
}

#loader-bg .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

#loader-bg .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}




/* ---------------- */

/* standard */
.fade,
.fade.delighter{
	opacity:0;
    position: relative;
    top: 40px;
	-webkit-transition: top 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.3s;
	transition: top 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.3s;
}
/* start */
.fade.delighter.started{
	opacity:1;
    top: 0;
}

/* end */
.fade.delighter.ended{
}
/* ---------------- */




#header{
    width: 100%;
    position: relative;
	background: #FFF;
}
#header .vegas{
    width: 100%;
    height: 61.5vw;
    position: relative;
}
#header .vegas .set01{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width:100%;
    z-index: 10;
}
#header .title{
	position: absolute;
	bottom: 16%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 26%;
	z-index: 30;
	opacity: 0;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transition: bottom 1.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s;
	transition: bottom 1.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s;
}
#header.start .title{opacity: 1;bottom: 12%;}

#header	.title h1{
	width: 100%;
}
#header	.title h2{
	width: 95%;
	margin: 3% auto 0;
}

#header .onward{
	position: absolute;
	width: 85px;
	top: 25px;
	right: 25px;
	z-index: 10;
}
#header .logo23ku{
	position: absolute;
	width: 145px;
	top: 25px;
	left: 25px;
	z-index: 10;
}



/*--------------------------------*/

.scrollbar{
    width: 9px;
    position: absolute;
    left:0;
	right: 0;
	margin: 0 auto;
    bottom: -40px;
    height:80px;
    z-index: 50;
}
.scrollbar p{
    width: 15px;
    margin-left: 8px;
}
.scrollbar .base{
	width:1px;
	height:80px;
	position: absolute;
	bottom:0;
	left: 4px;
	overflow: hidden;
    z-index: 5;
    background:#D0D0AA;
}
.scrollbar .bar{
	width:1px;
	height:80px;
	position: absolute;
	bottom:0;
	left: 4px;
	overflow: hidden;
    z-index: 10;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(
			to bottom,
			rgba(115, 120, 77, 1) 50%,
			rgba(115, 120, 77, 0) 50%
		);
		background-position: 0 -80px;
		background-size: 100% 200%;
		animation: scrolldown 5.0s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
	0% {background-position: 0 -80px;}
	50% {background-position: 0 0;}
	100% {background-position: 0 80px;}
}


/* ------------------------------------------------------------------------------------ */


#lead{
    width: 100%;
}
#lead .catch{
    width: 100%;
	padding: 130px 0 150px;
	background: #898D67;
	color: #CCC4A7;
}
#lead .catch .main{
    width: 100%;
    position: relative;
}
#lead .catch .main .line,
#lead .catch.delighter .main .line{
    width: 0%;
    height: 2px;
    background: #D0D0AA;
    position: absolute;
	z-index: 10;
    -webkit-transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}
#lead .catch .main .line.l01{top:39px;right:0;}
#lead .catch .main .line.l02{top:123px;left:0;}

#lead .catch.delighter.started .main .line{width:calc(50% + 280px);}

#lead .catch .main h1,
#lead .catch.delighter .main h1{
    width: 310px;
    margin: 0 auto;
    position: relative;
    top: 30px;
	z-index: 20;
	opacity:0;
   -webkit-transition: top 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.0s 0.5s;
	transition: top 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.0s 0.5s;
}
#lead .catch.delighter.started .main h1{
    top: 0;
	opacity:1;
}


#lead .catch .text,
#lead .catch.delighter .text{
	position: relative;
    top: 30px;
	opacity:0;
    -webkit-transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.5s, opacity 1.2s 1.5s;
	transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.5s, opacity 1.2s 1.5s;
}
#lead .catch.delighter.started .text{top: 0;opacity:1;}

#lead .catch h2{
	font-family: 'Noto Serif JP', serif;
    font-weight: 400;
	font-size: 32px;
	line-height: 1.0;
	letter-spacing: 0.1em;
	text-align: center;
	margin-top: 60px;
}

#lead .catch .copy{
	font-family: 'Noto Serif JP', serif;
    font-weight: 400;
	font-size: 24px;
	line-height: 2.0;
	letter-spacing: 0.08em;
    margin: 80px auto 0;
	text-align: center;
}

#lead .catch .copy span{font-family: 'Amiri', serif;font-size: 1.1em;}

#lead .catch.delighter .copy br.spview{display: none;}
#lead .catch.delighter .copy br.res{display: none;}

/* ------------------------------------------------------------------------------------ */



.topMovie{
	width: 80%;
	max-width: 1000px;
	margin: 190px auto 0;
	position: relative;
	font-size: 0;
}

.sceneMovie{
	width: 88%;
	max-width: 1000px;
	margin: 250px auto 0;
	position: relative;
	font-size: 0;
	padding: 0 2.5% 5% 2.5%;
}
.sceneMovie .bk,
.sceneMovie.delighter .bk{
	position: absolute;
	top: 100%;
	bottom: 0%;
	left: 0;
	right: 0;
	z-index: 1;
	-webkit-transition: top 1.8s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
	transition: top 1.8s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}
.sceneMovie.delighter.started .bk{top: 50%;}



.s01 .sceneMovie .bk{background:#A59164;}
.s02 .sceneMovie .bk{background:#898174;}
.s03 .sceneMovie .bk{background:#385441;}

.videoBox{}

.videoBox .youtube{
	position:relative;
	width:100%;
	background: #000;
	z-index: 5;
	padding-top:56.25%;
}
.videoBox .player{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.videoBox .youtube iframe{
	position:absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
}
.videoBox .thumb{
	position:absolute;
	top:0;
	bottom: 0;
	left: 0px;
	right: 0px;
	width: 100%;
	z-index:5;
    cursor: pointer;
	display: block;
	overflow: hidden;
	background: #CCC;
	
}		
.videoBox .thumb .playBT{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
	bottom: 0;
    z-index: 10;
    line-height: 1;
    text-align: center;
}
.videoBox .thumb .playBT .play{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
    width: 96px;
    height: 96px;
    margin: -48px auto 0;
    box-sizing: border-box;
}
.videoBox .thumb .playBT .play span{
	position: relative;
	z-index: 10;
}
.videoBox .thumb .playBT .play:after{
	content: "";
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #FFF;
	border-radius:4px;
	 -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (min-width: 769px) {
.videoBox .thumb:hover .playBT .play:after{
	top:-5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	background: rgba(0,0,0,.2);
}
}


/* ------------------------------------------------------------------------------------ */


.fullLine{
    width: 95%;
	max-width: 1220px;
    height: 5px;
    margin: 250px  auto 0;
	position: relative;
}

.fullLine p,
.fullLine.delighter p{
    width: 0%;
    height: 5px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    -webkit-transition: width 1.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: width 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.fullLine.delighter.started p{width: 100%;}

.fullLine.s01 p{background: #5F6638;}
.fullLine.s02 p{background: #691C32;}
.fullLine.s03 p{background: #36563D;}






/* ------------------------------------------------------------------------------------ */




.scene{
    width: 100%;
	padding: 0 2.5%;
    margin: 250px auto 0;
	overflow:hidden;
}
.scene.s01{}



.scene .sceneHeader{
	width: 95%;
	max-width: 1280px;
	margin: 0 auto;
}
.scene .sceneHeader .num{
	width: 78%;
	margin: 0 auto;
	line-height: 1;
	position: relative;
}
.scene .sceneHeader .num h4,
.scene .sceneHeader.delighter .num h4{
	position: relative;
	left: 130px;
	font-family: 'Amiri', serif;
	font-weight: 400;
	font-size: 30px;
	font-style: italic;
	opacity: 0;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s;
}
.scene .sceneHeader.delighter.started .num h4{left: 160px; opacity: 1;}

.scene .sceneHeader .num .line,
.scene .sceneHeader.delighter .num .line{
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 2px;
	margin-top: -2px;
	-webkit-transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
	transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.scene .sceneHeader.delighter.started .num .line{width: 140px;}

.scene.s01 .sceneHeader .num .line{background: #AA9767;}
.scene.s02 .sceneHeader .num .line{background: #8C837B;}
.scene.s03 .sceneHeader .num .line{background: #B6B09C;}



.scene .sceneHeader .caqtegoryName{
	width: 74%;
	margin: 65px auto 0;
	position: relative;
	text-align: center;
	line-height: 1;
	padding-bottom: 20px;
}
.scene .sceneHeader .caqtegoryName h2,
.scene .sceneHeader.delighter .caqtegoryName h2{
	position: relative;
	font-family: 'Amiri', serif;
	font-weight: 400;
	font-size: 32px;
	letter-spacing: 0.13em;
	font-style: italic;
	opacity: 0;
	top: -30px;
	-webkit-transition: top 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 1.5s 0.3s;
	transition: top 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 1.5s 0.3s;
}
.scene .sceneHeader.delighter.started .caqtegoryName h2{opacity: 1;top:0;}

.scene .sceneHeader .caqtegoryName .line,
.scene .sceneHeader.delighter .caqtegoryName .line{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 0%;
	height: 2px;
	-webkit-transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.scene .sceneHeader.delighter.started .caqtegoryName .line{width: 100%;}

.scene.s01 .sceneHeader .caqtegoryName .line{background: #AA9767;}
.scene.s02 .sceneHeader .caqtegoryName .line{background: #8C837B;}
.scene.s03 .sceneHeader .caqtegoryName .line{background: #B6B09C;}


.scene .sceneHeader h3,
.scene .sceneHeader.delighter h3{
	width: 100%;
	text-align: center;
	font-family: 'Amiri', serif;
	font-weight: 400;
	letter-spacing: 0.13em;
	line-height: 1.3;
	font-size: 40px;
	margin-top: 90px;
	position: relative;
	top: 25px;
	opacity: 0;
	-webkit-transition: top 2.0s cubic-bezier(0.25, 1, 0.5, 1) 1.2s, opacity 1.8s 1.2s;
	transition: top 2.0s cubic-bezier(0.25, 1, 0.5, 1) 1.2s, opacity 1.8s 1.2s;
}
.scene .sceneHeader.delighter.started h3{opacity: 1;top:0;}

.scene.s01 .sceneHeader h3{color: #5F6638;}
.scene.s02 .sceneHeader h3{color: #691C32;}
.scene.s03 .sceneHeader h3{color: #124734;}




.scene .sceneHeader .sceneImage{
	width: 100%;
	margin: 130px auto 0;
	position: relative;
}
.scene .sceneHeader .sceneImage .photo,
.scene .sceneHeader .sceneImage.delighter .photo{
	width: 82%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	opacity: 0;
	-webkit-transition: opacity 1.6s 1.5s;
	transition: opacity 1.6s 1.5s;
}
.scene .sceneHeader .sceneImage.delighter.started .photo{opacity: 1;}


.scene .sceneHeader .sceneImage .lineTop,
.scene .sceneHeader .sceneImage.delighter .lineTop{
	position: absolute;
	top: 35%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 10px;
	opacity: 0;
	-webkit-transition: top 2.0s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.8s;
	transition: top 2.0s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.8s;
}
.scene .sceneHeader .sceneImage.delighter.started .lineTop{top: 0;opacity: 1;}


.scene .sceneHeader .sceneImage .lineBottom,
.scene .sceneHeader .sceneImage.delighter .lineBottom{
	position: absolute;
	bottom: 35%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 10px;
	opacity: 0;
	-webkit-transition: bottom 2.0s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.8s;
	transition: bottom 2.0s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.8s;
}
.scene .sceneHeader .sceneImage.delighter.started .lineBottom{bottom: 0;opacity: 1;}



.scene.s01 .sceneHeader .sceneImage .lineTop,
.scene.s01 .sceneHeader .sceneImage .lineBottom{background:#A79569;}
.scene.s02 .sceneHeader .sceneImage .lineTop,
.scene.s02 .sceneHeader .sceneImage .lineBottom{background:#8D8678;}
.scene.s03 .sceneHeader .sceneImage .lineTop,
.scene.s03 .sceneHeader .sceneImage .lineBottom{background:#385441;}



/* ------------------------------------------------------------------------------------ */



.categoryMain{
	width:88%;
	max-width: 1040px;
	margin: 160px auto 0;
	padding:0;
}
.categoryMain .styles{
	width: 100%;
	position: relative;
}
.categoryMain .styleLeft{
	width: 100%;
	position: relative;
}
.categoryMain .styleLeft .photoSet{
	width: 54%;
	float: left;
}
.categoryMain .styleLeft .photoSet .photoInner{
	padding-top: 20%;
}
.categoryMain .styleLeft .photoSet .image,
.categoryMain .styleLeft.delighter .photoSet .image{
	width: 49%;
	position:absolute;
	top: 2%;
	left: 3%;
	z-index: 10;
	overflow: hidden;
	opacity:0;
	-webkit-transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
	transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
}
.categoryMain .styleLeft.delighter.started .photoSet .image{
	opacity:1;
	top: 0;
	left: 5%;
}
.categoryMain .styleLeft .photoSet .colorBK{
	width: 99.8%;
	padding-top: 124%;
	position: relative;
	z-index: 1;
}
.categoryMain .styleLeft .photoSet .colorBK span,
.categoryMain .styleLeft.delighter .photoSet .colorBK span{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.categoryMain .styleLeft.delighter.started .photoSet .colorBK span{
	width: 100%;
}
.s01 .categoryMain .styleLeft.delighter.started .photoSet .colorBK span{background:#A79569;}
.s02 .categoryMain .styleLeft.delighter.started .photoSet .colorBK span{background:#898174;}
.s03 .categoryMain .styleLeft.delighter.started .photoSet .colorBK span{background:#415B48;}


/*----------------*/


.cover-slider_wrap{
	position: relative; 
	padding-top: 148.8%;
	background: #FFF;
}
.cover-slider{
	backface-visibility: hidden;
}
.cover-slider_slide {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    padding: 0;
    margin: 0;
    background-size:cover;
    background-position: center;
    list-style: none;
    z-index: 0;
}
.s01 .slide01 .cover-slider_slide:nth-child(1){background-image: url("../../images/style01m01.jpg");}
.s01 .slide01 .cover-slider_slide:nth-child(2){background-image: url("../../images/style01m02.jpg");opacity: 0;}
.s01 .slide02 .cover-slider_slide:nth-child(1){background-image: url("../../images/style01w01.jpg");}
.s01 .slide02 .cover-slider_slide:nth-child(2){background-image: url("../../images/style01w02.jpg");opacity: 0;}
.s02 .slide01 .cover-slider_slide:nth-child(1){background-image: url("../../images/style02m01.jpg");}
.s02 .slide01 .cover-slider_slide:nth-child(2){background-image: url("../../images/style02m02.jpg");opacity: 0;}
.s02 .slide02 .cover-slider_slide:nth-child(1){background-image: url("../../images/style02w01.jpg");}
.s02 .slide02 .cover-slider_slide:nth-child(2){background-image: url("../../images/style02w02.jpg");opacity: 0;}
.s03 .slide01 .cover-slider_slide:nth-child(1){background-image: url("../../images/style03m01.jpg");}
.s03 .slide01 .cover-slider_slide:nth-child(2){background-image: url("../../images/style03m02.jpg");opacity: 0;}
.s03 .slide02 .cover-slider_slide:nth-child(1){background-image: url("../../images/style03w01.jpg");}
.s03 .slide02 .cover-slider_slide:nth-child(2){background-image: url("../../images/style03w02.jpg");opacity: 0;}



.cover-slider_slide.active {
	animation-duration: 1200ms;
	animation-name: slidein;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
}
.cover-slider_slide.inactive {
	animation-duration: 1200ms;
	animation-name: slideout;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes slidein {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes slideout {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

.cover-slider_inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
/*-------------------*/


.categoryMain .styleLeft .comment{
	width: 42%;
	height: calc(100% - 330px);
	position:absolute;
	top: 0;
	right: 0;
	z-index: 10;
}
.categoryMain .styleLeft .comment .inner,
.categoryMain .styleLeft.delighter .comment .inner{
	width: 90%;
	margin: 0 auto;
	position:absolute;
	left: 0;
	bottom: 6%;
	opacity:0;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
}
.categoryMain .styleLeft.delighter.started .comment .inner{
	bottom: 10%;
	opacity:1;
}

.categoryMain .styleLeft .itemBox{display: none;}

.categoryMain .comment p{
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1.7;
	margin-top: 1.5em;
}
.categoryMain .comment p span{
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	padding-right: 0.5em;
}


/*--------------------------------------/--*/


.categoryMain .styleRight{
	width: 100%;
	margin-top: -330px;
	position: relative;
}
.categoryMain .styleRight .photoSet{
	width: 54%;
	right: 0;
	z-index: 1;
	float: right;
}
.categoryMain .styleRight .photoSet .photoInner{
	padding-top: 0;
}
.categoryMain .styleRight .photoSet .image,
.categoryMain .styleRight.delighter .photoSet .image{
	width: 49%;
	position:absolute;
	top: 2%;
	right:3%;
	padding-top: 5%;
	z-index: 20;
	opacity:0;
	-webkit-transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
	transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
}
.categoryMain .styleRight.delighter.started .photoSet .image{
	opacity:1;
	top: 0%;
	right:5%;
}


.categoryMain .styleRight .photoSet .colorBK{
	width: 100%;
	padding-top: 153%;
	position: relative;
	margin-top: -330px;
}
.categoryMain .styleRight .photoSet .colorBK span,
.categoryMain .styleRight.delighter .photoSet .colorBK span{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.categoryMain .styleRight.delighter.started .photoSet .colorBK span{
	width: 100%;
}
.s01 .categoryMain .styleRight.delighter.started .photoSet .colorBK span{background:#A79569;}
.s02 .categoryMain .styleRight.delighter.started .photoSet .colorBK span{background:#898174;}
.s03 .categoryMain .styleRight.delighter.started .photoSet .colorBK span{background:#415B48;}




.categoryMain .styleRight .itemBox{
	width: 46%;
	padding: 330px 3% 0 5%;
	position: relative;
}
.categoryMain .styleRight .itemBox .itemBoxInner,
.categoryMain .styleRight.delighter .itemBox .itemBoxInner{
	position: relative;
	top: 20px;
	opacity:0;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
}
.categoryMain .styleRight.delighter.started .itemBox .itemBoxInner{
	top: 0;
	opacity:1;
}

.categoryMain .styleRight .itemBox h3{
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-size: 18px;
	border: 1px solid #FFF;
	width: 7em;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 1;
	padding: 7px 0 6px;
	margin-top: 40px;
	border-radius:20px;
}
.s01 .categoryMain .styleRight .itemBox h3{border-color: #5F6638;}
.s02 .categoryMain .styleRight .itemBox h3{border-color: #691C32;}
.s03 .categoryMain .styleRight .itemBox h3{border-color: #295135;}

.categoryMain .styleRight .itemBox h3.second{margin-top: 60px;}

.categoryMain .styleRight .comment{display: none;}


.itemList{
	overflow: hidden;
	margin-top: 15px;
}
.itemList dl{
    width: 100%;
    display: block;
    font-size: 0;
    position: relative;
    text-align: left;
	margin: 15px 0 0;
}
 .itemList dl .name{
    width: calc( 100% - 230px);
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    vertical-align: top;
    padding: 5px 0;
	letter-spacing: 0.05em;
}
.itemList dl .price{
    width: 120px;
	position: absolute;
	top: 0;
	right: 110px;
    font-size: 14px;
	text-align: right;
    line-height: 1.4;
    vertical-align: top;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
    letter-spacing: 0.05em;
    padding: 5px 0;
}
.itemList dl .price span{
    font-size: 11px;
	padding-left: 5px;
    letter-spacing: 0.03em;
}

.itemList dl dd{
	width: 75px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.itemList dl dd a{
    text-align: center;
	display: block;
    padding: 6px 0px 7px;
	width: 100%;
    border: 1px solid;
    color: #FFF;
	line-height: 1;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
    letter-spacing: 0.08em;
    font-size: 13px;
}
.s01 .itemList dl dd a{border-color: #AA9767;background: #AA9767;}
.s02 .itemList dl dd a{border-color: #8C837B;background: #8C837B;}
.s03 .itemList dl dd a{border-color: #B6B09C;background: #B6B09C;}








@media(min-width: 769px) {
.s01 .itemList dl dd a:hover{border-color: #5F6638;color: #5F6638; background: none;}
.s02 .itemList dl dd a:hover{border-color: #691C32;color: #691C32; background: none;}
.s03 .itemList dl dd a:hover{border-color: #124734;color: #124734; background: none;}
}

.itemList .otherItem{
    display: none;
}
.itemList .otherTrigger{
    margin:16px auto 0;
    border: 1px solid;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 9px 0 11px;
	width: 200px;
    cursor: pointer;
	color: #51534A;
	text-align: center;
    -webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.s01 .itemList .otherTrigger{border-color: #AA9767;}
.s02 .itemList .otherTrigger{border-color: #8C837B;}
.s03 .itemList .otherTrigger{border-color: #B6B09C;}


.itemList .otherTrigger p{
    padding-right: 30px;
    position: relative;
	display: inline-block;
}
.itemList .otherTrigger p:after,
.itemList .otherTrigger p:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: 1px;
    width: 17px;
    height: 1px;
    background: #51534A;
}
.itemList .otherTrigger p:before{
    -webkit-transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
	transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
	transform:rotate(90deg);
}
.itemList .otherTrigger.open p:before{
	transform:rotate(0deg);
}


@media(min-width: 769px) {
.itemList .otherTrigger:hover{ background: rgba(255,255,255,.3);}
}



/* --------------------------------------------------------------------------------------------- */





.itemCoordinate{
    width: 85%;
    max-width: 1000px;
    margin: 270px auto 0;
}


.itemCoordinate .title{
    width: 100%;
	position: relative;
}
.itemCoordinate .title .line,
.itemCoordinate .title.delighter .line{
    position:absolute;
	bottom: 2px;
	left: 0;
    height: 2px;
	z-index: 2;
    width: 0%;
    -webkit-transition: width 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	transition: width 1.0s cubic-bezier(0.25, 1, 0.5, 1);
}
.itemCoordinate .title.delighter.started .line{width: calc(100% - 210px);}

.s01 .itemCoordinate .title .line{background: #AA9767;}
.s02 .itemCoordinate .title .line{background: #8C837B;}
.s03 .itemCoordinate .title .line{background: #B6B09C;}


.itemCoordinate .title h2,
.itemCoordinate .title.delighter h2{
	font-family: 'Amiri', serif;
    font-weight: 400;
    line-height: 0.7;
	letter-spacing: 0.08em;
    font-size: 40px;
    text-align: right;
    position: relative;
	z-index: 5;
    left: -30px;
	opacity:0;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.2s 0.5s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.2s 0.5s;
}
.itemCoordinate .title.delighter.started h2{
    left: 0px;
	opacity:1;
}


.s01 .itemCoordinate .title h2{color: #5F6638;}
.s02 .itemCoordinate .title h2{color: #691C32;}
.s03 .itemCoordinate .title h2{color: #124734;}


.itemCoordinate .sideTitle,
.itemCoordinate .sideTitle.delighter{
    position: absolute;
    width: 64px;
	top: 0;
    left: -12%;
	opacity:0;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
}
.itemCoordinate .sideTitle.delighter.started{
    left: -8%;
	opacity:1;
}

.itemCoordinate .sideTitle .sub01,
.itemCoordinate .sideTitle.delighter .sub01{
    width: 100%;
    position: absolute;
    top: 20px;
    left:0;
    z-index: 5;
	opacity:0;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}

.itemCoordinate .sideTitle .sub02,
.itemCoordinate .sideTitle.delighter .sub02{
    width: 100%;
    position: absolute;
    top: -20px;
    left:0;
    z-index: 5;
	opacity:0;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}
.itemCoordinate .sideTitle.delighter.started .sub01,
.itemCoordinate .sideTitle.delighter.started .sub02{
    top: 0;
	opacity:1;
}

.itemCoordinate .styles{
    width: 100%;
	margin: 110px auto 0;
    position: relative;
}
.itemCoordinate .styles.second{margin-top: 170px;}


.itemCoordinate .styles .leftStyle{
    width: 48.5%;
    float: left;
}
.itemCoordinate .styles .rightStyle{
    width: 48.5%;
    float: right;
}
.itemCoordinate .coordinateImage{
    width: 100%;
}
.itemCoordinate .itemList{
	margin: 45px auto 0;
	width: 90%;
}
.itemCoordinate .itemList dl{
	margin: 0;
	position: relative;
}
.itemCoordinate .itemList dl .name{
    width: calc( 100% - 120px);
    display: block;
    font-size: 16px;
    line-height: 1.4;
    vertical-align: top;
    padding: 13px 0 1.6em;
	letter-spacing: 0.05em;
	border-top: 1px solid;
}
.itemCoordinate .itemList dl:first-child .name{border: none;}
.itemCoordinate .itemList .otherItem dl:first-child .name{border-top: 1px solid;}

.s01 .itemCoordinate .itemList dl .name{border-color: #AA9767 !important;}
.s02 .itemCoordinate .itemList dl .name{border-color: #8C837B !important;}
.s03 .itemCoordinate .itemList dl .name{border-color: #B6B09C !important;}


.itemCoordinate .itemList dl .price{
    width: 120px;
	position: absolute;
	top: 0%;
	right: 150px;
    font-size: 16px;
    line-height: 1.3;
    padding-top: 13px;
}
.itemCoordinate .itemList dl .price span{
    font-size: 12px;
	padding-left: 0px;
	display: block;
}
.itemCoordinate .itemList dl dd{
	width: 80px;
}
.itemCoordinate .itemList dl dd a{
    padding: 9px 0px 8px;
    font-size: 15px;
	line-height: 1;
}


.itemList dl dd .soon{
    text-align: center;
	display: block;
	width: 100%;
	line-height: 0.9;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 15px;
	padding-top: 2px;
}






/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */




.footer{
    width:85%;
	max-width: 1000px;
	margin: 250px auto 0;
    position: relative;
}



.footer .allBanner{
    width: 100%;
    margin: 0 auto;
}

.footer .allBanner a{
	width: 100%;
	display: block;
	color: #51534A;
	border-top:2px solid #36563D; 
	border-bottom:2px solid #36563D; 
}
.footer .allBanner a .text{
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
.footer .allBanner a .text h3{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	font-size: 27px;
	letter-spacing: 0.03em;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	 -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.footer .allBanner a .text h3 span{
	font-family: 'Jost', sans-serif;
    font-weight: 400;

	padding-right: 0.2em;
}



.footer .allBanner a .text h3 br{display: none;}

.footer .allBanner a .photo{
	width: 50%;
	margin-left: 50%;
	background:url("../../images/allbanner_pc.jpg") center center no-repeat;
	background-size: cover;
	position: relative;
	padding-top: 20%;
}
.footer .allBanner a .photo p{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	font-family: 'Amiri', serif;
    font-weight: 400;
    line-height: 1;
	border: 1px solid #36563D;
	font-size: 25px;
	padding: 10px 15px 5px;
	color: #36563D;
	background: #BAB9AF;
	opacity: 0;
	 -webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.footer .allBanner a .photo:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	opacity: 0;
	background: #F2F2F2;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

@media(min-width:769px) {

.footer .allBanner a:hover{border-color:#BAB9AF;}
.footer .allBanner a:hover .photo p{opacity: 1;}
.footer .allBanner a:hover .photo:after{opacity: 0.6;}
}


/*----------------------------------*/


.footer .footerTitle{
	width: 86%;
	margin: 220px auto 0;
	position: relative;
	padding-bottom: 30px;
}
.footer .footerTitle h3{
	font-family: 'Amiri', serif;
    font-weight: 400;
	font-size: 48px;
    line-height: 1;
	margin: 0 auto;
	position: relative;
	letter-spacing: 0.03em;
	z-index: 20;
	text-align: center;
}
.footer .footerTitle .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	margin: 0 auto;
	background: #36563D;
}


/*----------------------------------*/


.footer .otherContents{
    width: 100%;
    margin: 100px auto 0;
}
.footer .otherContents .otherTitle{
	font-weight: 400;
	text-align: center;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.footer .otherContents .otherTitle h3{font-size: 30px;}
.footer .otherContents .otherTitle h4{font-size: 24px;margin-top: 1em;}
.footer .otherContents .otherTitle h4 span{font-family: 'Jost', sans-serif;}
.footer .otherContents .inner{
    width: 100%;
    margin: 80px auto 0;
}
.footer .otherContents ul{
    width: 107%;
    font-size: 0;
}
.footer .otherContents ul li{
    width: 43%;
    margin-right: 7%;
    display: inline-block;
    vertical-align: top;
	position: relative;
}
.footer .otherContents ul li .bannerImage{
	width: 100%;
	padding-top: 45%;
	background-position:center center;
	background-size: cover;
	position: relative;
	border: 1px solid #BAB9AF;
}
.footer .otherContents ul li:first-child .bannerImage{background-image: url("../../images/nextbanner01.jpg")}
.footer .otherContents ul li:last-child .bannerImage{background-image: url("../../images/nextbanner02.jpg")}
.footer .otherContents ul li .bannerImage p{
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 10%;
	margin: 0 auto;
	width: 48%;
}


/*----------------------------------*/


.footer .fullLine{
    width: 110%;
	max-width: 1220px;
    height: 5px;
    margin: 230px  -5%;
	position: relative;
}

/*----------------------------------*/



.footer .golf{
    width: 100%;
    margin: 0 auto;
}
.footer .golf h2{
    width:70%;
    max-width:320px;
    margin: 0 auto;
}

.footer .golf .onlinestore{
	width: 100%;
	margin-top: 90px;
}
.footer .golf .onlinestore h3{
	padding: 0.8em 0 0.7em;
	font-family: 'Amiri', serif;
    font-weight: 400;
	font-size: 48px;
    line-height: 1;
	margin: 0 auto;
	position: relative;
	letter-spacing: 0.03em;
	text-align: center;
}
.footer .golf .onlinestore h3:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 85%;
	height: 2px;
	background: #36563D;
}
.footer .golf .onlinestore h3:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 85%;
	height: 2px;
	background: #36563D;
}
.footer .golf .onlinestore h4{
	font-weight: 400;
	text-align: center;
	line-height: 1.7;
	letter-spacing: 0.1em;
	font-size: 30px;
	margin-top: 20px;
}
	
/*----------------------------*/



.footer .golf ul{
    width: 101.5%;
    font-size: 0;
    text-align: center;
    margin-top: 120px;
}
.footer .golf ul li{
    width: 18.5%;
    margin-right: 1.5%;
    display: inline-block;  
}

.footer .golf ul li a{
    display: block;
	position: relative;
    background: #81855A;
    border: 2px solid #81855A;
    box-sizing: border-box;
}
.footer .golf ul li:first-child{
    width: 43%;
	display: block;
	margin-left: 28.5%;
	margin-bottom: 3.5%;
}
.footer .golf ul li:last-child{
    width: 48%;
	display: block;
	margin-left: 26.0%;
	margin-top: 12%;
}	
@media(min-width: 769px) {
.footer .golf ul li a:hover{background: #FFF;border-color:#BAB9AF;}
}




/*----------------------------*/

.footer .sns{
    width: 100%;
    text-align: center;
    margin: 200px auto;
}
.footer .sns h3{
	font-family: 'Jost', sans-serif;
	font-weight: 300;
    font-size: 21px;
    position: relative;
    letter-spacing: 0.02em;
    display: inline-block;
}
.footer .sns h3:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #36563D;
}
.footer .sns .instagram{
    width: 40px;
    margin: 30px auto 0;
}

/*----------------------------*/

.footer .onwardLogo{
    width: 200px;
    margin: 0 auto;
}


.footer .copyright{
    text-align: center;
	font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 40px 0 40px;
}




.footer .pagetop{
    position: fixed;
    width: 40px;
    bottom: 20px;
    right: -45px;
    cursor: pointer;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer .pagetop.view{
    right: 10px;
}

/*----------------------------*/



@media(min-width: 769px) {
.footer .sns a:hover,
.footer .onwardLogo a:hover{
    -webkit-opacity:0.6;
	-moz-opacity:0.6;
	-ms-opacity:0.6;
	opacity:0.6;
}
}










/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.sideNavi{
    position: fixed;
    top: 50%;
    right:-85px;
    width: 85px;
    max-width:7%;
    z-index: 100;
    -webkit-transition: right 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: right 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.sideNavi.view{right: 0;}
.sideNavi ul{}
.sideNavi ul li{
    width: 100%;
    padding: 14px 0;
}
.sideNavi ul li a{
    display: block;
}


.sideNavi ul li a .num{
	width: 100%;
    display: block;
	color: #909288;
	font-family: 'Amiri', serif;
	font-weight: 400;
	font-size: 15px;
	font-style: italic;
	position: relative;
	line-height: 0.9;
	padding-bottom: 5px;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

.sideNavi ul li a .num p{
	padding-left: 1.7em;
	letter-spacing: 0.02em;
}
.sideNavi ul li a .num span{
	font-size: 13px;
	position: absolute;
	font-family: 'Amiri', serif;
	font-weight: 400;
	font-style: italic;
	top: 0;
	left: 0;
}
.sideNavi ul li a .num:after{
	content: '';
	position: absolute;
	left: 0;
	width:1.2em;
	top: 0.8em;
	height: 1px;
	background: #909288;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;
}


.sideNavi ul li.n01.current a .num{color: #5f6638;}
.sideNavi ul li.n01.current a .num:after{background: #5f6638;}
.sideNavi ul li.n02.current a .num{color: #691c32;}
.sideNavi ul li.n02.current a .num:after{background: #691c32;}
.sideNavi ul li.n03.current a .num{color: #124734;}
.sideNavi ul li.n03.current a .num:after{background: #124734;}





.sideNavi ul li a .image{
	width: 100%;
    display: block;
	position: relative;
}
.sideNavi ul li a .image:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	opacity: 1;
	background: rgba(207,210,211,0.6);
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi ul li.current a .image:after{opacity:0;}



.sideNavi ul li a:hover .num{opacity:1;}
.sideNavi ul li a:hover .image:after{opacity:0;}

.sideNavi .pagetop{
    width: 45%;
    margin: 15px auto 0;
    cursor: pointer;
}




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



.spBottomNavi{display: none;}




/* ========================= Slider =============================== */

.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
	outline:none;
}

.otherSlider .slick-list{overflow:visible;}


.slick-list:focus{
	outline:none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}

.slick-slide{
    display: none;
    float: left;
	position: relative;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Prev Next Button */

.slick-prev,
.slick-next {
    cursor:pointer;
    font-size:0;
    line-height:0;
    margin-top:-20px;
    width: 40px;
    height: 40px;
    position:absolute;
    top:53vw;
    z-index:110;
}

.slick-prev{left:-50px;}
.slick-next{right:-50px;}

.slick-prev::after{
	display: block;  
    content: "";  
    position: absolute;  
    top: 0;
    bottom: 0;  
    left: 0;  
	right: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; 
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.slick-next::after{
	display: block;  
    content: "";  
    position: absolute;  
    top: 0;
    bottom: 0;  
    left: 0;  
	right: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; 
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.s01 .slick-prev::after{background-image:url("../../images/slick_prev01.svg");}
.s01 .slick-next::after{background-image:url("../../images/slick_next01.svg");}
.s02 .slick-prev::after{background-image:url("../../images/slick_prev02.svg");}
.s02 .slick-next::after{background-image:url("../../images/slick_next02.svg");}
.s03 .slick-prev::after{background-image:url("../../images/slick_prev03.svg");}
.s03 .slick-next::after{background-image:url("../../images/slick_next03.svg");}


/* slick-dots */
.slick-dots{
    display:block;
    list-style:outside none none;
    padding:0;
    text-align:center;
    width:100%;
	position:absolute;
	bottom:-25px;
	z-index:10;
}
.slick-dots li{
    cursor: pointer;
    display: inline-block;
    margin: 0 7px;
    padding: 0;
    position: relative;
}
.slick-dots li button{
    cursor:pointer;
    display:block;
    font-size:0;
    height:8px;
	width:8px;
	padding:0px;
    line-height: 0;
    outline:medium none;
    position: relative;
	background:#FFF;
    -webkit-border-radius:8px;
       -moz-border-radius:8px;
	        border-radius:8px;
}


.slick-dots li.slick-active button{
    background:#000;
}






