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


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

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

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

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

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




/* ---------- 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.4s;
	transition: all 0.4s;
}
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{
	  content: "";
	  display: table;
	  float:none;
	  clear: both;
}



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

body{
	color:#64513D;
    background:#FFF;
    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%;
    min-height:100%;
    top:0px;
    left:0px;
	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:#DCE3EB;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s 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;
}

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





#header{
    width: 100%;
    position: relative;
	background: #F4F4D3;
}

#header .title{
	width: 78%;
	margin: 0 auto;
	padding-top: 43px;
	position: relative;
	max-width: 1200px;
	top: 80px;
	opacity:0;
	-webkit-transition: all 1.0s cubic-bezier(0.45, 0, 0.55, 1);
	transition: all 1.0s cubic-bezier(0.45, 0, 0.55, 1);
}
#header .title.start{top: 0;opacity:1.0;}

#header .title h1{
	width: 56%;
}
#header .title h2{
	width: 45%;
	position: absolute;
	bottom: 0;
	right: 0;
}

#header .mainImage{
	width: 100%;
	overflow: hidden;
}
#header .mainImage .pcImage{
	width: 82%;
	margin: 4% auto 0;
	max-width: 1280px;
	padding-bottom: 11%;
}

#header .mainImage .pcImage ul{
	width: 107%;
	font-size: 0;
}
#header .mainImage .pcImage ul li{
	width: 13%;
	margin-right: 7%;
	display: inline-block;
	padding-top: 40%;
	position: relative;
}
#header .mainImage .pcImage ul li .colorBar{
	width: 100%;
	height: 0%;
	position: absolute;
	z-index: 5;
	top:0;
	left: 0;
	right: 0;
	-webkit-transition: all 1.3s cubic-bezier(0.45, 0, 0.55, 1);
	transition: all 1.3s cubic-bezier(0.45, 0, 0.55, 1);
}
#header .mainImage .pcImage  ul li:nth-child(even) .colorBar{top:13%;}

#header .mainImage .pcImage.start ul li .colorBar{height: 94%;}

#header .mainImage .pcImage.start ul li.khaki .colorBar{
	-webkit-transition-delay:0.3s;
	transition-delay:0.3s;
}
#header .mainImage .pcImage.start ul li.white .colorBar{
	-webkit-transition-delay:0.6s;
	transition-delay:0.6s;
}
#header .mainImage .pcImage.start ul li.pink .colorBar{
	-webkit-transition-delay:0.9s;
	transition-delay:0.9s;
}
#header .mainImage .pcImage.start ul li.blue .colorBar{
	-webkit-transition-delay:1.2s;
	transition-delay:1.2s;
}

#header .mainImage .orange .colorBar{background:#FF7F40;}
#header .mainImage .khaki .colorBar{background:#827905;}
#header .mainImage .white .colorBar{background:#FFFFFF;}
#header .mainImage .pink .colorBar{background:#F26178;}
#header .mainImage .blue .colorBar{background:#54C8E8 ;}


#header .mainImage .pcImage ul li .colorImage{
	width: 182%;
	position: absolute;
	z-index: 10;
}
#header .mainImage .pcImage.start ul li.orange .colorImage{top:9%;left: -34%;}
#header .mainImage .pcImage.start ul li.khaki .colorImage{top:15%;left: -42%;}
#header .mainImage .pcImage.start ul li.white .colorImage{top:9%;left: -35%;}
#header .mainImage .pcImage.start ul li.pink .colorImage{top:18%;left: -35%;}
#header .mainImage .pcImage.start ul li.blue .colorImage{top:5%;left: -55%;}

#header .mainImage .pcImage ul li .colorImage img{
	opacity:0;
	position: relative;
	left: -10%;
	-webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
}

#header .mainImage .pcImage.start ul li .colorImage img{
	opacity:1;
	left: 0;
	-webkit-transition-delay:3.0s;
	transition-delay:3.0s;
}
#header .mainImage .pcImage.start ul li.khaki .colorImage img,
#header .mainImage .pcImage.start ul li.pink .colorImage img{
	-webkit-transition-delay:3.8s;
	transition-delay:3.8s;
}



#header .mainImage .spImage{display: none;}


#header .logo23ku{
    position:absolute;
    top: 20px;
    left: 20px;
    width: 57px;
    z-index: 120;
}
#header .logoOnward{
    position:absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    z-index: 120;
}


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

.scrollbar{
    width: 9px;
    position: absolute;
    left:0;
	right: 0;
	display: none;
	margin: 0 auto;
    bottom: -60px;
    height:120px;
    z-index: 50;
}
.scrollbar p{
    width: 15px;
    margin-left: 8px;
}
.scrollbar .base{
	width:1px;
	height:120px;
	position: absolute;
	bottom:0;
	left: 4px;
	overflow: hidden;
    z-index: 5;
    background:#BAB9AF;
}
.scrollbar .bar{
	width:1px;
	height:120px;
	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(100, 81, 61, 1) 50%,
			rgba(100, 81, 61, 0) 50%
		);
		background-position: 0 -120px;
		background-size: 100% 200%;
		animation: scrolldown 4.5s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

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




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






#lead{
    width: 100%;
	background: #FFF;
	padding: 110px 0 90px;
}

#lead h2{
	width: 95%;
	margin: 0 auto;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	text-align: center;
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 0.15em;
}
#lead p{
	width: 95%;
	margin: 1em auto 0;
	font-family: 'Sawarabi Gothic', sans-serif;
	font-size: 24px;
	letter-spacing: 0.08em;
	line-height: 1.8;
	text-align: center;
}


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




.menu{
    width: 100%;
    margin: 0 auto 100px;
	padding:90px 0; 
	background: #F4F4D3;
}

.menu h3{
	font-family: 'Jost', sans-serif;
	font-size: 26px;
	text-align: center;
	width: 95%;
	line-height: 1;
	letter-spacing: 0.05em;
	padding-bottom: 0.3em;
	margin:0 auto 13%;
	border-bottom: 2px solid #FFF;
}
.menu .m01 h3{border-color: #FF7F40;}
.menu .m02 h3{border-color: #827905;}
.menu .m03 h3{border-color: #FFFFFF;}
.menu .m04 h3{border-color: #F26178;}
.menu .m05 h3{border-color: #54C8E8;}


.menu .colorNavi{
    width: 98%;
	max-width: 890px;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
}
.menu .colorNavi li,
.menu .colorNavi.delighter li{
    width: 20%;
    padding: 0 0.8%;
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: 30px;
	opacity:0;
    -webkit-transition: top 1.0s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.0s;
	transition: top 1.0s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.0s;
}
.menu .colorNavi.delighter.started li{top: 0;opacity:1;}



.menu .colorNavi.delighter li.m02{
	-webkit-transition-delay:0.3s;
	transition-delay:0.3s;
}
.menu .colorNavi.delighter li.m03{
	-webkit-transition-delay:0.6s;
	transition-delay:0.6s;
}
.menu .colorNavi.delighter li.m04{
	-webkit-transition-delay:0.9s;
	transition-delay:0.9s;
}
.menu .colorNavi.delighter li.m05{
	-webkit-transition-delay:1.2s;
	transition-delay:1.2s;
}


.menu .colorNavi .navImage{
    width: 100%;
    margin: 0 auto;
    position: relative;
	overflow: hidden;
	border-radius:100%;
	z-index: 1;

}
.menu .colorNavi .navImage:after{
	content: "";
	display: block;
	position: absolute;
	z-index: 100;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom:-1px;
	border: 3px solid #902;
	box-sizing: border-box;
	border-radius:100%;
}
.menu .colorNavi .m01 .navImage:after{border-color: #FF7F40;}
.menu .colorNavi .m02 .navImage:after{border-color: #827905;}
.menu .colorNavi .m03 .navImage:after{border-color: #FFFFFF;}
.menu .colorNavi .m04 .navImage:after{border-color: #F26178;}
.menu .colorNavi .m05 .navImage:after{border-color: #54C8E8;}


.menu .colorNavi .navImage .visual{
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	overflow: hidden;
	border-radius:100%;
	position: relative;
    -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);
    -webkit-transform:scale3d(1.05,1.05,1);
	transform:scale3d(1.05,1.05,1);
}


.menu .colorNavi .m01 .visual{background-image:url("../../images/menu01.jpg");}
.menu .colorNavi .m02 .visual{background-image:url("../../images/menu02.jpg");}
.menu .colorNavi .m03 .visual{background-image:url("../../images/menu03.jpg");}
.menu .colorNavi .m04 .visual{background-image:url("../../images/menu04.jpg");}
.menu .colorNavi .m05 .visual{background-image:url("../../images/menu05.jpg");}


.menu .colorNavi .navImage .visual:after{
	content: "";
	position: absolute;
	border-radius:100%;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	opacity: 0;
	-webkit-transition:opacity 0.5s;
	transition: opacity 0.5s;
}
.menu .colorNavi .m01 .visual:after{background: rgba(247,203,152,0.6);}
.menu .colorNavi .m02 .visual:after{background: rgba(200,202,167,0.6);}
.menu .colorNavi .m03 .visual:after{background: rgba(255,255,255,0.5);}
.menu .colorNavi .m04 .visual:after{background: rgba(243,201,184,0.6);}
.menu .colorNavi .m05 .visual:after{background: rgba(197,231,216,0.6);}



.menu .colorNavi .navImage .caption{
	position: absolute;
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
	height: 100%;
	
}
.menu .colorNavi .navImage .caption p{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
	color: #64513D;
    margin: 0 auto;
    width: 7em;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
	font-style: italic;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-transform:translateY(-50%) scale(0.8);
	transform:translateY(-50%) scale(0.8);
	opacity:0;
    -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);
}

.menu .colorNavi .navImage a{
    position: absolute;
    z-index: 110;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


@media(min-width:769px) {
.menu .colorNavi .navImage:hover .visual {
	-webkit-transform:scale3d(1,1,1);
	transform:scale3d(1,1,1);
}
.menu .colorNavi .navImage:hover .caption p{
	opacity:1;
    -webkit-transform:translateY(-50%) scale(1);
	transform:translateY(-50%) scale(1);
}
.menu .colorNavi .navImage:hover .visual:after{opacity: 1;}

}






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



.category{
	width:88%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 70px 0 230px;
}

.category .colorTitle{
	width: 100%;
	position: relative;
	margin-bottom: 200px;
}

.category .colorTitle .bar,
.category .colorTitle.delighter .bar{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 20px;
	-webkit-transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) ;
	transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) ;
}
.category .colorTitle.delighter.started .bar{
    width: 100%;
}

.category.orange .colorTitle .bar,
.category.orange .colorTitle.delighter .bar{background: #FDD9C8;}
.category.khaki .colorTitle .bar,
.category.khaki .colorTitle.delighter .bar{background: #B8B45B;}
.category.white .colorTitle .bar,
.category.white .colorTitle.delighter .bar{background: #EDEFF1;}
.category.pink .colorTitle .bar,
.category.pink .colorTitle.delighter .bar{background: #F7E5DF;}
.category.blue .colorTitle .bar,
.category.blue .colorTitle.delighter .bar{background: #BBDDF1;}


.category .colorTitle h2,
.category .colorTitle.delighter h2{
	font-family: 'Jost', sans-serif;
	font-size: 66px;
	font-weight: 300;
	width: 90%;
	margin: 0 auto;
	position: relative;
	left: 20px;
	line-height: 0.7;
	letter-spacing: 0.05em;
	z-index: 20;
	opacity:0;
	-webkit-transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 0.8 0.6s;
	transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 0.8 0.6s;
}
.category .colorTitle.delighter.started h2{opacity:1;left: 0;}


.category.orange .colorTitle h2{color:#FF6B00;}
.category.khaki .colorTitle h2{color:#5F6638;}
.category.white .colorTitle h2{color:#BBBBBB;}
.category.pink .colorTitle h2{color:#FA7598;}
.category.blue .colorTitle h2{color:#0097CE;}


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


.category .styles{
	width: 100%;
	position: relative;
}

.category .styleLeft{
	width: 100%;
}
.category .styleLeft .balloon,
.category .styleLeft.delighter .balloon{
	width: 200px;
	padding-top: 200px;
	z-index: 50;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius:100%;
	opacity:0;
    -webkit-transition: transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6) 1.2s, opacity 0.6s 1.2s ;
	transition: transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6) 1.2s, opacity 0.6s 1.2s;
	-webkit-transform:translate(30%,-50%) scale(0.8);
	transform:translate(30%,-50%) scale(0.8);
}
.category .styleLeft.delighter.started .balloon{
	opacity:1;
	-webkit-transform:translate(30%,-50%) scale(1.0);
	transform:translate(30%,-50%) scale(1.0);
}
.category .styleLeft .balloon h4{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'Sawarabi Gothic', sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	color:  #FFF;
	line-height: 1.6;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.category.white .styleLeft .balloon h4{color: #BBBBBB;}



.category.orange .styleLeft .balloon,
.category.orange .styleLeft.delighter .balloon{background: rgba(255,144,21,0.7);}
.category.khaki .styleLeft .balloon,
.category.khaki .styleLeft.delighter .balloon{background: rgba(152,148,0,0.7);}
.category.white .styleLeft .balloon,
.category.white .styleLeft.delighter .balloon{background: rgba(225,227,231,0.7);}
.category.pink .styleLeft .balloon,
.category.pink .styleLeft.delighter .balloon{background: rgba(255,164,180,0.7);}
.category.blue .styleLeft .balloon,
.category.blue .styleLeft.delighter .balloon{background: rgba(141,198,232,0.7);}




.category .styleLeft .photoSet{
	width: 54%;
	z-index: 1;
	float: left;
}
.category .styleLeft .photoSet .photoInner{
	padding-top: 20%;
}
.category .styleLeft .photoSet .image,
.category .styleLeft.delighter .photoSet .image{
	width: 49%;
	position:absolute;
	top: 2%;
	left: 3%;
	z-index: 10;
	opacity:0;
	-webkit-transition: top 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s, left 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s, opacity 1.4s 1.0s;
	transition: top 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s, left 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s, opacity 1.4s 1.0s;
}
.category .styleLeft.delighter.started .photoSet .image{
	opacity:1;
	top: 0;
	left: 5%;
}

.category .styleLeft .photoSet .colorBK{
	width: 99.8%;
	padding-top: 124%;
	position: relative;
	z-index: 1;
}
.category .styleLeft .photoSet .colorBK span,
.category .styleLeft.delighter .photoSet .colorBK span{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	-webkit-transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.category .styleLeft.delighter.started .photoSet .colorBK span{
	width: 100%;
}



.category.orange .styleLeft .photoSet .colorBK span{background: rgba(255,144,21,0.7);}
.category.khaki .styleLeft .photoSet .colorBK span{background: rgba(152,148,0,0.7);}
.category.white .styleLeft .photoSet .colorBK span{background: rgba(225,227,231,0.7);}
.category.pink .styleLeft .photoSet .colorBK span{background: rgba(255,164,180,0.7);}
.category.blue .styleLeft .photoSet .colorBK span{background: rgba(141,198,232,0.7);}







.category .styleLeft .comment{
	width: 45%;
	 float: right;
	 position: relative;
	 margin-top: 12%;
}
.category .styleLeft .comment .inner,
.category .styleLeft.delighter .comment .inner{
	width: 90%;
	margin: 0 auto;
	position:relative;
	top: 20px;
	opacity:0;
	-webkit-transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s, opacity 0.8s 1.8s;
		  		  transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s, opacity 0.8s 1.8s;
}
.category .styleLeft.delighter.started .comment .inner{
	top: 0;
	opacity:1;
}

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

.category .comment p{
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1.7;
	margin-bottom: 2.0em;
	font-weight: 300;
}
.category .comment p span{
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	padding-right: 0.4em;
}


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


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




.category .styleRight .photoSet .colorBK{
	width: 100%;
	padding-top: 153%;
	position: relative;
	margin-top: -330px;
}
.category .styleRight .photoSet .colorBK span,
.category .styleRight.delighter .photoSet .colorBK span{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	-webkit-transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.category .styleRight.delighter.started .photoSet .colorBK span{
	width: 100%;
}

.category.orange .styleRight .photoSet .colorBK span{background: rgba(255,144,21,0.7);}
.category.khaki .styleRight .photoSet .colorBK span{background: rgba(152,148,0,0.7);}
.category.white .styleRight .photoSet .colorBK span{background: rgba(225,227,231,0.7);}
.category.pink .styleRight .photoSet .colorBK span{background: rgba(255,164,180,0.7);}
.category.blue .styleRight .photoSet .colorBK span{background: rgba(141,198,232,0.7);}



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




.category .styleRight .itemBox h3{
	font-family: 'Lexend Mega', sans-serif;
	font-size: 18px;
	border: 1px solid #FFF;
	width: 7em;
	letter-spacing: -0.05em;
	text-align: center;
	line-height: 1;
	padding: 7px 0 7px;
	margin-top: 38px;
	border-radius:20px;
}

.category.orange .styleRight .itemBox h3{border-color: #FF6B00;}
.category.khaki .styleRight .itemBox h3{border-color: #827905;}
.category.white .styleRight .itemBox h3{border-color: #BBBBBB;}
.category.pink .styleRight .itemBox h3{border-color: #FA7598;}
.category.blue .styleRight .itemBox h3{border-color: #0097CE;}


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






.itemList{}


.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: 'Poppins', 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: 70px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.itemList dl dd a{
	line-height: 1;
	font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
	letter-spacing: 0.08em;
	text-align: center;
	display: block;
    padding: 6px 0px 7px;
	width: 100%;
    border: 1px solid;
    color: #FFF;
	border-color: #64513D;
	background: #64513D;
}
@media(min-width: 769px) {
.orange .itemList dl dd a:hover{background:#FF9D6C;color: #64513D;}
.khaki .itemList dl dd a:hover{background:#C0CA80;color: #64513D;}
.white .itemList dl dd a:hover{background:#E1E3E7;color: #64513D;}
.pink .itemList dl dd a:hover{background:#FFB1B9;color: #64513D;}
.blue .itemList dl dd a:hover{background:#96DAEA;color: #64513D;}
}


.itemList .otherItem{
    display: none;
}
.itemList .otherTrigger{
    margin:16px auto 0;
    border: 1px solid #64513D;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 8px 0 10px;
	width: 90%;
    cursor: pointer;
	text-align: center;
    -webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.itemList .otherTrigger p{
    padding-right: 17px;
    position: relative;
	display: inline-block;
}
.itemList .otherTrigger p:after,
.itemList .otherTrigger p:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: 1px;
    width: 11px;
    height: 1px;
    background: #64513D;
}
.itemList .otherTrigger p:before{
    -webkit-transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
	transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-transform:rotate(90deg);
	transform:rotate(90deg);
}
.itemList .otherTrigger.open p:before{
    -webkit-transform:rotate(0deg);
	transform:rotate(0deg);
}

@media(min-width: 769px) {
.itemList .otherTrigger:hover{background:#EFEFEF;}
}



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


.coordinate{
	width: 100%;
	position:relative;
	margin-top: 240px;
}

.coordinate .cooedTitle{
	width: 77%;
	margin: 0 auto;
	position: relative;
}
.coordinate .cooedTitle .bar,
.coordinate .cooedTitle.delighter .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0%;
	height: 20px;
	margin: 0 auto;
	-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) ;
}
.coordinate .cooedTitle.delighter.started .bar{width: 100%;}



.orange .coordinate .cooedTitle .bar,
.orange .coordinate .cooedTitle.delighter .bar{background: #FDD9C8;}
.khaki .coordinate .cooedTitle .bar,
.khaki .coordinate .cooedTitle.delighter .bar{background: #B8B45B;}
.white .coordinate .cooedTitle .bar,
.white .coordinate .cooedTitle.delighter .bar{background: #EDEFF1;}
.pink .coordinate .cooedTitle .bar,
.pink .coordinate .cooedTitle.delighter .bar{background: #F7E5DF;}
.blue .coordinate .cooedTitle .bar,
.blue .coordinate .cooedTitle.delighter .bar{background: #BBDDF1;}



.coordinate .cooedTitle h3,
.coordinate .cooedTitle.delighter h3{
	font-family: 'Jost', sans-serif;
	font-size: 66px;
	font-weight: 300;
	margin: 0 auto;
	position: relative;
	line-height: 0.7;
	letter-spacing: 0.05em;
	z-index: 20;
	text-align: center;
	top: -15px;
	opacity:0;
	-webkit-transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 0.8s 0.6s;
	transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 0.8s 0.6s;
}
.coordinate .cooedTitle.delighter.started h3{opacity:1;top: 0;}

.orange .coordinate .cooedTitle h3,
.orange .coordinate .cooedTitle.delighter h3{color:#FF6B00;}
.khaki .coordinate .cooedTitle h3,
.khaki .coordinate .cooedTitle.delighter h3{color:#5F6638;}
.white .coordinate .cooedTitle h3,
.white .coordinate .cooedTitle.delighter h3{color:#BBBBBB;}
.pink .coordinate .cooedTitle h3,
.pink .coordinate .cooedTitle.delighter h3{color:#FA7598;}
.blue .coordinate .cooedTitle h3,
.blue .coordinate .cooedTitle.delighter h3{color:#0097CE;}


.coordinate .cooedItems{
	width: 100%;
	margin-top: 100px;
	text-align: center;
}

.coordinate .cooedItems li,
.coordinate .cooedItems.delighter li{
	opacity:0;
	position: relative;
	top: 20px;
	-webkit-transition: top 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 1.6s 0.6s;
	transition: top 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 1.6s 0.6s;
}
.coordinate .cooedItems.delighter.started li{opacity:1;top: 0px;}

.coordinate .cooedItems li.left,
.coordinate .cooedItems.delighter li.left{
	padding-right: 2%;
	-webkit-transition-delay:0.3s;
	transition-delay:0.3s;
}
.coordinate .cooedItems li.center,
.coordinate .cooedItems.delighter li.center{
	padding:0  1%;
	-webkit-transition-delay:0.6s;
	transition-delay:0.6s;
}
.coordinate .cooedItems li.right,
.coordinate .cooedItems.delighter li.right{
	padding-left: 2%;
	-webkit-transition-delay:0.9s;
	transition-delay:0.9s;
}

.coordinate .cooedItems h4{
	font-family: 'Lexend Mega', sans-serif;
	font-size: 18px;
	letter-spacing: -0.05em;
	text-align: center;
	line-height: 1;
	padding: 0 5px 5px;
	display: inline-block;
	position: relative;
}
.coordinate .cooedItems h4:after{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #64513D;
}

.coordinate .cooedItems .photo{
	margin-top: 40px;
	position: relative;
}
.coordinate .cooedItems .photo span,
.coordinate .cooedItems.delighter .photo span{
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 10;
	background:#FFF;
	-webkit-transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s;
	transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s;
}
.coordinate .cooedItems.delighter.started .photo span{
	width: 0;
}

.orange .coordinate .cooedItems .photo span{background:#FDD9C8;}
.khaki .coordinate .cooedItems .photo span{background:#B8B45B;}
.white .coordinate .cooedItems .photo span{background:#EDEFF1;}
.pink .coordinate .cooedItems .photo span{background:#F7E5DF;}
.blue .coordinate .cooedItems .photo span{background:#BBDDF1;}


.coordinate .cooedItems .itemBox{margin-top: 20px;}
.coordinate .cooedItems .itemList dl{margin-top: 10px;}
.coordinate .cooedItems .itemList dl .name{width: calc( 100% - 190px);}
.coordinate .cooedItems .itemList dl .price{width: 110px;right: 80px;}
.coordinate .cooedItems .itemList dl dd{width: 62px;}
.coordinate .cooedItems .itemList dl dd a{padding: 5px 0px 6px;}
.coordinate .cooedItems .itemList .otherTrigger{
    padding:8px 12px 9px;
	width: auto;
	display: inline-block;
}




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



.colorBanner{
	width: 100%;
	margin-top: 200px;
}
.colorBanner a{
	width: 100%;
	height: 200px;
	display: block;
	position: relative;
}

.colorBanner .photo{
	height: 100%;
	margin-left: 60%;
}
.colorBanner .photo img{
	width: auto;
	height: 100%;
}

.colorBanner .waku{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	border-width: 3px;
	border-style: solid;
	box-sizing:border-box;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.orange .colorBanner .waku{background: rgba(255,144,21,0.65);border-color: rgba(255,144,21,0);}
.khaki .colorBanner .waku{background: rgba(152,148,0,0.65);border-color: rgba(152,148,0,0);}
.white .colorBanner .waku{background: rgba(225,227,231,0.65);border-color: rgba(225,227,231,0);}
.pink .colorBanner .waku{background: rgba(255,164,180,0.65);border-color: rgba(255,164,180,0);}
.blue .colorBanner .waku{background: rgba(141,198,232,0.8);border-color: rgba(144,198,232,0);}



.colorBanner .waku h4{
	position: absolute;
	left: -3px;
	top: 50%;
	font-family: 'Sawarabi Gothic', sans-serif;
	color: #FFF;
	font-size: 26px;
	line-height: 1.4;
	letter-spacing: 0.03em;
	width: 17em;
	z-index: 10;
	padding:0 0 0.8em 2.5em;
	border-bottom: 2px solid #FFF;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.white .colorBanner .waku h4{color: #64513D;border-color:#64513D;}


@media(min-width: 769px) {
.orange .colorBanner a:hover .waku{background: rgba(255,144,21,0);border-color:#FF9015;}
.khaki .colorBanner a:hover .waku{background: rgba(152,148,0,0);border-color:#5F6638;}
.white .colorBanner a:hover .waku{background: rgba(225,227,231,0);border-color:#BBBBBB;}
.pink .colorBanner a:hover .waku{background: rgba(255,164,180,0);border-color:#FA7598;}
.blue .colorBanner a:hover .waku{background: rgba(144,198,232,0);border-color:#0097CE;}

.orange .colorBanner a:hover .waku h4{color: #FF9015;border-color: #FF9015;}
.khaki .colorBanner a:hover .waku h4{color: #5F6638;border-color: #5F6638;}
.white .colorBanner a:hover .waku h4{color: #BBBBBB;border-color: #BBBBBB;}
.pink .colorBanner a:hover .waku h4{color: #FA7598;border-color: #FA7598;}
.blue .colorBanner a:hover .waku h4{color: #0097CE;border-color: #0097CE;}

}







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



.footer{
    width:85%;
	max-width: 1040px;
	margin: 100px auto 0;
    position: relative;
}
.footer .allBanner{
    width: 100%;
    margin: 0 auto;
}
.footer .allBanner a{
	width: 100%;
	padding-top: 200px;
	display: block;
	color: #64513D;
	border:2px solid #F4F4D3;
	background: #F4F4D3;
}
.footer .allBanner a .text{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 620px;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.footer .allBanner a .text h3{
	font-size: 35px;
	letter-spacing: 0.03em;
	line-height: 1;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #64513D;
	
}

@media(min-width:769px) {
.footer .allBanner a:hover{border-color:#64513D;background: #FFF;
}
}



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


.footer .footerTitle{
	width: 86%;
	margin: 260px auto 0;
	position: relative;
}
.footer .footerTitle h3{
	font-family: 'Jost', sans-serif;
    font-weight: 300;
	font-size: 65px;
    line-height: 1;
	margin: 0 auto;
	position: relative;
	letter-spacing: 0.03em;
	z-index: 20;
	color: #6F6259;
	text-align: center;
}
.footer .footerTitle .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.65em;
	width: 100%;
	height: 20px;
	margin: 0 auto;
	z-index: 10;
	background: #E5DFC6;
}


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



.footer .otherContents{
    width: 95%;
    margin: 140px 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: 46%;
	background-position:center center;
	background-size: cover;
	position: relative;
}
.footer .otherContents ul li:first-child .bannerImage{background-image: url("../../images/other01_pc.jpg")}
.footer .otherContents ul li:last-child .bannerImage{background-image: url("../../images/other02_pc.jpg")}

.footer .otherContents ul li .bannerImage p{
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	top: 50%;
	margin: 0 auto;
	width: 57%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.footer .otherContents ul li .bannerImage p span{
	position: absolute;
	top: 25%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	z-index: 7;
}
.footer .otherContents ul li .bannerImage a{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(225,227,231,0.68);
	border: 2px solid rgba(235,190,175,0);
}
.footer .otherContents ul li .bannerImage h5{
	position: absolute;
    top: 50%;
    left: 50%;
	color: #FFF;
	background: rgba(235,190,175,1);
	display: inline-block;
    margin: 0 auto;
	padding: 8px 10px 6px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
	font-style: italic;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
	z-index: 15;
    -webkit-transform:translate(-50%,-50%) scale(0.8);
	transform:translate(-50%,-50%) scale(0.8);
	opacity:0;
    -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) {
.footer .otherContents ul li .bannerImage a:hover h5{
	-webkit-transform:translate(-50%,-50%) scale(1);
	transform:translate(-50%,-50%) scale(1);
	opacity:1;
}
.footer .otherContents ul li .bannerImage a:hover{border-color: rgba(235,190,175,1);background: rgba(225,227,231,0);}
.footer .otherContents ul li .bannerImage a:hover p{opacity: 0;}
}


.footer .otherContents h4{
	font-size: 28px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
	margin-top: 0.6em;
}
.footer .otherContents h4 span{
	font-family: 'Jost', sans-serif;
	font-size: 30px;
	line-height: 1.3;
}


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


.footer .golf{
    width: 100%;
    margin: 300px auto 0;
}
.footer .golf h2{
    width:70%;
    max-width:360px;
    margin: 0 auto;
}
.footer .golf .onlinestore{
	width: 100%;
	margin-top: 100px;
}
.footer .golf .onlinestore h3{
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: 50px;
    line-height: 0.75;
	margin: 0 auto;
	position: relative;
	letter-spacing: 0.03em;
	text-align: center;
}
.footer .golf .onlinestore h3:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 85%;
	height: 20px;
	z-index: -1;
	background: #E5DFC6;
}
.footer .golf .onlinestore h4{
	text-align: center;
	line-height: 1.7;
	letter-spacing: 0.05em;
	font-size: 30px;
	margin-top: 1em;
}
	
/*----------------------------*/

