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


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

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&display=swap');
/*
font-family: 'Shippori Mincho', serif;
SemiBold 600
*/



@font-face {
  font-family: "JansonTextPro55Roman";
  src: url('../../font/JansonTextPro55Roman/font.woff2') format('woff2'), url('../../font/JansonTextPro55Roman/font.woff') format('woff');
}
@font-face {
  font-family: "JansonTextPro56Italic";
  src: url('../../font/JansonTextPro56Italic/font.woff2') format('woff2'), url('../../font/JansonTextPro56Italic/font.woff') format('woff');
}
@font-face {
  font-family: "TTHovesProExpandedMedium";
  src: url('../../font/TTHovesProExpandedMedium/font.woff2') format('woff2'), url('../../font/TTHovesProExpandedMedium/font.woff') format('woff');
}
@font-face {
  font-family: "TTHovesProLight";
  src: url('../../font/TTHovesProLight/font.woff2') format('woff2'), url('../../font/TTHovesProLight/font.woff') format('woff');
}
@font-face {
  font-family: "TimesNewRomanProItalic";
  src: url('../../font/TimesNewRomanProItalic/font.woff2') format('woff2'), url('../../font/TimesNewRomanProItalic/font.woff') format('woff');
}






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

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

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

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

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


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

body{
	background:#F5F5F5;
    width: 100%;
    height: 100%;
    line-height: 1;
    -webkit-text-size-adjust: 100%;	
	font-family: 'Noto Sans JP','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	color:#FF0004;
	font-weight: 300;
}


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


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

}

#loader-bg .spinner {
    width: 100px;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    font-size: 0;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#loader-bg .spinner > div {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color:#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{
	will-change: transform,animation,position;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	opacity:0;
    position: relative;
    top: 40px;
	-webkit-transition: top 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s;
	transition: top 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s;
}
/* start */
.fade.delighter.started{
	opacity:1;
    top: 0;
}

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



/*

.guide,
.guide1,
.guide2,
.guide3,
.guide4{opacity: 0.3;z-index: 1000;position: relative;}

body:before{
	content: '';
	position: fixed;
	width: 1px;
	left: 50%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
.guide:before{
	content: '';
	position: fixed;
	width: 1px;
	left: 5%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}
.guide:after{
	content: '';
	position: fixed;
	width: 1px;
	right: 5%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}

.guide1:before{
	content: '';
	position: fixed;
	width: 1px;
	left: 10%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}
.guide1:after{
	content: '';
	position: fixed;
	width: 1px;
	right: 10%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}
.guide2:before{
	content: '';
	position: fixed;
	width: 1px;
	left: 15%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}
.guide2:after{
	content: '';
	position: fixed;
	width: 1px;
	right: 15%;
	top: 0;
	bottom: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}


.guide3:before{
	content: '';
	position: fixed;
	width: 1px;
	left: 7.5%;
	top: 0;
	bottom: 0;
	background: #00B5FF;
	opacity: 0.5;
	z-index: 1000;
}
.guide3:after{
	content: '';
	position: fixed;
	width: 1px;
	right: 7.5%;
	top: 0;
	bottom: 0;
	background: #00B5FF;
	opacity: 0.5;
	z-index: 1000;
}
.guide4:before{
	content: '';
	position: fixed;
	width: 1px;
	left: 12.5%;
	top: 0;
	bottom: 0;
	background: #00B5FF;
	opacity: 0.5;
	z-index: 1000;
}
.guide4:after{
	content: '';
	position: fixed;
	width: 1px;
	right: 12.5%;
	top: 0;
	bottom: 0;
	background: #00B5FF;
	opacity: 0.5;
	z-index: 1000;
}
*/

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

.spOnly{display: none;}
.pcOnly{display: block;}

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




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

#header .title{
	position: absolute;
	width: 100%;
	z-index: 20;
	top: 48%;
	left: 0;
	right: 0;
	padding: 15% 0;
	overflow: hidden;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}


#header .title h1{
	width: 26%;
	margin: 0 auto;
	-webkit-transform:scale(1.4);
	transform:scale(1.4);
	-webkit-transition: all 4.5s;
	transition: all 4.5s;
}
#header .title h1.view{
	-webkit-transform:scale(1.0);
	transform:scale(1.0);
}


#header .titleLogo{
	width: 100%;
	margin: 0 auto;
	opacity: 1;
}
#header .titleLogo.view{opacity: 1;}
#header .titleLogo .titleLogopath{
	fill:none;
	stroke:#FFF;
	stroke-width:19;
	stroke-miterlimit:20;
}
#header .titleLogo #BaseLogo{fill:#A2A6AE;}

#header .title h2{
	text-align: center;
	color: #A2A6AE;
	font-family: "TTHovesProExpandedMedium";
	font-size: 1.15vw;
	line-height: 1;
	margin-top: 0.7em;
	letter-spacing: 0.1em;
	opacity: 0;
	-webkit-transition: opacity 1.0s;
	transition: opacity 1.0s;
}
#header.start .title h2{opacity: 1;}




