@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=Jost:wght@300;400;500&display=swap');
/*
font-family: 'Jost', sans-serif;
Light 300
Regular 400
Medium 500
*/


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


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



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

body{
	color:#686058;
    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:400;
	
}








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


#loader-bg{
    display:block;
    position:fixed;
    width:100%;
    height:100%;
    min-height:100%;
    top:0px;
    left:0px;
	background:#FFF;
    z-index:1000;
    overflow:hidden;
	/*
	-webkit-transition: all 1.2s cubic-bezier(0.45, 0, 0.55, 1);
	transition: all 1.2s cubic-bezier(0.45, 0, 0.55, 1);
*/
}
#loader-bg.close{
	left: 100%;
}

#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%);
	   -moz-transform:translateY(-50%);
	    -ms-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: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}
/* start */
.fade.delighter.started{
	opacity:1;
    top: 0;
}

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





#header{
    width: 100%;
}
#header .headerInner{
    width: 100%;
	max-width: 1280px;
	margin: 0 auto;
    position: relative;
	padding-top: 50px;
	background: #FFF;
}

#header h1{
	width: 53%;
	margin: 0 auto;
	opacity: 0;
	top: -30px;
	position: relative;
	-webkit-transition: all 1.1s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
#header.start h1{opacity: 1;top: 0;}


#header .topIcon{
	width:81%;
	margin: 50px auto 0;
}
#header .topIcon ul{
	width: 103%;
	font-size: 0;
	text-align: left;
}
#header .topIcon ul li{
	width: 30.3333333%;
	margin-right: 3%;
	display: inline-block;
}
#header .topIcon ul li img{
	width: 80%;
	display: block;
	margin: 0 auto;
	opacity: 0;
	position: relative;
	top: 30px;
	-webkit-transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}
#header.start .topIcon ul li img{opacity: 1;top: 0;}

#header.start .topIcon ul li:nth-child(1) img{-webkit-transition-delay:1.0s;transition-delay:1.0s;}
#header.start .topIcon ul li:nth-child(2) img{-webkit-transition-delay:1.4s;transition-delay:1.4s;}
#header.start .topIcon ul li:nth-child(3) img{-webkit-transition-delay:1.8s;transition-delay:1.8s;}




#header .onward{
	width: 84px;
	position:absolute;
    top: 15px;
    right: 20px;
    z-index: 120;
	opacity: 0;
	-webkit-transition: all 1.0s 1.5s;
	        transition: all 1.0s 1.5s;
}
#header .logo23ku{
	width: 55px;
	position:absolute;
    top: 15px;
    left:20px;
    z-index: 120;
	opacity: 0;
	-webkit-transition: all 1.0s 1.5s;
	        transition: all 1.0s 1.5s;
}
#header.start .onward{opacity: 1;}
#header.start .logo23ku{opacity: 1;}


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


#menu{
	width: 100%;
	margin-top: 20px;
	position: relative;
	background: linear-gradient(90deg, #56502C 0%, #56502C 50%, #762835 50%, #762835 100%);
}

#menu .cover{
	position: absolute;
	top: -1px;
	bottom: -1px;
	right: 0;
	width: 100%;
	background: #FFF;
	z-index: 500;
	-webkit-transition: width 1.8s cubic-bezier(0.45, 0, 0.55, 1);
	transition: width 1.8s cubic-bezier(0.45, 0, 0.55, 1);
}
#menu.start .cover{width: 0;}



#menu .naviInner{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	font-size: 0;
	line-height: 1;
	text-align: center;
	
	background: linear-gradient(90deg, #56502C 0%, #926D2C 50%, #762835 100%);
}
#menu .sideBox{
	width: 9.5%;
	padding-top: 41%;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
#menu .sideBox p{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 30%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%); 
}



#menu .centerBox{
	width: 81%;
	display: inline-block;
	overflow: hidden;
}
#menu .centerBox ul{
	width: 103%;
	padding: 3% 0;
}
#menu .centerBox ul li{
	width: 30.3333333%;
	margin-right: 3%;
	display: inline-block;
	position: relative;
}
#menu .centerBox ul li p{
	width: 100%;
	position: relative;
	-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);
}

