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


@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@200;300;400;600&display=swap');
/*font-family: 'Antonio', sans-serif;
Extra-Light 200
Light 300
Regular 400
Semi-Bold 600 */

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

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap');
/*font-family: 'Noto Serif JP', 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.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:#5B4926;
    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: 1011;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#loader-bg .spinner > div {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color:#CFD2D3;
  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: 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);
}
/* start */
.fade.delighter.started{
	opacity:1;
    top: 0;
}

/* standard */
.fade02,
.fade02.delighter{
	opacity:0;
    position: relative;
    top: 20px;
	-webkit-transition: all 1.2s cubic-bezier(0.76, 0, 0.24, 1);
	transition: all 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}
/* start */
.fade02.delighter.started{
	opacity:1;
    top: 0;
}


@media(min-width: 769px) {

.fade,.fade.delighter{top: 15px;}
.fade02,.fade02.delighter{top: 10px;}

}



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




#header{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}


#header .mainImage{
	width: 100%;
	height: 100%;
	background: url("../../images/mainimage_pc.jpg")  top center no-repeat;
	background-size:cover;	
}

#header .title{
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 11%;
    z-index: 100;
	width: 18%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}

#header .title h1{
	width: 100%;
	position: relative;
	opacity:0;
	-ms-filter: blur(20px);
	filter: blur(20px);
	-webkit-transform:scale3d(1.2,1.2,1);
	transform:scale3d(1.2,1.2,1);
	-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 .title.view h1{
	opacity:1;
	-webkit-transform:scale3d(1,1,1);
	transform:scale3d(1,1,1);
	-ms-filter: blur(0px);
	filter: blur(0px);
}



.scrollbar{
    width: 30px;
    position: absolute;
    right:30px;
    bottom: 0;
    height:100px;
    z-index: 500;
}
.scrollbar p{
    width: 14px;
    margin-left: 8px;
}
.scrollbar .base{
	width:1px;
	height:100px;
	position: absolute;
	bottom:0;
	left: 0;
	overflow: hidden;
    z-index: 5;
    background:rgba(209, 204, 189, 0.5);
}
.scrollbar .bar{
	width:1px;
	height:100px;
	position: absolute;
	bottom:0;
	left: 0;
	overflow: hidden;
    z-index: 10;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(
			to bottom,
			rgba(209, 204, 189, 1) 50%,
			rgba(209, 204, 189, 0) 50%
		);
		background-position: 0 -100px;
		background-size: 100% 200%;
		animation: scrolldown 3.0s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

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










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

.categoryTitle{
	width: 95%;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
	position: relative;
	padding-bottom: 40px;
}
.categoryTitle h2,
.categoryTitle.delighter h2{
	font-family: 'Antonio', sans-serif;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.08em;
	position: relative;
	top: -15px;
	opacity:0;
	-webkit-transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
	transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
}
.categoryTitle.delighter.started h2{
	top: 0;
	opacity:1;
}



.categoryTitle .bar,
.categoryTitle.delighter .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	margin: 0 auto;
	background: #C2BA98;
	-webkit-transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1) ;
	transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1) ;	
}
.categoryTitle.delighter.started .bar{
	width: 100%;
}





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


.lookItem .cover,
.lookItem.delighter .cover{
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
    background: #FFF;
    -webkit-transition: all 2.1s cubic-bezier(0.76, 0, 0.24, 1);
	transition: all 2.1s cubic-bezier(0.76, 0, 0.24, 1);
     -webkit-transform:scale3d(1.9,1.8,1) rotate3d(0,0,1,-45deg) translate3d(0,16%,0);
	 transform:scale3d(1.9,1.8,1) rotate3d(0,0,1,-45deg) translate3d(0,16%,0); 
}
.lookItem.delighter.started .cover{
	 -webkit-transform:scale3d(1.9,1.8,1) rotate3d(0,0,1,-45deg) translate3d(0,85%,0);
	 transform:scale3d(1.9,1.8,1) rotate3d(0,0,1,-45deg) translate3d(0,85%,0); 
	
}