#header .logo{
	position: absolute;
	width: 80px;
	z-index: 18;
	top: 17px;
	right:17px;
	margin: 0 auto;
}


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


#header .mainImage{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	background: url("../../images/main_pc.jpg") center center no-repeat;
	background-size: cover;
}


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


.scrollbar{
    width: 25px;
    position: absolute;
    left:3%;
    bottom: -60px;
    height:130px;
    z-index: 300;
}
.scrollbar p{
    width: 17px;
	margin-top: 2px;
}
.scrollbar .base{
	width:1px;
	height:130px;
	position: absolute;
	bottom:0px;
	right: 0;
	overflow: hidden;
    z-index: 5;
    background:#6A6969;
}
.scrollbar .bar{
	width:1px;
	height:130px;
	position: absolute;
	bottom:0px;
	right: 0;
	overflow: hidden;
    z-index: 10;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(
			to bottom,
			rgba(181, 181, 182, 1) 50%,
			rgba(181,181, 182, 0) 50%
		);
		background-position: 0 -100%;
		background-size: 100% 200%;
		animation: scrolldown 3.8s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
	0% {background-position: 0 100%;}
	50% {background-position: 0 0;}
	100% {background-position: 0 -100%;}
}







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

.lead{
	width: 75%;
	margin: 130px auto 0;
	max-width: 960px;
	color: #686366;
	text-align: center;
}

.lead .catch{
	font-family: "TimesNewRomanProItalic";
	font-size: 52px;
	letter-spacing: 0.03em;
	line-height: 0.54;
}
.lead .catch h2{
	position: relative;
	opacity:0;
}
.lead .catch .top h2 span{position: relative;left: 0.4em;opacity:0;}
.lead .catch .bottom h2 span{position: relative;right: 0.4em;opacity:0;}

.lead .catch .bottom{margin-top: 0.8em;}

.lead .catch div{position: relative;}
.lead .catch div::after{
	content: "";
	position: absolute;
	bottom: 0;
	height: 1px;
	background: #AEA7A8;
	-webkit-transition: width 1.8s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.lead .catch .top::after{left: 0;width: 0}
.lead .catch .bottom::after{right: 0;width: 0}
.lead.start .catch .top::after{width: calc(50% + 2.7em);}
.lead.start .catch .bottom::after{width: calc(50% + 2.7em);}


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

.lead .copy{
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0.08em;
	line-height: 2.2;
	margin-top: 2.5em;
}
.lead .copy p{
	position: relative;
	top: 30px;
	opacity: 0;
	-webkit-transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.8s, opacity 12s 1.8s;
	transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.8s, opacity 1.2s 1.8s;
}
.lead.start .copy p{opacity: 1;top: 0;}


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

.mainNavi{
	width: 75%;
	margin: 130px auto 0;
	max-width: 960px;
	position: relative;
}
.mainNavi::before,
.mainNavi.delighter::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0%;
	height: 1px;
	background: #AEA7A8;
	-webkit-transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.mainNavi.delighter.started::before{width: 100%;}


.mainNavi::after,
.mainNavi.delighter::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0%;
	height: 1px;
	background: #AEA7A8;
	-webkit-transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.mainNavi.delighter.started::after{width: 100%;}



.mainNavi .navInner{
	width: 100%;
	position: relative;
}

.mainNavi .navBox,
.mainNavi.delighter .navBox{
	width: 44%;
	padding-bottom: 32px;
	position: relative;
	top: 40px;
	opacity: 0;
	-webkit-transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s;
	transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s;
}
.mainNavi.delighter.started .navBox{top: 0;opacity: 1}




.mainNavi .navBox.to01{float: left;margin-left: 2%;-webkit-transition-delay:0.5s;transition-delay:0.5s;}
.mainNavi .navBox.to02{float: right;margin-right: 2%;-webkit-transition-delay:0.8s;transition-delay:0.8s;}

.mainNavi .name{
	width: 100%;
	position: relative;
	font-family: "TTHovesProExpandedMedium";
	letter-spacing: 0.12em;
	text-align: center;
	line-height: 1;
	font-size: 26px;
	color: #686366;
	padding: 1.0em 0 0.7em;
	border-bottom: 1px solid #AEA7A8;
}

.mainNavi .photo{
	width: 100%;
	margin-top: 25px;
}
.mainNavi .photo a{
	position: relative;
	display: block;
	overflow: hidden;
}

.mainNavi .more{
	width: 60%;
	margin: 18px auto 0;
	text-align: center;
}
.mainNavi .more a{
	width: 100%;
	display: block;
	font-family: "TTHovesProLight";
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 10px 0 9px;
	color: #FFF;
}
.mainNavi .to01 .more a{background: #4F5D6B;border: 1px solid #4F5D6B;}
.mainNavi .to02 .more a{background: #6A6969;border: 1px solid #6A6969;}




@media (min-width: 769px) {

.mainNavi .photo .cover{
	position: absolute;
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
	z-index: 10;
}
.mainNavi .photo .cover::before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	content: '';
	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0);
	transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0);    
}
.mainNavi .to01 .photo .cover::before{background: rgba(230,230,230,0.6);}
.mainNavi .to02 .photo .cover::before{background: rgba(230,230,230,0.6);}


.mainNavi .photo a:hover .cover::before{
	-webkit-transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,110%,0);
	transform:scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,110%,0); 
}
.mainNavi .photo .cover:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
	z-index: 12;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.mainNavi .photo a:hover .cover:after{opacity: 0.4;}
