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


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega&display=swap');

/*font-family: 'Noto Sans JP', sans-serif;*/
/*font-family: 'Sawarabi Gothic', sans-serif;*/
/*font-family: 'Jost', sans-serif;*/
/*font-family: 'Poppins', sans-serif;*/
/*font-family: 'Lexend Mega', sans-serif;*/

/*ブルーグレー　#DCE3EB*/


/* ---------- 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:#6F6259;
    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;
/*    background:#DCE3EB;*/
    z-index:1000;
    overflow:hidden;
	/*
	-webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.75, 0);
	   -moz-transition: all 0.5s cubic-bezier(0.5, 0, 0.75, 0);
	    -ms-transition: all 0.5s cubic-bezier(0.5, 0, 0.75, 0);
	        transition: all 0.5s cubic-bezier(0.5, 0, 0.75, 0);
	*/
}
/*
#loader-bg.start{height:0%;min-height:0%;}
*/



#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{
    -webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
    position: relative;
    top: 40px;
	-webkit-transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-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{
    -webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
    top: 0;
}

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





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

#header .title{
	width: 78%;
	margin: 0 auto;
	padding-top: 43px;
	position: relative;
	max-width: 1200px;
	top: 80px;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	-webkit-transition: all 1.0s cubic-bezier(0.45, 0, 0.55, 1);
	   -moz-transition: all 1.0s cubic-bezier(0.45, 0, 0.55, 1);
	    -ms-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;
	-webkit-opacity:1.0;
	-moz-opacity:1.0;
	-ms-opacity:1.0;
	opacity:1.0;
}

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


#header .mainImage{
	width: 100%;
	overflow: hidden;
}
#header .mainImage .pcImage{
	width: 90%;
	margin: 4% auto 0;
	max-width: 1380px;
	padding-bottom: 10%;
}

#header .mainImage .pcImage ul{
	width: 105.333%;
	font-size: 0;
}
#header .mainImage .pcImage ul li{
	width: 11.333%;
	margin-right: 5.333%;
	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);
	   -moz-transition: all 1.3s cubic-bezier(0.45, 0, 0.55, 1);
	    -ms-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: 87%;}

#header .mainImage .pcImage.start ul li.yellow .colorBar{
	-webkit-transition-delay:0.3s;
		-moz-transition-delay:0.3s;
		  -ms-transition-delay:0.3s;
				  transition-delay:0.3s;
}
#header .mainImage .pcImage.start ul li.blue .colorBar{
	-webkit-transition-delay:0.6s;
		-moz-transition-delay:0.6s;
		  -ms-transition-delay:0.6s;
				  transition-delay:0.6s;
}
#header .mainImage .pcImage.start ul li.green .colorBar{
	-webkit-transition-delay:0.9s;
		-moz-transition-delay:0.9s;
		  -ms-transition-delay:0.9s;
				  transition-delay:0.9s;
}
#header .mainImage .pcImage.start ul li.white .colorBar{
	-webkit-transition-delay:1.2s;
		-moz-transition-delay:1.2s;
		  -ms-transition-delay:1.2s;
				  transition-delay:1.2s;
}
#header .mainImage .pcImage.start ul li.red .colorBar{
	-webkit-transition-delay:1.5s;
		-moz-transition-delay:1.5s;
		  -ms-transition-delay:1.5s;
				  transition-delay:1.5s;
}

#header .mainImage .pink .colorBar{background:#FF8189;}
#header .mainImage .yellow .colorBar{background:#FAE345;}
#header .mainImage .blue .colorBar{background:#0097CE;}
#header .mainImage .green .colorBar{background:#79DEA8;}
#header .mainImage .white .colorBar{background:#FFFFFF;}
#header .mainImage .red .colorBar{background:#F32735;}


#header .mainImage .pcImage ul li .colorImage{
	width: 182%;
	position: absolute;
	z-index: 10;
}
#header .mainImage .pcImage.start ul li.pink .colorImage{top:9%;left: -34%;}
#header .mainImage .pcImage.start ul li.yellow .colorImage{top:22%;left: -17%;}
#header .mainImage .pcImage.start ul li.blue .colorImage{top:9%;left: -26%;}
#header .mainImage .pcImage.start ul li.green .colorImage{top:22%;left: -49%;}
#header .mainImage .pcImage.start ul li.white .colorImage{top:9%;left: -50%;}
#header .mainImage .pcImage.start ul li.red .colorImage{top:22%;left: -48%;}