.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: #F4F4D3;
    border: 1px solid #F4F4D3;
    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:#6F6259;}
}


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

.footer .sns{
    width: 100%;
    text-align: center;
    margin: 240px auto;
}
.footer .sns h3{
	font-family: 'Jost', sans-serif;
    font-size: 30px;
    position: relative;
    letter-spacing: 0.02em;
    display: inline-block;
}
.footer .sns h3:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #64513D;
}
.footer .sns .instagram{
    width: 40px;
    margin: 25px 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);
	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{opacity:0.6;}
}




























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

.sideNavi{
    position: fixed;
    top: 50%;
    right:-40px;
    width: 38px;
    z-index: 100;
    -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);
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.sideNavi.view{right: 12px;}
.sideNavi ul{}
.sideNavi ul li{
	margin: 15px 0;
}

.sideNavi ul li .dot{
	width: 22px;
	height: 22px;
	margin: 0 auto;
	border: 1px solid;
	border-radius:100%;
	-webkit-transition: background-color 0.4s;
	transition: background-color 0.4s;
}

.sideNavi ul li.n01 .dot{border-color:#FF6B00;}
.sideNavi ul li.n02 .dot{border-color:#5F6638;}
.sideNavi ul li.n03 .dot{border-color:#BBBBBB;}
.sideNavi ul li.n04 .dot{border-color:#FA7598;}
.sideNavi ul li.n05 .dot{border-color:#0097CE;}


.sideNavi .title{
	width: 14px;
	margin: 6px auto 0;
}
.sideNavi .title svg{
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.sideNavi ul li a{
    display: block;
}
.sideNavi ul li.current.n01 .dot{background-color:#FF6B00;}
.sideNavi ul li.current.n02 .dot{background-color:#5F6638;}
.sideNavi ul li.current.n03 .dot{background-color:#BBBBBB;}
.sideNavi ul li.current.n04 .dot{background-color:#FA7598;}
.sideNavi ul li.current.n05 .dot{background-color:#0097CE;}

.sideNavi ul li a .title svg{fill:#D6D1CA;}
.sideNavi ul li.current.n01 a .title svg{fill:#FF6B00;}
.sideNavi ul li.current.n02 a .title svg{fill:#5F6638;}
.sideNavi ul li.current.n03 a .title svg{fill:#A69B95;}
.sideNavi ul li.current.n04 a .title svg{fill:#FA7598;}
.sideNavi ul li.current.n05 a .title svg{fill:#0097CE;}


.sideNavi .pagetop{
    width: 36px;
    margin: 8px auto 0;
    cursor: pointer;
}
.sideNavi .pagetop svg{
	fill:#D6D1CA;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

@media(min-width: 769px) {

.sideNavi ul li.n01 a:hover .dot{background-color:#FF6B00;}
.sideNavi ul li.n02 a:hover .dot{background-color:#5F6638;}
.sideNavi ul li.n03 a:hover .dot{background-color:#BBBBBB;}
.sideNavi ul li.n04 a:hover .dot{background-color:#FA7598;}
.sideNavi ul li.n05 a:hover .dot{background-color:#0097CE;}

.sideNavi ul li.n01 a:hover .title svg{fill:#FF6B00;}
.sideNavi ul li.n02 a:hover .title svg{fill:#5F6638;}
.sideNavi ul li.n03 a:hover .title svg{fill:#A69B95;}
.sideNavi ul li.n04 a:hover .title svg{fill:#FA7598;}
.sideNavi ul li.n05 a:hover .title svg{fill:#0097CE;}


.sideNavi .pagetop:hover svg{fill:#64513D;}

}


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


.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;
	padding-bottom: 5px;
	outline:none;
}
.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;
    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;
    display:block;
    font-size:0;
    line-height:0;
    padding:0;
    position:absolute;
    top:57vw;
    z-index:50;
	width:10vw;
	height:10vw;
}

.items .slick-prev,
.items .slick-next {top:40%;}


.slick-prev {left:-0;}
.slick-next{right:-0;}

.slick-prev::after{
	z-index:5;
	display:block;  
    content:"";  
    position:absolute;  
    top:2.9vw;
    left:2vw;
	width: 5vw;
	height: 1px;
	background: #FFF;  
	-webkit-transform:rotate(305deg);
	transform:rotate(305deg);
}
.slick-prev::before{
	z-index:5;
	display:block;  
    content:"";  
    position:absolute;  
    bottom:2.9vw;
    left:2vw;
	width: 5vw;
	height: 1px;
	background: #FFF;  
	-webkit-transform:rotate(55deg);
	transform:rotate(55deg);
}
.slick-next::after{
	z-index:5;
	display:block;  
    content:"";  
    position:absolute;  
    top:2.9vw;
    right:2vw;
	width: 5vw;
	height: 1px;
	background: #FFF;  
	-webkit-transform:rotate(-305deg);
	transform:rotate(-305deg);
}
.slick-next::before{
	z-index:5;
	display:block;  
    content:"";  
    position:absolute;  
    bottom:2.9vw;
    right:2vw;
	width: 5vw;
	height: 1px;
	background: #FFF;  
	-webkit-transform:rotate(-55deg);
	transform:rotate(-55deg);
}

.orange .slick-prev::after,
.orange .slick-prev::before,
.orange .slick-next::after,
.orange .slick-next::before{background: #FF9015;}

.khaki .slick-prev::after,
.khaki .slick-prev::before,
.khaki .slick-next::after,
.khaki .slick-next::before{background: #5F6638;}

.white .slick-prev::after,
.white .slick-prev::before,
.white .slick-next::after,
.white .slick-next::before{background: #BBBBBB;}

.pink .slick-prev::after,
.pink .slick-prev::before,
.pink .slick-next::after,
.pink .slick-next::before{background: #FA7598;}

.blue .slick-prev::after,
.blue .slick-prev::before,
.blue .slick-next::after,
.blue .slick-next::before{background: #8DC6E8;}




/* slick-dots */

.slick-dots{
    display:block;
    list-style:outside none none;
    padding:0;
    text-align:center;
    width:100%;
	position:absolute;
	/*top:calc(113vw + 27px);*/
	top:0;
	margin-top: calc(125% + 35px);
	z-index:50;
}
.slick-dots li{
    cursor: pointer;
    display: inline-block;
    margin: 0 6px;
    padding: 0;
    position: relative;
}
.slick-dots li button {
    cursor:pointer;
    display:block;
    font-size:0;
    height:11px;
	width:11px;
	padding:0px;
    line-height: 0;
    outline:medium none;
	background:#D6D1CA;
	border-radius:8px;
}


.orange .slick-dots li.slick-active button {background:#FF9015;}
.khaki .slick-dots li.slick-active button {background:#989400;}
.white .slick-dots li.slick-active button {background:#A69B95;}
.pink .slick-dots li.slick-active button {background:#FA7598;}
.blue .slick-dots li.slick-active button {background:#ADD7F0;}



@media(max-width:768px) {
.slick-list{
   overflow: hidden;
   padding-bottom: 0;
}
}
