#look{
	width: 90%;
	max-width: 920px;
	margin: 100px auto 0;
	padding-top: 80px;
}

#look .lookItem{
	width: 100%;
	margin-top: 80px;
}
#look .lookItem.farst{margin-top: 140px;}

#look .lookItem .itemImageSet{
	width: 100%;
	position: relative;
}

#look .lookItem .oneImage{
	width: 47%;
	float: left;
	position: relative;
	overflow: hidden;
}

#look .lookItem .slideImage{
	width: 47%;
	float: right;
	position: relative;
	overflow: hidden;
}
#look .lookItem .slideImage .pcView {display: block;}
#look .lookItem .slideImage .spView {display: none;}




#look .lookItem .credit{
	width: 47%;
}

#look .credit .itemList{
	width: 95%;
	margin: 0 auto;
}
#look .credit .itemList dl{
    width: 100%;
    display: block;
    font-size: 0;
    position: relative;
    text-align: left;
	margin: 20px 0 0;
}
#look .credit  .itemList dl .name{
    display:block;
    font-size: 16px;
	font-family: 'Antonio', sans-serif;
	font-weight: 300;
    line-height: 1.2;
	letter-spacing: 0.05em;
	width: calc(100% - 65px);
}
#look .credit  .itemList dl .name span{
	 font-size: 13px;
	 padding-left: 0.5em;
}
#look .credit  .itemList dl .price{
    display:block;
    font-size: 15px;
	margin-top: 0.0em;
	font-family: 'Antonio', sans-serif;
	font-weight: 300;
    line-height: 1.4;
	letter-spacing: 0.05em;
}
#look .credit  .itemList dl .price span{
	 font-size: 13px;
	 padding-left: 0.2em;
}


#look .credit .itemList dl dd{
    width: 80px;
    position: absolute;
    top: 50%;
    right: 0;
	text-align: right;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#look .credit .itemList dl dd span{
	font-size: 12px;
	font-weight: 400;
	width: 62px;
	letter-spacing: 0;
	line-height: 1.2;
	text-align: right;
	display:  inline-block;
}


#look .credit .itemList dl dd a{
    display: inline-block;
    text-align: center;
    padding: 4px 0px 5px;
    background:#5B4926;
    color: #FFF;
	line-height: 1;
	width: 55px;
	font-family: 'Antonio', sans-serif;
    font-weight: 300;
    font-size: 13px;
	letter-spacing: 0.08em;
}
@media(min-width: 769px) {
#look .credit .itemList dl dd a:hover{background:#D1CCBD;color: #5B4926;}
}
.itemList .otherItem{
    display: none;
}


.itemList .otherTrigger{
    margin:20px auto 0;
    display: block;
	width: 100%;
    cursor: pointer;
	text-align: left;
	position: relative;
}
.itemList .otherTrigger p{
	letter-spacing: 0.11em;
    position: relative;
	font-family: 'Antonio', sans-serif;
    font-size: 18px;
	font-weight: 400;
    line-height: 1;
	padding: 5px 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.itemList .otherTrigger span{
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}


.itemList .otherTrigger:after{
	content: "";
    position: absolute;
    top: 75%;
	left: 90px;
	right: 90px;
    height: 1px;
    background: #5B4926;
	 -webkit-transition: all 0.3s;
	 transition: all 0.3s;
}

.itemList .otherTrigger span:after,
.itemList .otherTrigger span:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top:0;
    width: 19px;
    height: 1px;
    background: #5B4926;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.itemList .otherTrigger span:before{
    -webkit-transform:rotate(90deg);
	transform:rotate(90deg);
		
}
.itemList .otherTrigger.open span:before{
    -webkit-transform:rotate(0deg);
	transform:rotate(0deg);
}