.mainNavi .to01 .photo .cover:after{background: #4F5D6B;}
.mainNavi .to02 .photo .cover:after{background: #6A6969;}


/*------*/

.mainNavi .photo a:hover:after{opacity: 0.4;}

.mainNavi .to01 .more a:hover{background: #F5F5F5;color:#4F5D6B;}
.mainNavi .to02 .more a:hover{background: #F5F5F5;color:#6A6969;}

}


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



.wrapper{width: 100%;}




.separator{
	width: 75%;
	max-width: 960px;
	height: 4px;
	position: relative;
	margin: 200px auto;
}
.separator span,
.separator.delighter span{
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0%;
	margin: 0 auto;
	background: #3D4A56;
	-webkit-transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.separator.delighter.started span{width: 100%;}




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



.category.c01{width: 100%;margin-top: 210px;}
.category.c02{width: 100%;}





.categoryHeader{
	width: 100%;
	position: relative;
	border-top: 1px solid;
	border-bottom: 1px solid;
}
.c01 .categoryHeader{border-color:#7B7A7B;}
.c02 .categoryHeader{border-color:#413D3C;}

.categoryHeader::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	z-index: 1;
}
.c01 .categoryHeader::after{background:#4F5D6B;}
.c02 .categoryHeader::after{background:#6A6969;}


.categoryHeader .cover,
.categoryHeader.delighter .cover{
	position: absolute;
	width: 100%;
	top: -1px;
	bottom: -1px;
	right: 0;
	z-index: 50;
	background: #F5F5F5;
	-webkit-transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.categoryHeader.delighter.started .cover{width: 0;}



.categoryHeader .categoryInner{
	width: 85%;
	margin: 0 auto;
	max-width: 1200px;
	border-right: 1px solid;
	position: relative;
	z-index: 10;
}
.c01 .categoryHeader .categoryInner{background:#4F5D6B;border-color:#7B7A7B;}
.c02 .categoryHeader .categoryInner{background:#6A6969;border-color:#413D3C;}


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


.categoryHeader .movieArea{
	width: 88%;
	margin: 0 auto;
	background-position: center center;
	background-size: cover;
	/*background: #CCC;*/
}
.c01 .categoryHeader .movieArea{background-image: url("../../images/mov_th01.jpg");}
.c02 .categoryHeader .movieArea{background-image: url("../../images/mov_th02.jpg");}

.movieArea .movieLadise{
	width: 100%;
	padding-top: 56.25%;
	margin: 0 auto;
}
.movieArea .movieMens{
	width: 100%;
	padding-top: 56.25%;
	margin: 0 auto;
}

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

.categoryHeader .categoryName{
	position: absolute;
	top: 50%;
	right: -3.5%;
	width: 3.5%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}

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





.styleSet{
	width: 100%;
	max-width: 1280px;
	margin: 210px auto 0;
	padding-top: 30px;
	position: relative;
}/*アンカー用にpadding30px*/
.styleSet.styleLa01{margin-top: 100px;}
.styleSet.styleMe01{margin-top: 100px;}


.styleTitle{
	width: 70%;
	margin: 0 auto;
	position: relative;
}
.c01 .styleSet{color: #4F5D6B;}
.c02 .styleSet{color: #6A6969;}

.styleTitle .titleHeader{
	position: relative;
}
.styleTitle .titleHeader .icon{
	width:150px;
	position: relative;
}
.styleTitle .titleHeader .icon p{
	position: relative;
	z-index: 20;
}
.styleTitle .titleHeader .icon::before,
.styleTitle.delighter .titleHeader .icon::before{
	content: "";
	position: absolute;
	left: 30%;
	top: 70%;
	bottom: 32%;
	width: 3px;
	z-index: 25;
	-webkit-transition: bottom 1.2s cubic-bezier(0.76, 0, 0.3, 1) 0.3s;
	transition: bottom 1.2s cubic-bezier(0.76, 0, 0.3, 1) 0.3s;
}
.styleTitle.delighter.started .titleHeader .icon::before{bottom: calc(0% - 45px);}


.c01 .styleTitle .titleHeader .icon::before{background:#4F5D6B;}
.c02 .styleTitle .titleHeader .icon::before{background:#6A6969;}

.styleTitle .titleHeader .icon .circle{
	position: absolute;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
}
.c01 .styleTitle .titleHeader .icon .circle{box-shadow: inset 0 0 0 1px #A2A7B2;}
.c02 .styleTitle .titleHeader .icon .circle{box-shadow: inset 0 0 0 1px #B5B5B6;}

.styleTitle .titleHeader .icon .circle .cover1,
.styleTitle .titleHeader .icon .circle .cover2{
	position: absolute;
	overflow: hidden;
	width: 50%;
	height: 100%;
}
.styleTitle .titleHeader .icon .circle .cover1{left: 50%;}
.styleTitle .titleHeader .icon .circle .cover1::before,
.styleTitle .titleHeader .icon .circle .cover2::before{content: "";position: absolute;}

.styleTitle .titleHeader .icon .circle .cover1:before,
.styleTitle.delighter .titleHeader .icon .circle .cover1:before{
	width: 100%;
	height: 200%;
	background: #F5F5F5;
	transform-origin: 0 25%;
}
.styleTitle.delighter.started .titleHeader .icon .circle .cover1:before{
	animation: draw 0.45s linear  forwards;
}

.styleTitle .titleHeader .icon .circle .cover2:before,
.styleTitle.delighter .titleHeader .icon .circle .cover2:before{
	left: -10%;
	width: 110%;
	height: 120%;
	background: #F5F5F5;
	transform-origin: 100% 40%;
}
.styleTitle.delighter.started .titleHeader .icon .circle .cover2:before{
	animation: draw 0.45s ease-out 0.45s forwards;
}
@keyframes draw {
	0% {transform: rotate(0deg);opacity: 1;}
	99% {transform: rotate(180deg);opacity: 1;}
	100% {transform: rotate(180deg);opacity: 0;}
}


.styleTitle .titleHeader .season{
	position: absolute;
	bottom: 14px;
	right: -1.7em;
	font-family: "TTHovesProLight";
	font-size: 24px;
	line-height: 1;
	vertical-align: middle;
	letter-spacing: 0.03em;
	-webkit-transform:rotate(90deg) translateY(-50%);
	transform:rotate(90deg) translateY(-50%);
}
.styleTitle .titleHeader .season span{
	font-size: 0.667em;
	display: inline-block;
	padding: 0 0.1em;
	line-height: 1.4;
	vertical-align: top;
}
.styleTitle .titleHeader .season:after{
	content: '';
	position: absolute;
	bottom: -5px;
	left: -5px;
	right: -5px;
	height: 1px;
}
.c01 .styleTitle .titleHeader .season:after{background: #A2ADAF;}
.c02 .styleTitle .titleHeader .season:after{background: #B5B5B6;}

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

.styleTitle .styleName{
	width: 97%;
	margin: 80px auto 0;
	position: relative;
}

.styleTitle .styleName::before,
.styleTitle.delighter .styleName::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 1px;
	-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);
}
.styleTitle.delighter.started .styleName::before{width: 100%;}

.styleTitle .styleName::after,
.styleTitle.delighter .styleName::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	-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);
}
.styleTitle.delighter.started .styleName::after{width: 100%;}

.c01 .styleTitle .styleName::before,
.c01 .styleTitle .styleName::after{background: #A2A7B2;}
.c02 .styleTitle .styleName::before,
.c02 .styleTitle .styleName::after{background: #B5B5B6;}

.styleTitle .styleName h2{
	font-family: "JansonTextPro55Roman";
	font-size: 61px;
	line-height: 1;
	letter-spacing: 0.06em;
	padding: 0.4em 0 0.2em;
	opacity: 0;
}
.styleTitle .styleName h2 span{
	position:relative;
	left:0.5em;
	opacity: 0;
}
.styleTitle .styleName h2 span.fin{
	-webkit-transition: color 0.5s cubic-bezier(0.76, 0, 0.3, 1);
	transition: color 0.5s cubic-bezier(0.76, 0, 0.3, 1) ;
}

.c01 .styleTitle .styleName h2 span{color: #A3A9AF;}
.c01 .styleTitle .styleName h2 span.fin{color: #4F5D6B;}

.c02 .styleTitle .styleName h2 span{color: #AFAEAE;}
.c02 .styleTitle .styleName h2 span.fin{color: #6A6969;}


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

.styleTitle .titleText{
	width: 97%;
	margin: 40px auto 0;
	font-size: 15px;
	letter-spacing: 0.08em;
	line-height: 2.6;
}
.c01 .styleTitle .titleText{color: #4F6C6F;}
.c02 .styleTitle .titleText{color: #6A6969;}


.styleTitle .titleText p,
.styleTitle.delighter .titleText p{
	position: relative;
	top: 30px;
	opacity: 0;
	-webkit-transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.2s, opacity 12s 1.2s;
	transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.2s, opacity 1.2s 1.2s;
}
.styleTitle.delighter.started .titleText p{opacity: 1;top: 0;}

.styleTitle .titleText p span{font-family: "TTHovesProLight";}

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


.styleBody{
	width: 100%;
	overflow: hidden;
}

.styleBody .bodySet{width: 100%;position: relative;}


.styleBody .bodySet .setIn{position: relative;}
.styleBody .bodySet .setIn .image{position: relative;overflow: hidden;}


.styleBody .bodySet .setIn .image img,
.styleBody .bodySet .setIn.delighter .image img{
	opacity: 0;
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
	-webkit-transition: transform 2.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s;
	transition: transform 2.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s;
}
.styleBody .bodySet .setIn.delighter.started .image img{
	opacity: 1;
	-webkit-transform:scale(1.0);
	transform:scale(1.0);
}


.bodySet.la0101{margin-top: 90px;}
.bodySet.la0101 .in01{width: 42%;z-index: 1;margin-left:15.6%;}
.bodySet.la0101 .in02{width: 28.4%;z-index: 2;margin-left: 63.7%;margin-top: -34%;}
.bodySet.la0101 .in03{width: 22.7%;z-index: 3;margin-left: 0; margin-top: -21%;}
.bodySet.la0101 .in04{position: absolute;top: 15%;right: 8.2%;}
.bodySet.la0101 .in04 .itemList{}

.bodySet.la0102{margin-top: 4%;}
.bodySet.la0102 .in01{width: 39.5%;z-index: 1;margin-top:11%;left: 11.7%;float: left;}
.bodySet.la0102 .in02{width: 39.5%;z-index: 2;right: 11.7%; float: right;text-align: right;}
.bodySet.la0102 .in02 .itemList{display: inline-block;}

/*-----*/

.bodySet.la0201{margin-top: 90px;}
.bodySet.la0201 .in01{width: 39.8%;z-index: 1;margin-left: 48.4%;}
.bodySet.la0201 .in02{width: 31.8%;z-index: 2;margin-left: 7.8%;margin-top: -36%;}
.bodySet.la0201 .in03{width: 20.4%;z-index: 3;margin-left: 39.6%;margin-top: -23%;}
.bodySet.la0201 .in04{position: absolute;top: 7.5%;right: 57%;display: inline-block;}
.bodySet.la0201 .in04 .itemList{}

.bodySet.la0202{margin-top: 14%;}
.bodySet.la0202 .in01{width: 39.5%;z-index: 1;left: 11.7%;float: left;}
.bodySet.la0202 .in02{width: 39.5%;z-index: 2;right: 11.7%;margin-top:28%; float: right;text-align: right;}
.bodySet.la0202 .in02 .itemList{display: inline-block;}

/*-----*/

.bodySet.la0301{margin-top: 100px;}
.bodySet.la0301 .in01{width: 31.7%;z-index: 1;margin-left: 7.8%;}
.bodySet.la0301 .in02{width: 25.4%;z-index: 2;margin-left: 37.2%;margin-top: -23%;}
.bodySet.la0301 .in03{width: 22.7%;z-index: 3;position: absolute;bottom: 16%;right: 11%;}
.bodySet.la0301 .in04{position: absolute;top:0;right: 15%;}
.bodySet.la0301 .in04 .itemList{}


.bodySet.la0302{margin-top: 14%;}
.bodySet.la0302 .in01{width: 39.5%;z-index: 1;left: 11.7%;float: left;}
.bodySet.la0302 .in02{width: 39.5%;z-index: 2;right: 11.7%;margin-top:28%; float: right;text-align: right;}
.bodySet.la0302 .in02 .itemList{display: inline-block;}

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

.bodySet.me0101{margin-top: 90px;}
.bodySet.me0101 .in01{width: 42%;z-index: 1;margin-left:15.6%;}
.bodySet.me0101 .in02{width: 22.7%;z-index: 2;position: absolute;top: 0;right:15.6%;}
.bodySet.me0101 .in03{width: 25.5%;z-index: 3;margin-left: 66.5%;margin-top: -20%;}
.bodySet.me0101 .in04{width: 42%;margin-left:15.6%;margin-top: -16.5%;}
.bodySet.me0101 .in04 .itemList{}

/*-----*/

.bodySet.me0102{margin-top: 4.3%;}
.bodySet.me0102 .in01{width: 39.5%;z-index: 1;left: 11.7%;float: left;}
.bodySet.me0102 .in02{width: 39.5%;z-index: 2;right: 11.7%;margin-top:12.5%; float: right;text-align: right;}
.bodySet.me0102 .in02 .itemList{display: inline-block;}

/*-----*/

.bodySet.me0201{margin-top: 90px;}
.bodySet.me0201 .in01{width: 39.8%;z-index: 1;margin-left:12.5%;}
.bodySet.me0201 .in02{width: 22.7%;z-index: 3;margin-left: 0; margin-top: -22%;}
.bodySet.me0201 .in03{width: 25.4%;z-index: 2;position: absolute;bottom:7%;left: 65%;}
.bodySet.me0201 .in04{position: absolute;top: 14%;right: 9.7%;}
.bodySet.me0201 .in04 .itemList{}

/*-----*/

.bodySet.me0202{margin-top: 14%;}
.bodySet.me0202 .in01{width: 39.5%;z-index: 1;left: 11.7%;float: left;}
.bodySet.me0202 .in02{width: 39.5%;z-index: 2;right: 11.7%;margin-top:28%; float: right;text-align: right;}
.bodySet.me0202 .in02 .itemList{display: inline-block;}

/*-----*/

.bodySet.me0301{margin-top: 90px;}
.bodySet.me0301 .in01{width: 39.8%;z-index: 1;margin-left:12.5%;}
.bodySet.me0301 .in02{width: 22.7%;z-index: 2;margin-left: 46.5%;margin-top:-21.5%;}
.bodySet.me0301 .in03{width: 22.7%;z-index: 3;position: absolute;right:8.2%;top:30%;}
.bodySet.me0301 .in04{position: absolute;top: 5%;right: 15%;}
.bodySet.me0301 .in04 .itemList{}

/*-----*/

.bodySet.me0302{margin-top: 2.7%;}
.bodySet.me0302 .in01{width: 39.5%;z-index: 2;left: 11.7%;float: left;}
.bodySet.me0302 .in02{width: 39.5%;z-index: 1;right: 11.7%;margin-top:28%; float: right;text-align: right;}
.bodySet.me0302 .in02 .itemList{display: inline-block;}


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

.itemList{
	width: 330px;
	font-family: "TTHovesProLight";
	letter-spacing: 0.04em;
	font-size: 16px;
	line-height: 1;
	position: relative;
	text-align: left;
}

.itemList .listInner{
	width: 100%;
	border-left: 2px solid;
	padding: 0.2em 0;
}
.c01 .itemList .listInner{border-color: #4F5D6B;}
.c02 .itemList .listInner{border-color: #6A6969;}


.itemList dl{
	width: 100%;
	display: block;
	position: relative;
	text-align: left;
	padding:0.5em 0 0.5em 18px;
}
.itemList.narrow{margin-top: 30px;}
.itemList.narrow .listInner{padding: 0;}
.itemList.narrow dl{padding-top: 0.3em;padding-bottom: 0.3em;}



.itemList dl .name{
	line-height: 2em;
	width: calc(100% - 75px);
}

/*
.itemList dl:first-of-type .name{padding-top: 0.5em;}
.itemList dl:last-of-type .name{padding-bottom: 0.5em;}
.itemList .otherItem dl:first-of-type .name{padding-top: 1.2em;}
.itemList .otherItem dl:last-of-type .name{padding-bottom: 0.5em;}
*/

.itemList dl .name em{padding-right: 0.4em;}
.itemList dl .name span{
	font-size: 0.82em;
	letter-spacing: 0.03em;
	display: inline-block;
	line-height: 1.35;
}
.itemList dl dd{
	width: 70px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.itemList dl dd a{
	display: block;
	width: 100%;
	border: 1px solid;
	font-size: 14px;
	text-align: center;
	padding: 6px 0px;
	letter-spacing: 0.05em;
}
.c01 .itemList dl dd a{color: #4F5D6B;border-color: #4F5D6B;}
.c02 .itemList dl dd a{color: #6A6969;border-color: #6A6969;}

.itemList dl dd span{
	font-size: 14px;
	text-align: center;
	display: inline-block;
	line-height: 1;
	letter-spacing: 0;
}

@media(min-width: 769px) {
.c01 .itemList dl dd a:hover{background:#4F5D6B;color: #FFF;}
.c02 .itemList dl dd a:hover{background:#6A6969;color: #FFF;}
}


/*------*/
/*
.itemList .otherItem{display: none;}
.itemList .otherTrigger{
	margin-top:1.2em;
	margin-left: 15px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding-right: 40px;
}

.itemList .otherTrigger .text{
	padding:8px 10px 6px 0;
	width: 7.5em;
	opacity: 1;
	position: relative;
	letter-spacing: 0.05em;
	-webkit-transition: opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
	transition: opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.itemList .otherTrigger .text .more{
	opacity: 1;
	-webkit-transition: opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
	transition: opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.itemList .otherTrigger .text .close{
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	padding:8px 10px 6px 0;
	opacity: 0;
	-webkit-transition: opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
	transition: opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.itemList .otherTrigger.open .text .more{opacity: 0;}
.itemList .otherTrigger.open .text .close{opacity: 1;}

.itemList .otherTrigger span{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 28px;
	display: block;
	border: 1px solid;
}
.c01 .itemList .otherTrigger span{border-color:#0FAE6F;}
.c02 .itemList .otherTrigger span{border-color:#00798E;}


.itemList .otherTrigger span:after,
.itemList .otherTrigger span:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin:0 auto;
	width: 17px;
	height: 1px;
	background: #6A6969;
	-webkit-transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
	transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.c01 .itemList .otherTrigger span:after,
.c01 .itemList .otherTrigger span:before{background: #0FAE6F;}
.c02 .itemList .otherTrigger span:after,
.c02 .itemList .otherTrigger span:before{background: #00798E;}

.itemList .otherTrigger span:before{
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);
}
.itemList .otherTrigger.open span:before{
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}
.itemList .otherTrigger.open span:after{
	-webkit-transform:rotate(135deg);
	transform:rotate(135deg);
}
@media(min-width: 769px) {
.itemList .otherTrigger span{-webkit-transition: background 0.4s;transition: background 0.4s;}
.c01 .itemList .otherTrigger:hover span{background:#E1EEDD;}
.c02 .itemList .otherTrigger:hover span{background:#D3EBEB;}
}

*/

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





.allBanner{
	width: 85%;
	max-width: 1080px;
	margin: 200px auto 0;
	position: relative;
	color: #FFF;
}
.c01 .allBanner{background: #4F5D6B;}
.c02 .allBanner{background: #6A6969;}

.allBanner .spLink{display: none;}

.allBanner .photo{
	width: 60%;
	position: relative;
}
.allBanner .photo span{
	display: block;
	width: 100%;
	padding-top: 64.5%;
	background-position: center center;
	background-size: cover;
}
.c01 .allBanner .photo span{background-image: url("../../images/banner_c01.jpg");}
.c02 .allBanner .photo span{background-image: url("../../images/banner_c02.jpg");}
.allBanner .photo a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	z-index: 10;
}
.allBanner .bannerInner{
	position: absolute;
	width: 40%;
	top: 0;
	bottom: 0;
	right: 0;
}
.allBanner .detail{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.allBanner .detail h2{
	font-weight: 400;
	font-size: 25px;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 1em;
}
.allBanner .detail .more{
	width: 70%;
	margin: 0 auto;
}
.allBanner .detail .more a{
	display: block;
	border: 1px solid #FFF;
	color: #FFF;
	text-align: center;	
	font-family: "TTHovesProLight";
	font-size: 24px;	
	line-height: 1;
	letter-spacing: 0.08em;
	padding: 12px 0;
}
@media(min-width: 769px) {
.c01 .allBanner .detail .more a:hover{background:#FFF;color: #4F5D6B;}
.c02 .allBanner .detail .more a:hover{background:#FFF;color: #6A6969;}
}



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



.otherAreaTitle{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 35px 0 25px;
}
.otherAreaTitle::before,
.otherAreaTitle.delighter::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	opacity: 0;
	margin: 0 auto;
	width: 100%;
	height: 1px;
	background: #B5B5B6;
	-webkit-transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.0s;
	transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1),  opacity 1.0s;
}
.otherAreaTitle.delighter.started::before{top: 0;opacity: 1;}


.otherAreaTitle::after,
.otherAreaTitle.delighter::after{
	content: '';
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 1px;
	opacity: 0;
	background: #B5B5B6;
	-webkit-transition: bottom 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.0s;
	transition: bottom 1.2s cubic-bezier(0.25, 1, 0.5, 1),  opacity 1.0s;
}
.otherAreaTitle.delighter.started::after{bottom: 0;opacity: 1;}

.otherAreaTitle h2,
.otherAreaTitle.delighter h2{
	font-family: "JansonTextPro55Roman";
	font-size: 59px;
	color: #6A6969;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.02em;
	opacity: 0;
	-webkit-transition: opacity 1.0s 0.4s;
	transition: opacity 1.0s 0.4s;
}
.otherAreaTitle.delighter.started h2{opacity: 1;}

.otherAreaTitle h3,
.otherAreaTitle.delighter h3{
	font-weight: 400;
	color: #6A6969;
	font-size: 32px;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.1em;
	margin-top: 0.2em;
	opacity: 0;
	-webkit-transition: opacity 1.0s 0.4s;
	transition: opacity 1.0s 0.4s;
}
.otherAreaTitle.delighter.started h3{opacity: 1;}

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

.nextContents{
	width: 68%;
	max-width: 860px;
	margin: 200px auto 0;
}
.nextContents .copy{
	font-weight: 400;
	text-align: center;
	font-size: 27px;
	letter-spacing: 0.08em;
	line-height: 2.0;
	color: #6A6969;
	margin: 70px auto 60px;
}
.nextContents .copy span{font-family: "TTHovesProLight";}
.nextContents .copy br.res{display: none;}
.nextContents .banner{
	position: relative;
	width: 95%;
	margin: 0 auto;
	padding-top: 55%;
	background: url("../../images/nextbanner.jpg") center center no-repeat;
	background-size: cover;
}

.nextContents .banner .text{
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: 0;
}
.nextContents .banner .text p{
	display: block;
	text-align: center;
	line-height: 1;
	font-size: 30px;
	letter-spacing: 0.06em;
	font-family: "TTHovesProLight";
	background: rgba(176,175,126,0.6);
}
.nextContents .banner .text p a{
	color: #FFF;
	display: block;
	padding: 1.5em 0 1.5em;
}


@media(min-width: 769px) {
.nextContents .banner .text a:hover{background: rgba(255,255,255,0.7);color: #B0AF7E;}
}


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

.onlineStore{
	width: 78%;
	max-width: 1000px;
	margin: 200px auto 0;
}
.onlineStore .otherAreaTitle{width: 86%;}

.onlineStore .onlineList{margin-top: 100px;}

.onlineStore .onlineList .top{width: 45%;margin: 0 auto;}
.onlineStore .onlineList .bottom{width: 50%;margin: 0 auto;}

.onlineStore .onlineList .mid{width: 100%;margin: 8% 0;}
.onlineStore .onlineList .mid ul{width: 100%;display: flex;}
.onlineStore .onlineList .mid ul li{width: 23%;margin-right: 2%;}
.onlineStore .onlineList .mid ul li:last-child{margin-right: 0;}

.onlineStore .onlineList a{display: block; background: #7D7C7C;}
@media(min-width:769px) {
.onlineStore .onlineList a:hover{background: #A2A6AE;}
}


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

.snsIcon{
	width: 100%;
	margin-top: 180px;
	text-align: center;
}

.snsIcon h3{
	 font-family: "TTHovesProExpandedMedium";
	font-size: 22px;
	letter-spacing: 0.05em;
	line-height: 1;
	padding-bottom: 0.3em;
	display: inline-block;
	color: #6A6969;
	border-bottom: 1px solid #B5B5B6;
}
.snsIcon .instagram{
	width: 40px;
	margin: 30px auto 0;
}

@media(min-width:769px) {
.snsIcon a:hover{opacity: 0.6;}
}


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




.footer{
	width: 100%;
	margin-top: 180px;
	padding: 27% 0 60px;
	position: relative;
	overflow: hidden;
	background: url("../../images/footer_pc.jpg") center center;
	background-size: cover;
}
.footer h2{
	width: 325px;
	margin: 0 auto;
}
.footer .copyright{
	font-family: "TTHovesProLight";
	letter-spacing: 0.1em;
	font-size: 18px;
	margin: 45px auto 0;
	text-align: center;
	color: #FFF;
}

.footer .pagetop{
	position: absolute;
	display: block;
	cursor: pointer;
	width: 55px;
	right: 1.2%;
	top: 150px;
}





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


.sideNavi{
    position: fixed;
    top: 50%;
    right:-7.1%;
    max-width: 95px;
    z-index: 100;
	width: 7%;
    -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:0;}
.sideNavi ul{width:100%;margin: 0 auto;}
.sideNavi ul li{width: 100%;margin-bottom: 25px;}
.sideNavi ul li a{display: block;}

.sideNavi .title{
	width: 100%;
	line-height: 1;
	font-family: "TTHovesProExpandedMedium";
	font-size: 13px;
	letter-spacing: 0.05em;
	position: relative;
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding: 6px 0 3px;
}

.sideNavi .n01 .title{border-color: #4F5D6B;color: #4F5D6B;}
.sideNavi .n02 .title{border-color: #6A6969;color: #6A6969;}

.sideNavi .image{
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 8px auto 0;
}
.sideNavi .image span{
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index: 5;
	opacity: 0.5;
	display: block;
	background: #CCC;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.sideNavi ul li a:hover .image span{opacity:0;}
 /*
.sideNavi ul li.current .image span{opacity:0;}
 */



.sideNavi .sub{
	font-family: "TTHovesProLight";
	line-height: 1;
	font-size: 17px;
}
.sideNavi .sub:first-of-type{margin-top: 6px;}
.sideNavi .sub a{padding: 3px 0;}
.sideNavi .n01 .sub a{color: #4F5D6B;}
.sideNavi .n02 .sub a{color: #6A6969;}
.sideNavi .sub em{
	font-size: 11px;
	padding-right: 3px;
	display: inline-block;
	vertical-align: top;
	margin-top: 4px;

}
.sideNavi .sub span{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 4px;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;
}
.sideNavi .n01 .sub span{background: #4F5D6B;}
.sideNavi .n02 .sub span{background: #6A6969;}


.sideNavi .n01 .sub a:hover{color: #728059;}
.sideNavi .n02 .sub a:hover{color: #8E755A;}
.sideNavi .n01 .sub a:hover span{background: #A3A9AF;}
.sideNavi .n02 .sub a:hover span{background: #AFAEAE;}

.sideNavi .sub.current a{color: #413D3C;}
.sideNavi .sub.current a span{background: #413D3C;}


.sideNavi .pagetop{
    width: 75%;
    margin: 0 auto;
    cursor: pointer;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi .pagetop:hover{opacity:0.5;}


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


#trigger{display: none;}
.spNavi{display: none;}


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