#menu .centerBox ul li.n01 p{-webkit-transition-delay:0.6s;transition-delay:0.6s;}
#menu .centerBox ul li.n02 p{-webkit-transition-delay:1.1s;transition-delay:1.1s;}
#menu .centerBox ul li.n03 p{-webkit-transition-delay:1.6s;transition-delay:1.6s;}

#menu .centerBox ul li p.top{left: -20px;opacity: 0;}
#menu .centerBox ul li p.bottom{left: 20px;opacity: 0;}
#menu.start .centerBox ul li p.top{left:0px;opacity: 1;}
#menu.start .centerBox ul li p.bottom{left:0px;opacity: 1;}





#menu .centerBox ul li h4{display: none;}
#menu .centerBox ul li a{
	position: absolute;
	display:inline-block;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: 16px;
	bottom: 10px;
	left: 10px;
	z-index: 10;
	border: 1px solid;
	padding: 5px 10px;
	opacity: 0;
	background: rgba(255,255,255,0.5);
	-webkit-transition: all 0.4s, opacity 1.0s 2.0s;
	transition: all 0.4s, opacity 1.0s 2.0s;
}
#menu.start .centerBox ul li a{opacity: 1;}

#menu .centerBox ul li.n01 a{border-color:#564F24;color: #564F24;}
#menu .centerBox ul li.n02 a{border-color:#977124;color: #977124;}
#menu .centerBox ul li.n03 a{border-color:#79242F;color: #79242F;}

@media(min-width:769px) {
#menu .centerBox ul li.n01 a:hover{background: rgba(161,164,104,0.5);color: #D6D1C4;}
#menu .centerBox ul li.n02 a:hover{background: rgba(221,201,163,0.5);color: #D6D1C4;}
#menu .centerBox ul li.n03 a:hover{background: rgba(199,134,141,0.5);color: #D6D1C4;}
}


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

.lead{
	width: 95%;
	margin: 0 auto;
	padding:130px 0;
	text-align: center;
	position: relative;
}

.lead .cover{
	position: absolute;
	top: 1px;
	bottom:1px;
	right: 0;
	width: 100%;
	background: #FFF;
	z-index: 500;
}