@media(min-width: 769px) {
.itemList .otherTrigger:hover:after{background-color: #C2BA98;}
.itemList .otherTrigger:hover p{color: #C2BA98;}
.itemList .otherTrigger:hover span:after,
.itemList .otherTrigger:hover span:before{background: #C2BA98;}

}




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

#products{
	width: 90%;
	max-width: 920px;
	margin: 100px auto 0;
	padding-top: 80px;
	overflow: hidden;
}

#products .productList{
	width: 100%;
	margin-top: 140px;
}

#products .productList .list{
	width: 104%;
	margin: 0 auto;
	font-size: 0;
	text-align: left;
}
#products .productList .list .listIn{
	width: 29.33333%;
	margin-right: 4%;
	margin-bottom: 80px;
	display: inline-block;
	vertical-align: top;
}
#products .productList .slideImage{
	padding-bottom: 35px;
	position: relative;
	z-index: 10;
}
#products .productList .slideImage .itemSlick{
	border: 1px solid #D1CCBD;
	box-sizing: border-box;
}

#products .productList .comment{
	width: 100%;
	font-size: 13px;
	line-height: 2.2;
	margin-top: 10px;
	letter-spacing: 0.05em;
}


#products .productList .sepc{
	width: 100%;
	margin-top: 25px;
}
#products .productList .sepc .name{
    font-size: 15px;
	font-family: 'Antonio', sans-serif;
	font-weight: 300;
    line-height: 1.2;
	letter-spacing: 0.05em;
}
#products .productList .sepc .name span{
	 font-size: 13px;
	 padding-left: 0.5em;
}
#products .productList .sepc .specIn{
	margin-top: 5px;
	position: relative;
	padding: 4px 0;
}

#products .productList .sepc .price{
    font-size: 15px;
	font-family: 'Antonio', sans-serif;
	font-weight: 300;
    line-height: 1.4;
	letter-spacing: 0.05em;
}
#products .productList .sepc .price span{
	 font-size: 13px;
	 padding-left: 0.2em;
}



#products .productList .sepc .buy{
    width: 80px;
    position: absolute;
    top: 50%;
    right: 0;
	text-align: right;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#products .productList .sepc .buy span{font-size: 12px;font-weight: 400;}


#products .productList .sepc .buy a{
    display: inline-block;
    text-align: center;
    padding: 3px 0px 4px;
    background:#5B4926;
    color: #FFF;
	line-height: 1;
	width: 55px;
	font-family: 'Antonio', sans-serif;
    font-weight: 300;
    font-size: 13px;
	letter-spacing: 0.08em;
}
@media(min-width: 769px) {
#products .productList .sepc .buy a:hover{background:#D1CCBD;color: #5B4926;}
}

#products .allProducts{
	width: 95%;
	margin: 70px auto 0;
}
#products .allProducts a{
	background: url("../../images/allproduct_bk.jpg")  center center no-repeat;
	background-size:cover;
	display: block;
	width: 100%;
	padding-top: 22%;
	position: relative;
	line-height: 1;
}
#products .allProducts a p{
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin:0 auto;
	width: 30%;
	z-index: 20;
	 -webkit-transform:translateY(-50%);
	 transform:translateY(-50%);
}
#products .allProducts a p .off{
	width: 100%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
#products .allProducts a p .on{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 30;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
#products .allProducts a:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: rgba(255,255,255,0);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media(min-width: 769px) {
#products .allProducts a:hover:after{background: rgba(212,205,159,0.65);}
#products .allProducts a:hover p .off{opacity: 0;}
#products .allProducts a:hover p .on{opacity: 1;}


}


/* ========================= 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;
}
.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;
    width: 10%;
	padding-top:10%;
    position:absolute;
    top:50%;
    z-index:40;
	border:none;
	overflow: visible;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}

.slick-prev{left:-11%;}
.slick-next{right:-11%;}




.slick-prev::after{
	display: block; 
    content: "";  
    position: absolute;  
    top: 0;
    bottom: 0;  
    left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-right: 16px solid #E0DDCD;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
}

.slick-next::after{
	display: block; 
    content: "";  
    position: absolute;  
    top: 0;
    bottom: 0;  
    left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-left: 16px solid #E0DDCD;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
}

/* slick-dots */
.slick-dots{
    display:block;
    list-style:outside none none;
    padding:0;
    text-align:center;
    width:100%;
	position:absolute;
	bottom:-28px;
	z-index:10;
}
.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:14px;
	width:14px;
	padding:0px;
    line-height: 0;
    outline:medium none;
	background:#CCC;
	position: relative;
	box-sizing: content-box;
    -webkit-border-radius:20px;
       -moz-border-radius:20px;
	        border-radius:20px;
}
.slick-dots li button:after{
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #FFF;
	position: absolute;
	top: -3px;
	left: -3px;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-border-radius:20px;
       -moz-border-radius:20px;
	        border-radius:20px;
}
.slick-dots li.slick-active button:after{
	border-color: #D1CCBD;
}