#header .mainImage .pcImage ul li .colorImage img{
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	position: relative;
	left: -10%;
	-webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-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{
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
	left: 0;
	-webkit-transition-delay:3.0s;
		-moz-transition-delay:3.0s;
		  -ms-transition-delay:3.0s;
				  transition-delay:3.0s;
}
#header .mainImage .pcImage.start ul li.yellow .colorImage img,
#header .mainImage .pcImage.start ul li.green .colorImage img,
#header .mainImage .pcImage.start ul li.red .colorImage img{
	-webkit-transition-delay:3.8s;
		-moz-transition-delay:3.8s;
		  -ms-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: 1px;
    position: absolute;
    left:0;
	right: 0;
	bottom: -50px;
	margin: 0 auto;
    height:100px;
    z-index: 500;
	display: none;

}
.scrollbar .bar{
	width:1px;
	height:100px;
	position: absolute;
	bottom:0;
	left: 0;
	overflow: hidden;
    z-index: 10;
	background: #FFF;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(
			to bottom,
			rgba(55, 58, 54, 1) 50%,
			rgba(55, 58, 54, 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;
	}
}


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



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

#lead p{
	width: 95%;
	margin: 0 auto;
	font-family: 'Sawarabi Gothic', sans-serif;
	font-size: 23px;
	letter-spacing: 0.08em;
	line-height: 2.2;
	text-align: center;
}
#lead p br.res{display: none;}
#lead p br.sp01{display: none;}
#lead p br.sp02{display: none;}
/* --------------------------------- */



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