.lead h2{
	font-size: 32px;
	line-height: 1;
	letter-spacing: 0.1em;
	display: inline-block;
	padding:0 0.4em;
	background:linear-gradient(transparent 70%, #D6D1C4 70%);
}


.lead h2 br{display: none;}
.lead p{
	font-size: 22px;
	text-align: center;
	line-height: 2.2;
	letter-spacing: 0.1em;
	margin-top: 2.0em;
}
.lead p br.res{display: none;}

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


.fullLine{
    width: 100%;
	max-width: 1000px;
    height: 5px;
    margin: 260px  auto 280px;
	position: relative;
}
.footer .fullLine{margin: 220px auto;}


.fullLine p,
.fullLine.delighter p{
    width: 0%;
    height: 5px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    background: #A39383;
    -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.color02 p,
.fullLine.color02.delighter p{
    background: #D6D1C4;
}


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


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



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

 .categoryTitle{
 	width: 100%;
	padding: 23px 0;
	position: relative;
 }
.categoryTitle.early{background: #A1A468;}
.categoryTitle.mid{background: #DDC9A3;}
.categoryTitle.late{background: #7A303F;}
   
.categoryTitle .cover01,
.categoryTitle.delighter .cover01{
	position: absolute;
	top: -1px;
	bottom: -1px;
	right: 0;
	width: 100%;
	background: #FFF;
	z-index: 50;
	-webkit-transition: width 1.3s cubic-bezier(0.45, 0, 0.55, 1);
	transition: width 1.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.categoryTitle.delighter.started .cover01{width: 0;}

.categoryTitle .cover02,
.categoryTitle.delighter .cover02{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0;
	width: 100%;
	z-index: 40;
	-webkit-transition: width 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.6s;
	transition: width 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.6s;
}
.categoryTitle.delighter.started .cover02{width: 0;}

.categoryTitle.early .cover02,
.categoryTitle.early.delighter .cover02{background: #A1A468;}
.categoryTitle.mid .cover02,
.categoryTitle.mid.delighter .cover02{background: #DDC9A3;}
.categoryTitle.late .cover02,
.categoryTitle.late.delighter .cover02{background: #7A303F;}




.categoryTitle .titleInner{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.categoryTitle .image{
	width: 82%;
	position: relative;
}
.categoryTitle .image h2{
	position: absolute;
	bottom: 6%;
	left: 5%;
	width: 42%;
	z-index: 5;
}
.categoryTitle .temp{
	position:absolute;
	top: 0;
	right: 0;
	z-index: 5;
	width: 18%;
	padding-top: 36.5%;
}
.categoryTitle .temp p{
	position: absolute;
	width: 65%;
	top: 50%;
	left: 50%;
	z-index:7;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.categoryTitle .temp p span{
	position: absolute;
	top: 10%;
	left: 17%;
	width: 15.5%;
	height: 80%;
	z-index: 10;
	overflow: hidden;
}
.categoryTitle .temp p span img,
.categoryTitle.delighter .temp p span img{
	position: relative;
	top: 90%;
	display: block;
	-webkit-transition: top 1.5s cubic-bezier(0.45, 0, 0.55, 1) 1.8s;
	transition: top 1.5s cubic-bezier(0.45, 0, 0.55, 1) 1.8s;
}

.categoryTitle.early.delighter.started .temp p span img{top: 22%;}
.categoryTitle.mid.delighter.started .temp p span img{top: 32%;}
.categoryTitle.late.delighter.started .temp p span img{top: 41%;}


.categoryTitle .spTitle{display: none;}

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






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

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

.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;
	opacity:0;
	border-radius:100%;
    -webkit-transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6) 1.2s;
	transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6) 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-size: 18px;
	text-align: center;
	color:  #FFF;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.category.early .styleLeft .balloon h4{color:#65665D;}
.category.early .styleLeft .balloon{background-image: radial-gradient( #FDFDFD 25%, #D9D8CB 60%, #A1A468 85%);}
.category.mid .styleLeft .balloon h4{color:#977124;}
.category.mid .styleLeft .balloon{background-image: radial-gradient( #FDFDFD 25%, #e0d8cb 60%, #DDC9A3 85%);}
.category.late .styleLeft .balloon h4{color:#79242F;}
.category.late .styleLeft .balloon{background-image: radial-gradient( #FDFDFD 25%, #dfdcd1 60%, #bc767e 85%);}

.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;
	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;
}
.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: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.category .styleLeft.delighter.started .photoSet .colorBK span{
	width: 100%;
}


.category.early .styleLeft .photoSet .colorBK span{background:#564F24;}
.category.mid .styleLeft .photoSet .colorBK span{background:#977124;}
.category.late .styleLeft .photoSet .colorBK span{background:#7A303F;}


.category .styleLeft .comment{
	width: 46%;
	 float: right;
	 position: relative;
	 margin-top: 12%;
}
.category .styleLeft .comment .inner,
.category .styleLeft.delighter .comment .inner{
	width: 85%;
	margin: 0 auto;
	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;
}
.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: 1.5em;
}
.category .comment p span{
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	padding-right: 0.5em;
}


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


.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: 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;
}
.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: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.category .styleRight.delighter.started .photoSet .colorBK span{
	width: 100%;
}

.category.early .styleRight .photoSet .colorBK span{background:#564F24;}
.category.mid .styleRight .photoSet .colorBK span{background:#977124;}
.category.late .styleRight .photoSet .colorBK span{background:#7A303F;}



.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: 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;
}
.category .styleRight.delighter.started .itemBox .itemBoxInner{
	top: 0;
	opacity:1;
}

.category .styleRight .itemBox h3{
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-size: 17px;
	border: 1px solid #FFF;
	width: 7em;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 1;
	padding: 7px 0 6px;
	margin-top: 43px;
	border-radius:20px;
}

.category.early .styleRight .itemBox h3{border-color: #8B8C4A;}
.category.mid .styleRight .itemBox h3{border-color: #977124;}
.category.late .styleRight .itemBox h3{border-color: #7A303F;}


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



.itemList{
	margin-top: 22px;
}


.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: 15px;
    line-height: 1.4;
    vertical-align: top;
    padding: 5px 0;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	 letter-spacing: 0.05em;
}
.itemList dl .price{
    width: 120px;
	position: absolute;
	top: 0;
	right: 110px;
    font-size: 15px;
	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: 7px 0px 8px;
	width: 100%;
    border: 1px solid #A39383;
    background:#A39383;
    color: #FFF;
	line-height: 1;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
    letter-spacing: 0.08em;
    font-size: 14px;
}
.itemList dl dd a:hover{
    background:#F2F2F2;
    color: #909288;
}



.itemList .otherItem{
    display: none;
}

.itemList .otherTrigger{
    margin:16px auto 0;
    border: 1px solid #686058;
    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: #686058;
}
.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);
    -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;}
}


.crossfade-img{
	width: 100%;
	padding-top: 148.8%;
	position:relative;
	z-index: 10;
}

.crossfade-img img{
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
}




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


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

.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: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
	transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
}
.coordinate .cooedTitle.delighter.started .bar{
	width: 100%;
}

.early .coordinate .cooedTitle .bar{background:#BDBF95;}
.mid .coordinate .cooedTitle .bar{background:#E7D8BE;}
.late .coordinate .cooedTitle .bar{background:#D7AAAE;}


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

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

.coordinate .cooedItems h4{
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	font-size: 32px;
	margin: 0 auto 60px;
	padding:0 5px 8px;
	position: relative;
	line-height: 1;
	letter-spacing: 0.1em;
	display: inline-block;
}
.coordinate .cooedItems h4:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #A39383;
}

.coordinate .cooedItems li,
.coordinate .cooedItems.delighter li{
	opacity:0;
	position: relative;
	top: 20px;
	-webkit-transition: all 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
	transition: all 1.6s cubic-bezier(0.25, 1, 0.5, 1) 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 h5{
	font-size: 18px;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 0.08em;
	padding: 0 1.0em;
	display: inline-block;
	position: relative;
}
.coordinate .cooedItems h5:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
}
.coordinate .cooedItems h5:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 3px;
}

.early .coordinate .cooedItems h5{color:#564F24;}
.early .coordinate .cooedItems h5:before{background: #564F24;}
.early .coordinate .cooedItems h5:after{background: #564F24;}
.mid .coordinate .cooedItems h5{color:#977124;}
.mid .coordinate .cooedItems h5:before{background: #977124;}
.mid .coordinate .cooedItems h5:after{background: #977124;}
.late .coordinate .cooedItems h5{color:#79242F;}
.late .coordinate .cooedItems h5:before{background: #79242F;}
.late .coordinate .cooedItems h5:after{background: #79242F;}




.coordinate .cooedItems .photo{
	margin-top: 25px;
	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: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s;
		-moz-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s;
		  -ms-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s;
		  		  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s;
}
.coordinate .cooedItems.delighter.started .photo span{
	width: 0;
}

.early .coordinate .cooedItems .photo span{background:#BDBF95;}
.mid .coordinate .cooedItems .photo span{background:#E7D8BE;}
.late .coordinate .cooedItems .photo span{background:#D7AAAE;}


.coordinate  .itemBox{margin-top: 50px;}
.coordinate  .itemList dl{margin-top: 10px;}
.coordinate  .itemList dl .name{width: calc( 100% - 200px );}
.coordinate  .itemList dl .price{right:80px;}
.coordinate .itemList dl dd{width: 65px;}
.coordinate  .itemList .otherTrigger{padding:8px 12px 9px;width: auto;display: inline-block; font-size: 13px;}


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































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

.sideNavi{
    position: fixed;
    top: 50%;
    right:-45px;
    width:42px;
    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: 10px;}
.sideNavi ul{}
.sideNavi ul li{margin: -1px 0 0 0;}
.sideNavi ul li a{display: block;padding: 0;margin: 0;line-height: 1;font-size: 0;}

.sideNavi ul li.current.n01 a h3{background-color:#F5EA61;color: #FFF;}


.sideNavi a svg{
	fill:#D6D1C4;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.sideNavi .current.n01 a svg{fill:#564F24;}
.sideNavi .current.n02 a svg{fill:#977124;}
.sideNavi .current.n03 a svg{fill:#79242F;}

.sideNavi .n01 a:hover svg{fill:#564F24;}
.sideNavi .n02 a:hover svg{fill:#977124;}
.sideNavi .n03 a:hover svg{fill:#79242F;}

.sideNavi .pagetop{
    width: 30px;
    margin: 20px auto 0;
    cursor: pointer;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi .pagetop:hover{opacity: 0.6;}


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


.spBottomNavi{display: none;}





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




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



.footer .relationBanner{
    width: 80%;
	max-width: 600px;
    margin: 0 auto;
	border: 1px solid #686058;

}
.footer .relationBanner a{
	width: 100%;
	display:block;
	background:url("../../images/f_relation.jpg") center center no-repeat;
	background-size: cover;
	position: relative;
	padding-top: 32%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.footer .relationBanner a:after{
	content: "";
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	background: rgba(163,147,131,0.65);
	-webkit-transition: all 0.3s;
	ransition: all 0.3s;
}
.footer .relationBanner h3{
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.2;
	z-index: 10;
	color: #FFF;
	padding: 16px 0;
	white-space: nowrap;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	 -webkit-transform:translate(-50%,-50%);
	 transform:translate(-50%,-50%);
}

.footer .relationBanner h3:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #FFF;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.footer .relationBanner h3:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #FFF;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}


@media(min-width:769px) {
.footer .relationBanner a:hover:after{background: rgba(214,209,196,0.65);}
.footer .relationBanner a:hover h3{color: #686058;}
.footer .relationBanner a:hover h3:before{background: #686058;}
.footer .relationBanner a:hover h3:after{background: #686058;}
}




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



.footer .footerTitle{
	width: 77%;
	margin: 0 auto;
	position: relative;
	padding-bottom: 30px;
}
.footer .footerTitle .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	margin: 0 auto;
	background: #D6D1C4;
}
.footer .footerTitle h3{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 54px;
	font-weight: 400;
	color: #686058;
	margin: 0 auto;
	position: relative;
	line-height: 0.7;
	letter-spacing: 0.03em;
	z-index: 20;
	text-align: center;
}
.footer .footerTitle.onlinestore{
	width: 100%;
}
.footer .footerTitle.onlinestore h3{
	line-height: 1;
	padding: 0.6em 0 0.3em;
}
.footer .footerTitle.onlinestore h3:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 85%;
	height: 2px;
	background: #D6D1C4;
}

.footer .footerTitle.onlinestore h3:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 85%;
	height: 2px;
	background: #D6D1C4;
}


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



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

.footer .otherContents .otherTitle{
	text-align: center;
	line-height: 1;
	letter-spacing: 0.2em;
}
.footer .otherContents .otherTitle h3{
	font-size: 26px;
	color: #686058;
	position: relative;
	display: inline-block;
	padding-bottom: 0.5em;
}
.footer .otherContents .otherTitle h3:after{
	content: '';
	position: absolute;
	left:0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #D6D1C4;
}

.footer .otherContents .inner{
    width: 95%;
    margin: 90px auto 0;
}
.footer .otherContents ul{
    width: 105%;
    font-size: 0;
}
.footer .otherContents ul li{
    width: 45%;
    margin-right: 5%;
    display: inline-block;
    vertical-align: top;
}
.footer .otherContents a{
	display: block;
    position: relative;
	width: 100%;
	padding-top: 45%;
    background-position: center center;
    background-size: cover;
}
.footer .otherContents a.n01{background-image:url("../../images/f_next01.jpg");}
.footer .otherContents a.n02{background-image:url("../../images/f_next02.jpg");pointer-events: none;}

.footer .otherContents a:after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
	background: rgba(101,102,93,0.6);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.footer .otherContents a .inner{
	width: 68%;
	position: absolute;
	top: 58%;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
	 -webkit-transform:translateY(-50%);
	        transform:translateY(-50%);
}
.footer .otherContents a.n01 .inner{width: 100%;top: 50%;}
.footer .otherContents a .inner .default{
	width: 100%;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.footer .otherContents a .inner .up{
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.footer .otherContents a .inner .hover{
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	opacity:0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media(min-width:769px) {
.footer .otherContents a:hover:after{background: rgba(214,209,196,0.65);}
/*.footer .otherContents a:hover .default{opacity:0;}
.footer .otherContents a:hover .hover{opacity:1;}*/
}




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


.footer .golf{
    width: 100%;
    margin: 0 auto;
}
.footer .golf h2{
    width:70%;
    max-width:320px;
    margin: 0 auto 50px;
}
.footer .golf h4{
    font-size: 31px;
    text-align: center;
    line-height: 1.5;
	font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 15px;
	color:#686058;

}
.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: #D6D1C4;
    border: 2px solid #D6D1C4;
    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:#686058;}
}




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

.footer .sns{
    width: 100%;
    text-align: center;
    margin: 200px auto;
	color: #686058;
}
.footer .sns h3{
   font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    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: #686058;
}
.footer .sns .instagram{
    width: 40px;
    margin: 30px auto 0;
}

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

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


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




.footer .pagetop{
    position: fixed;
    width: 35px;
    bottom: 20px;
    right: -40px;
    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;
}
}




















/* ========================= 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);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-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:67vw;
    z-index:50;
	width:10vw;
	height:10vw;
	background-position: center center;
	background-size: cover;
}



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


.early .slick-prev{background-image:url("../../images/prev_early.svg");}
.early .slick-next{background-image:url("../../images/next_early.svg");}
.mid .slick-prev{background-image:url("../../images/prev_mid.svg");}
.mid .slick-next{background-image:url("../../images/next_mid.svg");}
.late .slick-prev{background-image:url("../../images/prev_late.svg");}
.late .slick-next{background-image:url("../../images/next_late.svg");}



/* slick-dots */

.slick-dots{
    display:block;
    list-style:outside none none;
    padding:0;
    text-align:center;
    width:100%;
	height: 24px;
	position:absolute;
	top:129vw;
	z-index:50;
	line-height: 1;
}
.slick-dots:after{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 110px;
	margin: 0 auto;
	height: 2px;
	background:#A39383;	
}
.slick-dots li{
    cursor: pointer;
    display: inline-block;
    margin: 0 24px;
    padding: 0;
    position: relative;
	z-index: 10;
}
.slick-dots li button {
    cursor:pointer;
    display:block;
    font-size:0;
    height:14px;
	width:14px;
	padding:0px;
    line-height: 0;
    outline:medium none;
	background:#A39383;
	border-radius:8px;
}

.early .slick-dots li.slick-active button {background:#564F24;}
.mid .slick-dots li.slick-active button {background:#977124;}
.late .slick-dots li.slick-active button {background:#79242F;}






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

@media(max-width:650px) {
.slick-prev,
.slick-next{top:64vw;}
.slick-dots{top:130vw;}
}

@media(max-width:510px) {
.slick-prev,
.slick-next{top:64vw;width:8vw;height:10vw;}
.slick-dots{top:138vw;}
}

@media(max-width:440px) {
.slick-prev,
.slick-next{top:64vw;width:8vw;height:12vw;}
.slick-dots{top:139vw;}
.slick-dots:after{width: 100px;}
.slick-dots li{margin: 0 18px;}
.slick-dots li button {height:12px;width:12px;}
}