.slideImage .singleDot{
	width: 100%;
	position: absolute;
	bottom: 8px;
	left: 0;
}
.slideImage .singleDot span{
    display:block;
    font-size:0;
    height:14px;
	width:14px;
	margin: 0 auto;
	padding:0px;
    line-height: 0;
    outline:medium none;
    -webkit-border-radius:20px;
       -moz-border-radius:20px;
	        border-radius:20px;
}




.p01 .slick-dots li:nth-child(1) button{background:#978065;}
.p01 .slick-dots li:nth-child(2) button{background:#00263E;}
.p02 .slick-dots li:nth-child(1) button{background:#978065;}
.p02 .slick-dots li:nth-child(2) button{background:#00263E;}
.p03 .slick-dots li:nth-child(1) button{background:#978065;}
.p03 .slick-dots li:nth-child(2) button{background:#00263E;}
.p04 .slick-dots li:nth-child(1) button{background:#5D452B;}
.p04 .slick-dots li:nth-child(2) button{background:#415364;}
.p05 .slick-dots li:nth-child(1) button{background:#5D452B;}
.p05 .slick-dots li:nth-child(2) button{background:#415364;}
.p06 .slick-dots li:nth-child(1) button{background:#ACB0AE;}
.p06 .slick-dots li:nth-child(2) button{background:#AAC6C9;}
.p06 .slick-dots li:nth-child(3) button{background:#978065;}
.p07 .slick-dots li:nth-child(1) button{background:#564537;}
.p07 .slick-dots li:nth-child(2) button{background:#000000;}
.p07 .slick-dots li:nth-child(3) button{background:#E9E5CF;}
.p08 .slick-dots li:nth-child(1) button{background:#564537;}
.p08 .slick-dots li:nth-child(2) button{background:#000000;}
.p08 .slick-dots li:nth-child(3) button{background:#E9E5CF;}
.p09 .slick-dots li:nth-child(1) button{background:#E9E5CF;}
.p09 .slick-dots li:nth-child(2) button{background:#000000;}
.p09 .slick-dots li:nth-child(3) button{background:#FFF;border: 1px solid #B0B3B2;}
.p10 .slick-dots li:nth-child(1) button{background:#9B7A5A;}
.p10 .slick-dots li:nth-child(2) button{background:#000000;}
.p10 .slick-dots li:nth-child(3) button{background:#AAABAC;}
.p11 .slick-dots li:nth-child(1) button{background:#7E5F57;}
.p11 .slick-dots li:nth-child(2) button{background:#00263E;}
.p11 .slick-dots li:nth-child(3) button{background:#A5C5ED;}
.p12 .slick-dots li:nth-child(1) button{background:#4B82B7;}
.p12 .slick-dots li:nth-child(2) button{background:#1C355E;}
.p12 .slick-dots li:nth-child(3) button{background:#FFF;border: 1px solid #B0B3B2;}

.p13 .slideImage .singleDot span{background:#00263E;}
.p14 .slideImage .singleDot span{background:#00263E;}
.p15 .slick-dots li:nth-child(1) button{background:#00263E;}
.p15 .slick-dots li:nth-child(2) button{background:#FFF;border: 1px solid #B0B3B2;}
.p16 .slick-dots li:nth-child(1) button{background:#8E011B;}
.p16 .slick-dots li:nth-child(2) button{background:#FAE345;}
.p17 .slideImage .singleDot span{background:#2D3755;}
.p18 .slideImage .singleDot span{background:#00263E;}




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




#about{
	width:100%;
	margin: 130px auto 0;
	padding-top: 80px;
	overflow: hidden;
}

#about .aboutInner{
	width: 90%;
	max-width: 920px;
	margin: 0 auto;
}

#about h3{
	text-align: center;
	font-size: 26px;
	font-family: 'Antonio', sans-serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.5;
	margin: 85px auto;
}

#about .history{

}
#about .designer{
	padding-top: 40px;
}

#about  .illust{
	width: 70%;
	max-width: 610px;
	margin: 0 auto;
	padding: 50px 0;
	margin-bottom: 100px;
	border-left: 1px solid #D1CCBD;
	border-right: 1px solid #D1CCBD;
}

#about  .illust img{
	max-width: 314px;
	width: 80%;
	margin: 0 auto;
	display: block;
}




#about .fullWide{
	width: 100%;
	background: #D1CCBD;
	padding: 80px 0;
}
#about .fullWide .text{
	width: 95%;
	margin: 0 auto;
}
#about .fullWide .text p{
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 2.2;
	padding: 0.5em 0;
	text-align: center;
}




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


#shoplist{
	width: 90%;
	max-width: 920px;
	margin: 120px auto 0;
	padding-top: 80px;
	overflow: hidden;
}


#shoplist .shop{
	width: 92%;
	margin: 80px auto 0;
}

#shoplist .shop ul.left{
	width: 45%;
	float: left;
}
#shoplist .shop ul.right{
	width: 45%;
	float: right;
}
#shoplist .shop li{
	margin-bottom: 40px;
}
#shoplist .shop h4{
	font-size: 18px;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 0.05em;
	position: relative;
}
#shoplist .shop h4 span{
	font-family: 'Antonio', sans-serif;
	font-weight: 300;
}

#shoplist .shop a{
	color: #5B4926;
}
@media(min-width: 769px) {
#shoplist .shop a:hover{text-decoration: underline;}
}


#shoplist .shop p{
	line-height: 1.6;
	letter-spacing: 0.03em;
	margin-top: 0.8em;
}







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



footer{
	width: 100%;
	background: #FFF;
	padding-top: 280px;
}
footer .inner{
	width: 100%;
	background: #D1CCBD;
	padding-bottom:50px;
	text-align: center;
}

footer .instagram{
	width: 30px;
	margin: 0 auto;
	padding: 120px 0 80px;
}
footer h3{
	width: 250px;
	margin: 0 auto;
}
footer .copyright{
	font-family: 'Antonio', sans-serif;
	font-weight: 200;
	font-size: 16px;
	letter-spacing: 0.08em;
	margin-top: 35px;
}

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;
}

footer .pagetop svg{
	fill:#5B4926;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}


@media(min-width: 769px) {
footer .instagram a:hover{
	opacity:0.6;
}
footer .pagetop:hover svg{fill:#968A71;}

}





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

.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: 16px 0;
}

.sideNavi ul li .dot{
	width: 21px;
	height: 21px;
	margin: 0 auto;
	background: #C2BA98;
	-webkit-border-radius:5px;
	border-radius:5px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.sideNavi .title{
	width: 16px;
	margin: 6px auto 0;
	
}
.sideNavi .title svg{
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	fill:#C2BA98;
}
.sideNavi ul li a{
    display: block;
}

.sideNavi ul li.current .dot{background:#5B4926;}
.sideNavi ul li.current a .title svg{fill:#5B4926;}


.sideNavi .side_Instagram{
    width: 27px;
    margin: 3px auto 0;
}
.sideNavi .side_Instagram a{
    -webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi .pagetop{
    width: 35px;
    margin: 23px auto 0;
    cursor: pointer;
}
.sideNavi .pagetop svg{
	fill:#5B4926;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}


@media(min-width: 769px) {

.sideNavi ul li a:hover .dot{background:#5B4926;}
.sideNavi ul li a:hover .title svg{fill:#5B4926;}
.sideNavi .pagetop:hover svg{opacity: 0.5;}
.sideNavi .side_Instagram a:hover{opacity: 0.45;}
}


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


.spBottomNavi{display: none;}


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