.menu h3{
	font-family: 'Jost', sans-serif;
	font-size: 26px;
	text-align: center;
	width: 95%;
	line-height: 1;
	padding-bottom: 0.3em;
	margin:0 auto 13%;
	border-bottom: 2px solid #FFF;
}
.menu .m01 h3{border-color: #FF8189;}
.menu .m02 h3{border-color: #FAE345;}
.menu .m03 h3{border-color: #0097CE;}
.menu .m04 h3{border-color: #79DEA8;}
.menu .m05 h3{border-color: #FFFFFF;}
.menu .m06 h3{border-color: #F32735;}



.menu .colorNavi{
    width: 98%;
	max-width: 1050px;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
}
.menu .colorNavi li,
.menu .colorNavi.delighter li{
    width: 16.66666%;
    padding: 0 0.8%;
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: 30px;
    -webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
    -webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-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 .colorNavi.delighter.started li{
    top: 0;
    -webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
}
.menu .colorNavi.delighter.ended{}


.menu .colorNavi.delighter li.m01{
    -webkit-transition-delay:0.2s;
	   -moz-transition-delay:0.2s;
	    -ms-transition-delay:0.2s;
	        transition-delay:0.2s;
}
.menu .colorNavi.delighter li.m02{
    -webkit-transition-delay:0.5s;
	   -moz-transition-delay:0.5s;
	    -ms-transition-delay:0.5s;
	        transition-delay:0.5s;
}
.menu .colorNavi.delighter li.m03{
    -webkit-transition-delay:0.8s;
	   -moz-transition-delay:0.8s;
	    -ms-transition-delay:0.8s;
	        transition-delay:0.8s;
}
.menu .colorNavi.delighter li.m04{
    -webkit-transition-delay:1.1s;
	   -moz-transition-delay:1.1s;
	    -ms-transition-delay:1.1s;
	        transition-delay:1.1s;
}
.menu .colorNavi.delighter li.m05{
    -webkit-transition-delay:1.4s;
	   -moz-transition-delay:1.4s;
	    -ms-transition-delay:1.4s;
	        transition-delay:1.4s;
}
.menu .colorNavi.delighter li.m06{
    -webkit-transition-delay:1.7s;
	   -moz-transition-delay:1.7s;
	    -ms-transition-delay:1.7s;
	        transition-delay:1.7s;
}


.menu .colorNavi .navImage{
    width: 100%;
    margin: 0 auto;
    position: relative;
	overflow: hidden;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-ms-border-radius:100%;
	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;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-ms-border-radius:100%;
	border-radius:100%;


}
.menu .colorNavi .m01 .navImage:after{border-color: #FF8189;}
.menu .colorNavi .m02 .navImage:after{border-color: #FAE345;}
.menu .colorNavi .m03 .navImage:after{border-color: #0097CE;}
.menu .colorNavi .m04 .navImage:after{border-color: #79DEA8;}
.menu .colorNavi .m05 .navImage:after{border-color: #FFFFFF;}
.menu .colorNavi .m06 .navImage:after{border-color: #F32735;}



.menu .colorNavi .navImage .visual{
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	overflow: hidden;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-ms-border-radius:100%;
	border-radius:100%;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-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);
	   -moz-transform:scale3d(1.05,1.05,1);
	    -ms-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 .m06 .visual{background-image:url("../../images/menu06.jpg");}

.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;
    margin: 0 auto;
    width: 7em;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
	font-style: italic;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-transform:translateY(-50%) scale(0.8);
	   -moz-transform:translateY(-50%) scale(0.8);
	    -ms-transform:translateY(-50%) scale(0.8);
	        transform:translateY(-50%) scale(0.8);
    -webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-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;


}
.menu .colorNavi .navImage .caption:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(212,202,159,0.5);*/
    background: rgba(255,255,255,0.6);
	content: '';
    -webkit-transition: all 0.6s;
	   -moz-transition: all 0.6s;
	    -ms-transition: all 0.6s;
	        transition: all 0.6s;
    -webkit-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	   -moz-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	    -ms-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	        transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);    
}




@media(min-width:769px) {
.menu .colorNavi .navImage:hover .visual {
	-webkit-opacity:0.35;
	-moz-opacity:0.35;
	-ms-opacity:0.35;
	opacity:0.35;
	-webkit-transform:scale3d(1,1,1);
	   -moz-transform:scale3d(1,1,1);
	    -ms-transform:scale3d(1,1,1);
	        transform:scale3d(1,1,1);
}
.menu .colorNavi .navImage:hover .caption p{
    -webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
    -webkit-transform:translateY(-50%) scale(1);
	   -moz-transform:translateY(-50%) scale(1);
	    -ms-transform:translateY(-50%) scale(1);
	        transform:translateY(-50%) scale(1);
}
.menu .colorNavi .navImage:hover .caption::before {
    -webkit-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	   -moz-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	    -ms-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	        transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0); 
}
}






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




.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;
	background: #D6D1CA;
	-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) ;
}
.category .colorTitle.delighter.started .bar{
    width: 100%;
}

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

.category.pink .colorTitle h2{color:#FF8189;}
.category.yellow .colorTitle h2{color:#FAE345;}
.category.blue .colorTitle h2{color:#0097CE;}
.category.green .colorTitle h2{color:#79DEA8;}
.category.white .colorTitle h2{color:#BBBBBB;}
.category.red .colorTitle h2{color:#F32735;}



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


.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;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
    -webkit-transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6) 1.2s;
	   -moz-transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6) 1.2s;
	    -ms-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);
	-moz-transform:translate(30%,-50%) scale(0.8);
	-ms-transform:translate(30%,-50%) scale(0.8);
	transform:translate(30%,-50%) scale(0.8);
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-ms-border-radius:100%;
	border-radius:100%;
}
.category .styleLeft.delighter.started .balloon{
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
	-webkit-transform:translate(30%,-50%) scale(1.0);
	-moz-transform:translate(30%,-50%) scale(1.0);
	-ms-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-size: 18px;
	text-align: center;
	color:  #FFF;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);  
}

.category.pink .styleLeft .balloon, .category.pink .styleLeft.delighter .balloon{background: rgba(255,180,171,0.7);}
.category.yellow .styleLeft .balloon, .category.yellow .styleLeft.delighter .balloon{background: rgba(248,223,141,0.7);}
.category.blue .styleLeft .balloon, .category.blue .styleLeft.delighter .balloon{background: rgba(141,198,232,0.7);}
.category.green .styleLeft .balloon, .category.green .styleLeft.delighter .balloon{background: rgba(139,211,189,0.7);}
.category.white .styleLeft .balloon, .category.white .styleLeft.delighter .balloon{background: rgba(216,223,225,0.7);}
.category.red .styleLeft .balloon, .category.red .styleLeft.delighter .balloon{background: rgba(219,0,50,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;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	-webkit-transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
		-moz-transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
		  -ms-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{
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	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);
		-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);
}
.category .styleLeft.delighter.started .photoSet .colorBK span{
	width: 100%;
}



.category.pink .styleLeft .photoSet .colorBK span{background: rgba(255,180,171,0.7);}
.category.yellow .styleLeft .photoSet .colorBK span{background: rgba(248,223,141,0.7);}
.category.blue .styleLeft .photoSet .colorBK span{background: rgba(141,198,232,0.7);}
.category.green .styleLeft .photoSet .colorBK span{background: rgba(139,211,189,0.7);}
.category.white .styleLeft .photoSet .colorBK span{background: rgba(216,223,225,0.7);}
.category.red .styleLeft .photoSet .colorBK span{background: rgba(219,0,50,0.7);}



.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;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
		-moz-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
		  -ms-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;
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	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;
}
.category .comment p span{
	font-family: 'Jost', sans-serif;
	font-weight: 300;
}




/*-----*/


.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;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	-webkit-transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
		-moz-transition: all 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.0s;
		  -ms-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{
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	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);
		-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);
}
.category .styleRight.delighter.started .photoSet .colorBK span{
	width: 100%;
}
.category.pink .styleRight .photoSet .colorBK span{background: rgba(255,180,171,0.7);}
.category.yellow .styleRight .photoSet .colorBK span{background: rgba(248,223,141,0.7);}
.category.blue .styleRight .photoSet .colorBK span{background: rgba(141,198,232,0.7);}
.category.green .styleRight .photoSet .colorBK span{background: rgba(139,211,189,0.7);}
.category.white .styleRight .photoSet .colorBK span{background: rgba(216,223,225,0.7);}
.category.red .styleRight .photoSet .colorBK span{background: rgba(219,0,50,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;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
		-moz-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s;
		  -ms-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;
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	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;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	-ms-border-radius:20px;
	border-radius:20px;
}

.category.pink .styleRight .itemBox h3{border-color: #FF8189;}
.category.yellow .styleRight .itemBox h3{border-color: #FAE345;}
.category.blue .styleRight .itemBox h3{border-color: #0097CE;}
.category.green .styleRight .itemBox h3{border-color: #79DEA8;}
.category.white .styleRight .itemBox h3{border-color: #BBBBBB;}
.category.red .styleRight .itemBox h3{border-color: #F32735;}




.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: 40%;
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    vertical-align: top;
    padding: 5px 0;
}
.itemList dl .price{
    width: 8em;
	position: absolute;
	top: 0;
	right: 32%;
    font-size: 16px;
    line-height: 1.4;
    vertical-align: top;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    padding: 5px 0;
}
.itemList dl .price p{text-align:right;display:inline-block; width:8em;}
.itemList dl .price span{
    font-size: 11px;
    letter-spacing: 0.03em;
}
.itemList dl dd{
    width: 23%;
	max-width: 80px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}
.itemList dl dd a{
    display: inline-block;
    text-align: center;
    padding: 7px 0px 8px;
	width: 100%;
    border: 1px solid #6F6259;
    background:#6F6259;
    color: #FFF;
	line-height: 1;
	font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
	letter-spacing: 0.08em;
}
.itemList dl dd a:hover{
    background:#F2F2F2;
    color: #6F6259;
}





.itemList .otherItem{
    display: none;
}

.itemList .otherTrigger{
    margin:16px auto 0;
    border: 1px solid #6F6259;
    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;
	   -moz-transition: all 0.3s linear;
	    -ms-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: #6F6259;
}
.itemList .otherTrigger p:before{
    -webkit-transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
	   -moz-transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
	    -ms-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);
	   -moz-transform:rotate(90deg);
	    -ms-transform:rotate(90deg);
            transform:rotate(90deg);
}
.itemList .otherTrigger.open p:before{
    -webkit-transform:rotate(0deg);
	   -moz-transform:rotate(0deg);
	    -ms-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;
	background: #D6D1CA;
	-webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
		-moz-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
		  -ms-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%;
}

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


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

.coordinate .cooedItems li,
.coordinate .cooedItems.delighter li{
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	position: relative;
	top: 20px;
	-webkit-transition: all 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
		-moz-transition: all 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
		  -ms-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{
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
	top: 0px;
}

.coordinate .cooedItems li.left,
.coordinate .cooedItems.delighter li.left{
	padding-right: 2%;
	-webkit-transition-delay:0.3s;
		-moz-transition-delay:0.3s;
		  -ms-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;
		-moz-transition-delay:0.6s;
		  -ms-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;
		-moz-transition-delay:0.9s;
		  -ms-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: #6F6259;
}

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

.pink .coordinate .cooedItems .photo span{background:#FBCBC3;}
.yellow .coordinate .cooedItems .photo span{background:#F9E8AF;}
.blue .coordinate .cooedItems .photo span{background:#ADD7F0;}
.green .coordinate .cooedItems .photo span{background:#AEE0D0;}
.white .coordinate .cooedItems .photo span{background:#E3E8EA;}
.red .coordinate .cooedItems .photo span{background:#EB7D91;}



.coordinate .cooedItems h5{
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	width: 100%;
	max-width: 265px;
	font-family: 'Sawarabi Gothic', sans-serif;
	position: relative;
	padding: 30px 0 15px;
	margin: 0 auto;
}
.coordinate .cooedItems h5:after{
	content:  '';
	display: block;
	width: 100%;
	height: 6px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.pink .coordinate .cooedItems h5:after{background: #FBB4AB;}
.yellow .coordinate .cooedItems h5:after{background: #F6DE8C;}
.blue .coordinate .cooedItems h5:after{background: #ADD7F0;}
.green .coordinate .cooedItems h5:after{background: #8BD3BD;}
.white .coordinate .cooedItems h5:after{background: #D8DEE1;}
.red .coordinate .cooedItems h5:after{background: #EB7D91;}



.coordinate .cooedItems .comment{
	font-size: 15px;
	letter-spacing: 0.05em;
	text-align: left;
	margin-top: 25px;
}

.coordinate .cooedItems .itemBox{margin-top: 20px;}
.coordinate .cooedItems .itemList dl{margin-top: 10px;}
.coordinate .cooedItems .itemList dl .name{width: 40%;font-size: 15px;}
.coordinate .cooedItems .itemList dl .price{width: 8em;right:90px;font-size: 15px;}
.coordinate .cooedItems .itemList dl dd{width: 70px;max-width: 70px;}
.coordinate .cooedItems .itemList dl dd a{padding: 6px 0px 7px;font-size: 13px;}
.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;
	border-width: 3px;
	border-style: solid;
	box-sizing:border-box;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}

.pink .colorBanner .waku{background: rgba(255,180,171,0.65);border-color: rgba(255,180,171,0);}
.yellow .colorBanner .waku{background: rgba(248,223,141,0.65);border-color: rgba(248,223,141,0);}
.blue .colorBanner .waku{background: rgba(141,198,232,0.65);border-color: rgba(141,198,232,0);}
.green .colorBanner .waku{background: rgba(139,211,189,0.65);border-color: rgba(139,211,189,0);}
.white .colorBanner .waku{background: rgba(216,223,225,0.8);border-color: rgba(216,223,225,0);}
.red .colorBanner .waku{background: rgba(219,0,50,0.65);border-color: rgba(219,0,50,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: 50;
	padding:0 0 0.8em 2.5em;
	border-bottom: 2px solid #FFF;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}



@media(min-width: 769px) {
.pink .colorBanner a:hover  .waku{background: rgba(255,180,171,0);border-color: rgba(255,180,171,1);}
.yellow .colorBanner a:hover  .waku{background: rgba(248,223,141,0);border-color: rgba(248,223,141,1);}
.blue .colorBanner a:hover  .waku{background: rgba(141,198,232,0);border-color: rgba(141,198,232,1);}
.green .colorBanner a:hover  .waku{background: rgba(139,211,189,0);border-color: rgba(139,211,189,1);}
.white .colorBanner a:hover  .waku{background: rgba(187,187,187,0);border-color: rgba(216,223,225,1);}
.red .colorBanner a:hover  .waku{background: rgba(219,0,50,0);border-color: rgba(219,0,50,1);}

.pink .colorBanner a:hover .waku h4{color: #686058;border-color: rgba(255,180,171,1);}
.yellow .colorBanner a:hover .waku h4{color: #686058;border-color: rgba(248,223,141,1)}
.blue .colorBanner a:hover .waku h4{color: #686058;border-color: rgba(141,198,232,1);}
.green .colorBanner a:hover .waku h4{color: #686058;border-color: rgba(139,211,189,1);}
.white .colorBanner a:hover .waku h4{color: #686058;border-color: rgba(216,223,225,1);}
.red .colorBanner a:hover .waku h4{color: #686058;border-color: rgba(219,0,50,1);}


}



























































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

.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);
	   -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);
    -webkit-transform:translateY(-50%);
	   -moz-transform:translateY(-50%);
	    -ms-transform:translateY(-50%);
	        transform:translateY(-50%);  
}
.sideNavi.view{right: 12px;}
.sideNavi ul{}
.sideNavi ul li{
	margin: 12px 0;
}

.sideNavi ul li .dot{
	width: 22px;
	height: 22px;
	margin: 0 auto;
	border: 1px solid #D0CFCD;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	-ms-border-radius:100%;
	border-radius:100%;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}
.sideNavi ul li.n01 .dot{border-color:#FF8189;}
.sideNavi ul li.n02 .dot{border-color:#FAE345;}
.sideNavi ul li.n03 .dot{border-color:#0097CE;}
.sideNavi ul li.n04 .dot{border-color:#79DEA8;}
.sideNavi ul li.n05 .dot{border-color:#D0CFCD;}
.sideNavi ul li.n06 .dot{border-color:#F32735;}



.sideNavi .title{
	width: 14px;
	margin: 6px auto 0;
}
.sideNavi .title svg{
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}
.sideNavi ul li a{
    display: block;
}

.sideNavi ul li.current.n01 .dot{background-color:#FF8189;}
.sideNavi ul li.current.n02 .dot{background-color:#FAE345;}
.sideNavi ul li.current.n03 .dot{background-color:#0097CE;}
.sideNavi ul li.current.n04 .dot{background-color:#79DEA8;}
.sideNavi ul li.current.n05 .dot{background-color:#D8DFE1;border-color:#D8DFE1;}
.sideNavi ul li.current.n06 .dot{background-color:#F32735;}

.sideNavi ul li a .title svg{fill:#D6D1CA;}
.sideNavi ul li.current.n01 a .title svg{fill:#FF8189;}
.sideNavi ul li.current.n02 a .title svg{fill:#FAE345;}
.sideNavi ul li.current.n03 a .title svg{fill:#0097CE;}
.sideNavi ul li.current.n04 a .title svg{fill:#79DEA8;}
.sideNavi ul li.current.n05 a .title svg{fill:#D8DFE1;}
.sideNavi ul li.current.n06 a .title svg{fill:#F32735;}


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

@media(min-width: 769px) {

.sideNavi ul li.n01 a:hover .dot{background-color:#FF8189;}
.sideNavi ul li.n02 a:hover .dot{background-color:#FAE345;}
.sideNavi ul li.n03 a:hover .dot{background-color:#0097CE;}
.sideNavi ul li.n04 a:hover .dot{background-color:#79DEA8;}
.sideNavi ul li.n05 a:hover .dot{background-color:#D8DFE1;border-color:#D8DFE1;}
.sideNavi ul li.n06 a:hover .dot{background-color:#F32735;}

.sideNavi ul li.n01 a:hover .title svg{fill:#FF8189;}
.sideNavi ul li.n02 a:hover .title svg{fill:#FAE345;}
.sideNavi ul li.n03 a:hover .title svg{fill:#0097CE;}
.sideNavi ul li.n04 a:hover .title svg{fill:#79DEA8;}
.sideNavi ul li.n05 a:hover .title svg{fill:#D8DFE1;}
.sideNavi ul li.n06 a:hover .title svg{fill:#F32735;}

.sideNavi .pagetop:hover svg{fill:#6F6259;}

}


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


.spBottomNavi{display: none;}


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



.footer{
    width:88%;
	max-width: 1040px;
	margin: 0px auto 0;
    overflow: hidden;
    position: relative;
	color: #6F6259;
}



.footer .relationBanner{
    width: 100%;
    margin: 0 auto 250px;
}
.footer .relationBanner a{
	width: 100%;
	display:block;
	background: #DCE3EB;
	border: 2px solid #DCE3EB;
	position: relative;
	color:#6F6259;
	padding: 60px 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}
.footer .relationBanner h3{
	width: 70%;
	margin: 0 auto;
    font-size: 34px;
    letter-spacing: 0.08em;
	text-align: center;
	position: relative;
	line-height: 1;
	padding-bottom: 0.5em;
}
.footer .relationBanner h3:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #6F6259;
}

@media(min-width:769px) {
.footer .relationBanner a:hover {background: #FFF;border-color: #6F6259;}
}


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


.footer .footerTitle{
	width: 77%;
	margin: 0 auto;
	position: relative;
}
.footer .footerTitle .bar,
.footer .footerTitle.delighter .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0%;
	height: 20px;
	margin: 0 auto;
	background: #D6D1CA;
	-webkit-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
		-moz-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
		  -ms-transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
		  		  transition: all 1.0s cubic-bezier(0.25, 1, 0.5, 1) ;
}
.footer .footerTitle.delighter.started .bar{
	width: 100%;
}
.footer .footerTitle h3,
.footer .footerTitle.delighter h3{
	font-family: 'Jost', sans-serif;
	font-size: 80px;
	font-weight: 300;
	margin: 0 auto;
	position: relative;
	line-height: 0.7;
	letter-spacing: 0.05em;
	z-index: 20;
	text-align: center;
	top: -15px;
	-webkit-opacity:0;
	-moz-opacity:0;
	-ms-opacity:0;
	opacity:0;
	-webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
		-moz-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
		  -ms-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;
}
.footer .footerTitle.delighter.started h3{
	-webkit-opacity:1;
	-moz-opacity:1;
	-ms-opacity:1;
	opacity:1;
	top: 0;
}


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


.footer .otherContents{
    width: 100%;
    margin: 140px auto 0;
}
.footer .otherContents .inner{
    width: 95%;
    margin: 0 auto;
}
.footer .otherContents ul{
    width: 105%;
    font-size: 0;
}
.footer .otherContents ul li{
    width: 45%;
    margin-right: 5%;
    display: inline-block;
    margin-bottom: 50px;
    vertical-align: top;
}
.footer .otherContents ul li .banner{
    display: block;
    position: relative;
    background-position: center center;
    background-size: cover;
}
.footer .otherContents ul li .banner.n01{background-image:url("../../images/next01.jpg");}
.footer .otherContents ul li .banner.n02{background-image:url("../../images/next02.jpg");}
.footer .otherContents ul li .banner.n03{background-image:url("../../images/next03.jpg");}
.footer .otherContents ul li .banner.n04{background-image:url("../../images/next04.jpg");}
.footer .otherContents ul li .banner.n05{background-image:url("../../images/next05.jpg");}

.footer .otherContents ul li .banner:after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
    background: rgba(220,227,235,0.5);
}
.footer .otherContents ul li a{color: #6F6259;}
.footer .otherContents ul li a  .banner:after{
	background: rgba(111,98,89,0.5);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}
@media(min-width:769px) {
.footer .otherContents ul li a:hover .banner:after{background: rgba(220,227,235,0.5)}
}
.footer .otherContents ul li .banner .inner{
    width: 55%;
    margin: 0 auto;
    padding: 5% 0;
    position: relative;
    z-index: 10;
}
.footer .otherContents ul li .banner .inner{
    width: 55%;
    margin: 0 auto;
    padding: 5% 0;
    position: relative;
    z-index: 10;
}
.footer .otherContents ul li .banner .subtitle{
	position: absolute;
	z-index: 15;
	width: 40%;
	bottom: 7%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.footer .otherContents ul li .banner.n04 span{
    position: absolute;
    bottom: 4%;
    right: 4%;
    width: 20%;
    z-index: 4;
}
.footer .otherContents ul li h4{
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: 0.05em;
}
.footer .otherContents ul li h4 .peanuts{
    width:7em;
    display: inline-block;
    vertical-align:middle;
    position: relative;
    margin-top: 0.3em;
    padding-right: 0.4em;
}


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

.footer .golf{
    width: 100%;
    margin: 180px auto 0;
}
.footer .golf h2{
    width:70%;
    max-width:465px;
    margin: 0 auto 80px;
}
.footer .golf h4{
    font-size: 38px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 20px;
}
.footer .golf ul{
    width: 101.5%;
    font-size: 0;
    text-align: center;
    margin-top: 120px;
}
.footer .golf ul li{
    width: 18.5%;
    margin-right: 1.5%;
    display: inline-block;  
}
.footer .golf ul li a{
    display: block;
    background: #DCE3EB;
    border: 1px solid #DCE3EB;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}
.footer .golf ul li:first-child{
    width: 48.5%;
	display: block;
	margin-left: 25.0%;
	margin-bottom: 3.5%;
}
.footer .golf ul li:last-child{
    width: 48.5%;
	display: block;
	margin-left: 25.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: 220px auto 200px;
}
.footer .sns h3{
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 22px;
    position: relative;
    letter-spacing: 0.02em;
    display: inline-block;
}
.footer .sns h3:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #6F6259;
}
.footer .sns .instagram{
    width: 40px;
    margin: 30px auto 0;
}


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

.footer .onwardLogo{
    width: 240px;
    margin: 0 auto;
}
.footer .copyright{
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 40px 0 100px;
}

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







@media(min-width: 769px) {


.footer .sns a:hover,
.footer .onwardLogo a:hover{
    -webkit-opacity:0.6;
	-moz-opacity:0.6;
	-ms-opacity:0.6;
	opacity:0.6;
}
}





















/* ========================= 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;
}

.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);
	   -moz-transform:rotate(305deg);
	    -ms-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);
	   -moz-transform:rotate(55deg);
	    -ms-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);
	   -moz-transform:rotate(-305deg);
	    -ms-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);
	   -moz-transform:rotate(-55deg);
	    -ms-transform:rotate(-55deg);
            transform:rotate(-55deg);
}

.pink .slick-prev::after,.pink .slick-prev::before,.pink .slick-next::after,.pink .slick-next::before{background: #FF8189;}
.yellow .slick-prev::after,.yellow .slick-prev::before,.yellow .slick-next::after,.yellow .slick-next::before{background: #FAE345;}
.blue .slick-prev::after,.blue .slick-prev::before,.blue .slick-next::after,.blue .slick-next::before{background: #0097CE;}
.green .slick-prev::after,.green .slick-prev::before,.green .slick-next::after,.green .slick-next::before{background: #79DEA8;}
.white .slick-prev::after,.white .slick-prev::before,.white .slick-next::after,.white .slick-next::before{background: #DDDDDD;}
.pink .slick-prev::after,.pink .slick-prev::before,.pink .slick-next::after,.pink .slick-next::before{background: #FF8189;}
.red .slick-prev::after,.red .slick-prev::before,.red .slick-next::after,.red .slick-next::before{background: #F32735;}


/* slick-dots */

.slick-dots{
    display:block;
    list-style:outside none none;
    padding:0;
    text-align:center;
    width:100%;
	position:absolute;
	bottom:-40px;
	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:8px;
	width:8px;
	padding:0px;
    line-height: 0;
    outline:medium none;
	background:#B3B3B3;
	border-radius:8px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px; 
}
.slick-dots li.slick-active button {
	background:#769DA7;
}




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

@media(max-width:650px) {
.slick-prev,
.slick-next {top:68vw;width:7.5vw;}
.slick-prev::after{top:3.0vw;left:1.6vw;width: 4.5vw;}
.slick-prev::before{bottom:3.0vw;left:1.6vw;width: 4.5vw;}
.slick-next::after{top:3.0vw;right:1.6vw;width: 4.5vw;}
.slick-next::before{bottom:3.0vw;right:1.6vw;width: 4.5vw;}
}















