@charset "UTF-8";



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

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





@font-face {
  font-family: "BigMooreRegular";
  src: url('../../font/BigMooreRegular/font.woff2') format('woff2'), url('../../font/BigMooreRegular/font.woff') format('woff');
}
@font-face {
  font-family: "BigMooreItalic";
  src: url('../../font/BigMooreItalic/font.woff2') format('woff2'), url('../../font/BigMooreItalic/font.woff') format('woff');
}
@font-face {
  font-family: "ColumnaEFSolid";
  src: url('../../font/ColumnaEFSolid/font.woff2') format('woff2'), url('../../font/ColumnaEFSolid/font.woff') format('woff');
}
@font-face {
  font-family: "TTCommonsClassicRegular";
  src: url('../../font/TTCommonsClassicRegular/font.woff2') format('woff2'), url('../../font/TTCommonsClassicRegular/font.woff') format('woff');
}
@font-face {
  font-family: "TimesProRoman";
  src: url('../../font/TimesProRoman/font.woff2') format('woff2'), url('../../font/TimesProRoman/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,
dl:after{
	  content: "";
	  display: table;
	  float:none;
	  clear: both;
}


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

body{
    background:#FFF;
    width: 100%;
    height: 100%;
    line-height: 1;
    -webkit-text-size-adjust: 100%;	
	font-family: 'Shippori Mincho B1','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	color: #6A6969;
	font-weight: 500;
}


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



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


#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.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s;
	transition: top 1.5s 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%;
	background: #FFF;
	position: relative;
}

#header .titleSet{
	width: 35.7%;
	position: absolute;
	top: 6vw;
	right: 0;
	z-index: 20;
	color: #FFF;
}

#header .titleSet h1{
	font-family: "BigMooreRegular";
	font-size: 4.2vw;
	letter-spacing: 0.07em;
}
#header .titleSet h2{
	font-family: "ColumnaEFSolid";
	font-size: 1.5vw;
	letter-spacing: 0.05em;
	padding: 0.7em 0 1.1em;
}

#header .titleSet .inner{
	position: relative;
	opacity: 0;
	left: -6vw;
	-webkit-transition: left 1.6s cubic-bezier(0.76, 0, 0.24, 11), opacity 1.6s;
	transition: left 1.6s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.6s;
}
#header.start .titleSet .inner{opacity: 1;left: 0;}

#header .titleSet .bar{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 2px;
	background: linear-gradient(90deg, #474D66 40%, #C4DBDB 40%, #C4DBDB 80%, #898989 80%);
	-webkit-transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 11);
	transition: width 1.6s cubic-bezier(0.76, 0, 0.24, 1);
}

#header.start .titleSet .bar{width: 100%;}


#header .vegas{
    width: 100%;
    height: 100%;
    position: relative;
	z-index: 10;
}
#header .vegas .vegasImage{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width:100%;
    z-index: 10;
}

#header .logo{
	position: absolute;
	width: 14%;
	z-index: 20;
	top: 2.6vw;
	left: 2.6vw;
}


.scrollbar{
    width: 25px;
    position: absolute;
    left:3%;
    bottom: -65px;
    height:130px;
    z-index: 300;
}
.scrollbar p{
    width: 15px;
	margin-top: 5px;
}
.scrollbar .base{
	width:1px;
	height:130px;
	position: absolute;
	bottom:0px;
	right: 0;
	overflow: hidden;
    z-index: 5;
    background:#BDC8DC;
}
.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(225, 222, 219, 1) 50%,
			rgba(225,222, 219, 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: 100%;
	position: relative;
	padding: 80px 0 80px;
}

.lead .leadHeader{
	width: 100%;
	margin: 0 auto;
	padding: 16px 0;
	position: relative;
}
.lead .leadHeader::before,
.lead.delighter .leadHeader::before{
	content: '';
	position: absolute;
	top: -12px;
	left: 11%;
	right: 100%;
	height: 12px;
	background: linear-gradient(90deg, #37475B 15%, #898989 15%, #898989 57%, #D4D9DA 57%);
	-webkit-transition: right 2.0s cubic-bezier(.76, 0, 0.24, 1);
	transition: right 2.0s cubic-bezier(0.76, 0, 0.24, 1);
}
.lead.delighter.started .leadHeader::before{right: 6.2%;}

.lead .leadHeader::after,
.lead.delighter .leadHeader::after{
	content: '';
	position: absolute;
	bottom: -12px;
	left: 100%;
	right: 0%;
	height: 12px;
	background: linear-gradient(90deg, #BDC8DC 43%, #37475B 43%, #37475B 80%, #4F5243 80%);
	-webkit-transition: left 2.0s cubic-bezier(0.76, 0, 0.24, 11);
	transition: left 2.0s cubic-bezier(0.76, 0, 0.24, 1);
}
.lead.delighter.started .leadHeader::after{left: 12.5%;}




.lead .leadHeader .leadTitle{
	width: 100%;
	position: relative;
	padding: 28px 0;
	overflow: hidden;
}
.lead .leadHeader .leadTitle::before,
.lead.delighter .leadHeader .leadTitle::before{
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	right: 6.2%;
	height: 2px;
	background: #E1DEDB;
	-webkit-transition: left 2.0s cubic-bezier(0.33, 1, 0.68, 1);
	transition: left 2.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.lead.delighter.started .leadHeader .leadTitle::before{left: 4.7%;}

.lead .leadHeader .leadTitle::after,
.lead.delighter .leadHeader .leadTitle::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 19.8%;
	right: 100%;
	height: 2px;
	background: #E1DEDB;
	-webkit-transition: right 2.0s cubic-bezier(0.33, 1, 0.68, 1);
	transition: right 2.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.lead.delighter.started .leadHeader .leadTitle::after{right: 7.8%;}


.lead .leadHeader .leadTitle .titleInner,
.lead.delighter .leadHeader .leadTitle .titleInner{
	width: 100%;
	padding-left: 19.8%;
	position: relative;
	opacity: 0;
	left: 40px;
	-webkit-transition: left 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1.0s, opacity 1.5s 1.0s;
	transition: left 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1.0s, opacity 1.5s 1.0s;
}
.lead.delighter.started .leadHeader .leadTitle .titleInner{left: 0;opacity: 1;}


.lead .leadHeader .leadTitle .titleInner .logo{width: 290px;}

.lead .leadHeader .leadTitle .titleInner h2{
	font-family: "BigMooreRegular";
	font-size: 55px;
	letter-spacing: 0.07em;
	line-height: 0.9;
	padding: 0.45em 0 0.5em;
}
.lead .leadHeader .leadTitle .titleInner h3{
	font-family: "ColumnaEFSolid";
	font-size: 20px;
	letter-spacing: 0.05em;
}

.lead .leadBody{
	width: 65%;
	margin: 90px 0 0 19.8%;
}
.lead .leadBody .text,
.lead.delighter .leadBody .text{
	font-size: 16px;
	line-height: 2.2;
	letter-spacing: 0.06em;
	text-align: justify;
	text-justify: inter-ideograph;
	position: relative;
	top: 30px;
	opacity: 0;
	-webkit-transition: top 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, opacity 1.5s 1.5s;
	transition: top 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, opacity 1.5s 1.5s;
}

.lead.delighter.started .leadBody .text{top: 0;opacity: 1;}

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



.mainNav{
	width: 70%;
	max-width: 860px;
	margin: 0px auto 0;
	position: relative;
}
.mainNav ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.mainNav ul li{
	width: 42%;
	position: relative;
	text-align: center;
}

.mainNav .num{
	font-family: "TimesNewRomanProItalic";
	font-size: 15px;
	letter-spacing: 0.05em;
}
.mainNav .num em{
	font-size: 1.45em;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.1em;
}

.mainNav h2{
	font-family: "BigMooreRegular";
	font-size: 36px;
	letter-spacing: 0.1em;
	line-height: 1.1;
	padding: 0.5em 0;
}

.mainNav .image{
	border: 1px solid #34404B;
}

.mainNav .seeMore{
	margin-top: 30px;
	position: relative;
	padding-bottom: 13px;
	display: inline-block;
}

.mainNav .seeMore::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: -40px;
	right: -40px;
	height: 1px;
	background: #E1DEDB;
}
.mainNav .seeMore::after{
	content: '';
	position: absolute;
	bottom: -7px;
	left: -40px;
	right: -40px;
	height: 1px;
	background: #E1DEDB;
}



.mainNav .seeMore a{
	font-family: "TTCommonsClassicRegular";
	font-size: 20px;
	letter-spacing: 0.08em;
	font-weight:normal;
	color: #FFF;
	background: #394252;
	border: 1px solid #394252;
	display: inline-block;
	padding: 0.72em 2.5em;
}

@media(min-width:769px) {
.mainNav .image a:hover{opacity: 0.7;}
.mainNav .seeMore a:hover{background: #FFF;color: #394252;}
}



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







.wrapper{width: 100%;}


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



.category#c01{width: 100%;margin-top: 160px;}
.category#c02{width: 100%;margin-top: 200px;}


.categoryHeader{
	width: 100%;
	position: relative;
	display: flex;
}

.categoryHeader .categoryTitle{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.categoryHeader .categoryTitle::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 10%;
	z-index: 20;
	border-right: 2px solid;
}
#c01 .categoryHeader .categoryTitle::before{
	background: linear-gradient(180deg, #969FAA 20%, #C3C4C4 20%, #C3C4C4 60.3%, #BDC8DC 60.3%);
	border-color: #34404B;
}
#c02 .categoryHeader .categoryTitle::before{
	background: linear-gradient(180deg, #C9BB9D 20%, #D6D2CB 20%, #D6D2CB 60.3%, #6F6A6C 60.3%);
	border-color: #1A1A1A;
}


.categoryHeader .categoryTitle .titleInner{
	width: 90%;
	margin-left: 10%;
	display: flex;
}
.categoryHeader .categoryTitle .titleInner .subImage{
	width: 67%;
	padding-top: 25%;
	position: relative;
}
.categoryHeader .categoryTitle .titleInner .subImage span{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	display: block;
	background-position: center center;
	background-size: cover;
}
#c01 .categoryHeader .categoryTitle .titleInner .subImage span{background-image: url("../../images/c01title_sub.jpg");}
#c02 .categoryHeader .categoryTitle .titleInner .subImage span{background-image: url("../../images/c02title_sub.jpg");}



.categoryHeader .categoryTitle .titleInner .copyBox{
	width: 33%;
	position: relative;
	color: #FFF;
}
#c01 .categoryHeader .categoryTitle .titleInner .copyBox{
	background: linear-gradient(180deg, #394252 33.3%, #6F6A6C 33.3%, #6F6A6C 66.6%, #969FAA 66.6%);
}
#c02 .categoryHeader .categoryTitle .titleInner .copyBox{
	background: linear-gradient(180deg, #6A6969 33.3%, #4F5243 33.3%, #4F5243 66.6%, #A1999A 66.6%);
}


.categoryHeader .categoryTitle .titleInner .copyBox h2{
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 3.0vw;
	letter-spacing: 0.23em;
	line-height: 1.5;
	white-space: nowrap;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}

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


.categoryHeader .categoryTitle .topicTltle{
	width: 90%;
	margin-left: 10%;
	position: relative;
	border-top: 2px solid;
}
#c01 .categoryHeader .categoryTitle .topicTltle{background: #C3C4C4;color: #34404B;border-color: #34404B;}
#c02 .categoryHeader .categoryTitle .topicTltle{background: #D6D2CB;color: #4B4642;border-color: #1A1A1A;}

.categoryHeader .categoryTitle .topicTltle .topicInner{
	position: absolute;
	top: 50%;
	left: 16%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}

.categoryHeader .categoryTitle .topicTltle .num{
	font-family: "TimesNewRomanProItalic";
	font-size: 1.8vw;
	letter-spacing: 0.05em;
	margin-bottom: 0.5em;
}
.categoryHeader .categoryTitle .topicTltle .num em{
	font-size: 1.45em;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.1em;
}
.categoryHeader .categoryTitle .topicTltle h3{
	font-family: "BigMooreRegular";
	font-size: 5.3vw;
	letter-spacing: 0.1em;
}
.categoryHeader .categoryTitle .topicTltle h4{
	font-family: "ColumnaEFSolid";
	font-size: 1.35vw;
	letter-spacing: 0.05em;
	margin-top: 1.5em;
}

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

.categoryHeader .mainImage{width: 50%;position: relative;}
.categoryHeader .mainImage span{
	width: 100.1%;
	display: block;
	padding-top: 109%;
	margin-left: -0.1%;
	background-position: center center;
	background-size: cover;
}


#c01 .categoryHeader .mainImage span{background-image: url("../../images/c01title_main.jpg");}
#c02 .categoryHeader .mainImage span{background-image: url("../../images/c02title_main.jpg");}


.categoryHeader::before,
.categoryHeader::after{
	content: '';
	position: absolute;
	z-index: 100;
	width: 0%;
	height: 2px;
	-webkit-transition:  width 1.7s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.7s cubic-bezier(0.76, 0, 0.24, 1);
}
#c01 .categoryHeader::before,
#c01 .categoryHeader::after{background: #34404B;}
#c02 .categoryHeader::before,
#c02 .categoryHeader::after{background: #1A1A1A;}


.categoryHeader::before,
.categoryHeader.delighter::before{top: 0;left: 0;}
.categoryHeader::after,
.categoryHeader.delighter::after{bottom: 0;right: 0;}
.categoryHeader.delighter.started::before,
.categoryHeader.delighter.started::after{width: 100%;}


.categoryHeader .mainImage::after,
.categoryHeader .categoryTitle .titleInner .subImage::after,
.categoryHeader .categoryTitle .titleInner .copyBox::after,
.categoryHeader .categoryTitle .topicTltle::after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	z-index: 50;
	background: #FFF;
	-webkit-transition:  all 1.4s cubic-bezier(0.76, 0, 0.24, 1);
	transition: all 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.categoryHeader .categoryTitle::after,
.categoryHeader.delighter .categoryTitle::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 10%;
	z-index: 30;
	background: #FFF;
	-webkit-transition:  bottom 1.4s cubic-bezier(0.76, 0, 0.24, 1);
	transition: bottom 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.categoryHeader .mainImage::after,
.categoryHeader.delighter .mainImage::after{top: 0;bottom: 0;right: 0;}
.categoryHeader.delighter.started .mainImage::after{width: 0;}

.categoryHeader .categoryTitle .titleInner .subImage::after,
.categoryHeader.delighter .categoryTitle .titleInner .subImage::after{top: 0;bottom: 0;left: 0;}
.categoryHeader.delighter.started .categoryTitle .titleInner .subImage::after{width: 0;}

.categoryHeader .categoryTitle .titleInner .copyBox::after,
.categoryHeader.delighter .categoryTitle .titleInner .copyBox::after{top: 0;bottom: 0;left: 0;right: 0;}
.categoryHeader.delighter.started .categoryTitle .titleInner .copyBox::after{top: 100%;}

.categoryHeader .categoryTitle .topicTltle::after,
.categoryHeader.delighter .categoryTitle .topicTltle::after{top: -2px;bottom: 0;right: 0;}
.categoryHeader.delighter.started .categoryTitle .topicTltle::after{width: 0;}

.categoryHeader.delighter.started .categoryTitle::after{bottom: 100%;}




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



.feature{
	width: 100%;
	margin: 130px auto 0;
	padding-top: 50px;
}
#c01 .feature{color:#34404B;}
#c02 .feature{color:#4B4642;}


.featureTitle{
	width: 75%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
	padding-top: 120px;
}
/*
.featureTitle .numicon,
.featureTitle.delighter .numicon{
	width: 140px;
	opacity: 0;
	position: relative;
	-webkit-transform:rotate(-60deg);
	transform:rotate(-60deg);
	-webkit-transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s;
	transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s;
}
.featureTitle.delighter.started .numicon{
	opacity: 1;
	-webkit-transform:rotate(0deg);
	transform:rotate(0deg);
}
*/
.featureTitle .titleIn{
	padding-bottom: 20px;
	position: relative;
}
.featureTitle .titleIn h2,
.featureTitle.delighter .titleIn h2{
	font-family: "BigMooreRegular";
	font-size: 55px;
	letter-spacing: 0.08em;
	position: relative;
	opacity: 0;
	left: 2vw;
	padding-bottom: 0.2em;
	-webkit-transition: left 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
	transition: left 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
}
.featureTitle.delighter.started .titleIn h2{left: 0;opacity: 1;}

.featureTitle.delighter.started .titleIn h2 br{display: none;}

.featureTitle .titleIn h2::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 590px;
	height: 3px;
}
#c01 .featureTitle .titleIn h2::after{background: #C3C4C4;}
#c02 .featureTitle .titleIn h2::after{background: #4F5243;}

.featureTitle .titleIn .line{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 590px;
	height: 6px;
}
#c01 .featureTitle .titleIn .line{background:#394252;}
#c02 .featureTitle .titleIn .line{background:#A1999A;}


.featureTitle .titleIn .line::after,
.featureTitle.delighter .titleIn .line::after{
	content: '';
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
	z-index: 50;
	background: #FFF;
	-webkit-transition: left 1.2s cubic-bezier(0.33, 1, 0.68, 1);
	transition: left 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.featureTitle.delighter.started .titleIn .line::after{
	left: 100%;
}


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

.featureTitle .shoulder,
.featureTitle.delighter .shoulder{
	position: absolute;
	top: 0;
	right: 3%;
	opacity: 0;
	-webkit-transition: right 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
	transition: right 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
	/*background: rgba(0,0,0,0.1);*/
}
.featureTitle.delighter.started .shoulder{right: -5%;opacity: 1;}

.featureTitle .shoulder h4{
	font-family: "BigMooreRegular";
	font-size: 20px;
	letter-spacing: 0.09em;
}
.featureTitle .shoulder::before{
	content: '';
	position: absolute;
	top: 0.6em;
	right: calc(100% + 30px);
	width: 180px;
	height: 1px;
}
#c01 .featureTitle .shoulder::before{background:#394252;}
#c02 .featureTitle .shoulder::before{background:#4F5243;}



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

.featureTitle .leadCopy,
.featureTitle.delighter .leadCopy{
	width: 79%;
	margin-top: 65px;
	position: relative;
	opacity: 0;
	top: 30px;
	/*background: rgba(0,0,0,0.1);*/
	-webkit-transition: top 1.0s cubic-bezier(0.33, 1, 0.68, 1) 1.0s, opacity 1.0s 1.0s;
	transition: top 1.0s cubic-bezier(0.33, 1, 0.68, 1) 1.0s, opacity 1.0s 1.0s;
}
.featureTitle.delighter.started .leadCopy{opacity: 1;top: 0;}


.featureTitle .leadCopy h3{
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.08em;
}
.featureTitle .leadCopy h3 br.res{display: none;}

.featureTitle .leadCopy p{
	font-size: 16px;
	line-height: 2.3;
	margin-top: 1.4em;
	letter-spacing: 0.02em;
	text-align: justify;
	text-justify: inter-ideograph;
}


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


.itemMain{
	width: 75%;
	max-width: 960px;
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.itemMain.c0101{margin-top: 80px;}
.itemMain.c0102{margin-top: 180px;}
.itemMain.c0201{margin-top: 80px;}
.itemMain.c0202{margin-top: 140px;}
.itemMain.c0203{margin-top: 90px;}
.itemMain.c0204{margin-top: 90px;}

.itemMain.rev{flex-direction: row-reverse;}

.itemMain .visualBox{
	width: 53%;
	position: relative;
	z-index: 10;
}
.itemMain .visualBox .nameNum{
	width: 100%;
	position: relative;
}
.itemMain.rev .visualBox .nameNum{text-align: right;}

.itemMain .visualBox .nameNum .num{
	font-family: "TimesProRoman";
	font-size: 23px;
	color: #FFF;
	line-height: 1em;
	letter-spacing: 0.07em;
	display: inline-block;
	padding: 0.5em 0.3em 0.2em;
}
#c01 .itemMain .visualBox .nameNum .num{background: #34404B;}
#c02 .itemMain .visualBox .nameNum .num{background: #4B4642;}

.itemMain .visualBox .nameNum h3{
	font-family: "ColumnaEFSolid";
	font-size: 26px;
	line-height: 40px;
	letter-spacing: 0.05em;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}


.itemMain .visualBox a{display: block;overflow: hidden;z-index: 5;position: relative;}

@media(min-width:769px) {
.itemMain .visualBox a{display: block;overflow: hidden;}
.itemMain .visualBox a img{-webkit-transition: all 0.5s;transition: all 0.5s;}
.itemMain .visualBox a:hover img{-webkit-transform:scale(1.05,1.05);transform:scale(1.05,1.05);}
}

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

.itemMain .itemBox{
	width:39%;
	margin-top: 39px;
	position:relative;
}
.itemMain.c0201 .itemBox{margin-top: 0;}
.itemMain.rev .itemBox{margin-left: 0;background: #FFF;}



.itemMain .itemBox .itemSlide{
	width: 95%;
	margin: 0 auto;
	position: relative;
	border: 1px solid #1D3F37;
}
.itemMain.c0201 .itemBox .itemSlide{width: 100%;border: none;}


.itemMain .itemBox .colorTip{
	width: 100%;
	text-align: center;
	position: relative;
}
/*----*/

.itemMain .itemBox .text{
	width: 100%;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.85;
	text-align: justify;
	text-justify: inter-ideograph;
	margin: 50px auto 30px;
}

.itemMain.c0201 .itemBox .text{margin-top: 35px;}
.itemMain.c0202 .itemBox .text{margin-top: 75px;}







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


.imageSet{
	width: 75%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}
.imageSet.c0101{margin-top: 50px;}
.imageSet.c0102{margin-top: 70px;}
.imageSet.c0201{margin-top: 80px;}
.imageSet.c0202{margin-top: 90px;}
.imageSet.c0203{margin-top: 90px;}

.imageSet ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.imageSet ul li{width: 30%;}


.imageSet.c0201 .img{width: 57%;margin-left: 43%;}
.imageSet.c0202 .img{width: 57%;margin-left: 5%;}
.imageSet.c0203 .img{width: 57%;margin-left: 38%;}


.imageSet.c0201 .button{
	width: 100%;
	text-align: right;
	margin-top: 38px;
}
.imageSet.c0202 .button{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.imageSet.c0203 .button{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
}


.imageSet .button a{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	color: #FFF;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: 0.03em;
	text-align: center;
	background: #4F5243;
	border: 1px solid #4F5243;
	padding: 0.3em 1.3em;
	display: inline-block;
}
.imageSet.c0201 .button a{padding: 0.4em 1.8em;}




@media(min-width: 769px) {
.imageSet .button a:hover{background: #FFF;color: #4F5243;}
}



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


.coordinate{
	width: 85%;
	max-width: 1080px;
	margin:210px auto 0;
	position: relative;
}

.coordinate .coordiHeader{width: 100%;}

.coordinate .coordiHeader .coordiTitle{width: 100%;position: relative;}
.coordinate .coordiHeader .coordiTitle h2,
.coordinate .coordiHeader.delighter .coordiTitle h2{
	font-family: "BigMooreItalic";
	font-size: 58px;
	line-height: 1;
	letter-spacing: 0.08em;
	position: relative;
	opacity: 0;
	left: 2vw;
	padding-left: 11%;
	padding-bottom: 0.55em;
	-webkit-transition: left 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
	transition: left 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
}
.coordinate .coordiHeader.delighter.started .coordiTitle h2{opacity: 1;left: 0;}

.coordinate .coordiHeader .coordiTitle::before,
.coordinate .coordiHeader.delighter .coordiTitle::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	-webkit-transition: width 1.2s cubic-bezier(0.33, 1, 0.68, 1);
	transition: width 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.coordinate .coordiHeader.delighter.started .coordiTitle::before{width: 100%;}

#c01 .coordinate .coordiHeader .coordiTitle::before{background: #1D3F37;}
#c02 .coordinate .coordiHeader .coordiTitle::before{background: #A1999A;}


.coordinate .coordiHeader .coordiTitle::after,
.coordinate .coordiHeader.delighter .coordiTitle::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 15%;
	width: 0%;
	height: 11px;
	-webkit-transition: width 1.2s cubic-bezier(0.33, 1, 0.68, 1);
	transition: width 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.coordinate .coordiHeader.delighter.started .coordiTitle::after{width: 50%;}

#c01 .coordinate .coordiHeader .coordiTitle::after{background: #394252;}
#c02 .coordinate .coordiHeader .coordiTitle::after{background: #4F5243;}



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


.coordinate .coordiItem{
	width: 82%;
	max-width: 860px;
	position: relative;
	margin:80px auto 0;
	display: flex;
	justify-content: space-between;
}
.coordinate .coordiItem.rev{flex-direction: row-reverse;}
.coordinate .coordiItem.farst{margin-top: 130px;}


.coordinate .coordiItem .visualBox{
	width: 43%;
	position: relative;
	z-index: 10;
}
.coordinate .coordiItem.rev .visualBox{text-align: right;}

.coordinate .coordiItem .visualBox .num{
	font-family: "TimesProRoman";
	color: #FFF;
	font-size: 22px;
	line-height: 1em;
	letter-spacing: 0.07em;
	display: inline-block;
	padding: 0.5em 0.3em 0.2em;
}

#c01 .coordinate .coordiItem .visualBox .num{background: #34404B;}
#c02 .coordinate .coordiItem .visualBox .num{background: #FF0000;}

/*-------*/

.coordinate .coordiItem .itemDetail{
	width: 50%;
	position: relative;
	z-index: 20;
}

.coordinate .coordiItem .itemDetail .styleTitle{
	position: absolute;
	 top: 90px;
	 left: 8%;
}
.coordinate .coordiItem .itemDetail .styleTitle br{display: none;}


.coordinate .coordiItem .itemDetail .styleTitle h3{
	white-space: nowrap;
	font-family: "BigMooreRegular";
	font-size: 33px;
	letter-spacing: 0.08em;
	line-height: 1;
}
.coordinate .coordiItem .itemDetail .styleTitle h4{
	font-size: 16px;
	letter-spacing: 0.08em;
	margin-top: 1.7em;
}

.coordinate .coordiItem .itemDetail .itemList{
	 width: 82%;
}
.coordinate .coordiItem.c01coordi01 .itemDetail .itemList{margin-top: calc(138% - 193px);}
.coordinate .coordiItem.c01coordi02 .itemDetail .itemList{margin-top: calc(138% - 233px);}
.coordinate .coordiItem.c01coordi03 .itemDetail .itemList{margin-top: calc(138% - 233px);}



/*-------------------------------------------------------v-*/

.itemList{
	width: 100%;
	margin: 0px auto;
	font-family: "TTCommonsClassicRegular";
	font-weight: normal;
	/*background: rgba(14,125,32,0.1);*/
}
.itemList dl{
	width: 100%;
	font-size: 0;
	position: relative;
	text-align: left;
	margin-top: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.itemList dl:not(.other):nth-child(1){margin-top: 0;}

.itemList .name{
	width: calc( 100% - 86px);
	letter-spacing: 0.08em;
	font-size: 16px;
}
.itemList .name span{
	font-size: 0.8em;
	letter-spacing: 0.03em;
	padding-left: 0.2em;
	display: inline-block;
	padding-bottom: 0.1em;
	vertical-align: middle;
}
/*
.itemList .num{
	width: calc( 100% - 88px );
	letter-spacing: 0.08em;
	font-size: 12px;
	margin-top: 0.3em;
}
*/
.itemList .detail{
	width: 86px;
}
.itemList .detail a{
	display: block;
	width: 100%;
	background: #34404B;
	border: 1px solid #34404B;
	color: #FFF;
	font-size: 17px;
	text-align: center;
	padding: 5px 0px 4px;
	letter-spacing: 0.05em;
}
#c01 .itemList .detail a{background: #34404B;border-color: #34404B;}
#c02 .itemList .detail a{background: #4B4642;border-color: #4B4642;}




@media(min-width: 769px) {
#c01 .itemList .detail a:hover{background: #FFF;color: #34404B;}
#c02 .itemList .detail a:hover{background: #FFF;color: #4B4642;}
}

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


.itemList .otherItem{display: none;}


.itemList .otherTrigger{
	margin-top:15px;
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.itemList .otherTrigger p.more{
	font-size: 16px;
	line-height: 1;
	margin-left: 50px;
	padding:8px 10px 6px 0;
	opacity: 1;
	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.open p.more{opacity: 0;}
.itemList .otherTrigger p.close{
	position: absolute;
	top: 0;
	left: 50px;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.05em;
	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 p.close{opacity: 1;}

.itemList .otherTrigger span{
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 30px;
	display: block;
	border: 1px solid;
}
#c01 .itemList .otherTrigger span{border-color:#1E0E07;}
#c02 .itemList .otherTrigger span{border-color:#4B4642;}


.itemList .otherTrigger span:after,
.itemList .otherTrigger span:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin:0 auto;
	width: 15px;
	height: 1px;
	-webkit-transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1),background 0.4s;
	transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1),background 0.4s;
}

#c01 .itemList .otherTrigger span:after,
#c01 .itemList .otherTrigger span:before{background:#1E0E07;}
#c02 .itemList .otherTrigger span:after,
#c02 .itemList .otherTrigger span:before{background:#4B4642;}


.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{-webkit-transition: color 0.4s;transition: color 0.4s;}
.itemList .otherTrigger span{-webkit-transition: border-color 0.4s;transition: border-color 0.4s;}
/*
.itemList .otherTrigger:hover{color:#A99467;}
.itemList .otherTrigger:hover span{border-color: #A99467;}
.itemList .otherTrigger:hover span:after,
.itemList .otherTrigger:hover span:before{background: #A99467;}
*/
}




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



/* slick-dots */
.slick-dots{
    display:block;
    list-style:outside none none;
    padding:0;
    text-align:center;
    width:100%;
	position:absolute;
	bottom:-35px;
	z-index:10;
	font-size: 0;
}
.slick-dots li{
	cursor: pointer;
	display: inline-block;
    margin: 0 7px;
	width:28px;
    padding: 0;
    position: relative;
	vertical-align: top;
}

.itemMain .slick-dots li{width: 36px; margin: 0 10px;}


.itemMain.c0202 .slick-dots{padding: 0 12%;bottom:-72px;}
.itemMain.c0202 .slick-dots li{margin-bottom: 12px;}



.slick-dots li:first-of-type{margin-left: 0;}
.slick-dots li:last-of-type{margin-right: 0;}
.slick-dots li button{
    cursor:pointer;
    display:block;
    font-size:0;
	width:100%;
	padding-top: 14px;
    line-height: 0;
    outline:medium none;
    position: relative;
	background: #A9FF00;;
}
.slick-dots li.slick-active button:after{
	content: "";
	display: block;
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border: 1px solid #565654;
}






.slick-dots li button{background-position: center center;background-size: cover;}



.c01main01 .slick-dots li:nth-child(1) button{background: #333740;}
.c01main01 .slick-dots li:nth-child(2) button{background: #3C2A33;}
.c01main01 .slick-dots li:nth-child(3) button{background: #3B3C3F;}

.c01main02 .slick-dots li:nth-child(1) button{background: #BBBBC0;}
.c01main02 .slick-dots li:nth-child(2) button{background: #353743;}
.c01main02 .slick-dots li:nth-child(3) button{background: #404143;}

.c02main02 .slick-dots li:nth-child(1) button{background: #2D1D1E;}
.c02main02 .slick-dots li:nth-child(2) button{background: #64222C;}
.c02main02 .slick-dots li:nth-child(3) button{background: #25312D;}
.c02main02 .slick-dots li:nth-child(4) button{background: #1A1A1A;}
.c02main02 .slick-dots li:nth-child(5) button{background: #C6C6C4;}
.c02main02 .slick-dots li:nth-child(6) button{background: #7482A5;}
.c02main02 .slick-dots li:nth-child(7) button{background: #323F60;}

.c02main03 .slick-dots li:nth-child(1) button{background: #C3BAB3;}
.c02main03 .slick-dots li:nth-child(2) button{background: #767678;}
.c02main03 .slick-dots li:nth-child(3) button{background: #1F253F;}
.c02main03 .slick-dots li:nth-child(4) button{background: #0A0A0F;}

.c02main04 .slick-dots li:nth-child(1) button{background: #2B2F40;}
.c02main04 .slick-dots li:nth-child(2) button{background: #581E2A;}
.c02main04 .slick-dots li:nth-child(3) button{background: #A7A7A5;}
.c02main04 .slick-dots li:nth-child(4) button{background: #FAF3EB;}





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

.movieArea{
	width: 67%;
	max-width: 840px;
	margin: 80px auto 0;
	position: relative;
}
.movieArea .videoBox{
	width: 100%;
	margin: 0 auto;
	position: relative;
	line-height: 0;
	font-size: 0;
}
.movieArea .youtube{
	position:relative;
	z-index: 10;
	width:100%;
	padding-top:56.25%;
}
.movieArea .player{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.movieArea .youtube iframe{
	position:absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
}
.movieArea .thumb{
	position:absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index:5;
    cursor: pointer;
	display: block;
	overflow: hidden;
}

.movieArea .thumb .thumbImage,
.movieArea.delighter .thumb .thumbImage{
	opacity: 0;
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
	-webkit-transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
	transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.movieArea.delighter.started .thumb .thumbImage{
	opacity: 1;
	-webkit-transform:scale(1.0);
	transform:scale(1.0);
}


.movieArea .thumb .playBT,
.movieArea.delighter .thumb .playBT{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
	bottom: 0;
    z-index: 10;
    line-height: 1;
	opacity: 0;
    text-align: center;
	-webkit-transition: opacity 1.2s;
	transition: opacity 1.2s;
}
.movieArea.delighter.started .thumb .playBT{opacity: 1;}


.movieArea .thumb .playBT .play{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
    width: 100px;
	height: 100px;
	background: rgba(52,64,75,1);
	border-radius: 50%;
	z-index: 50;
	-webkit-transform:translateY(-50%) scale(1.0);
	transform:translateY(-50%) scale(1.0);
}
.movieArea .thumb .playBT .play span{
	position: absolute;
	top: 50%;
	left: 54%;
	background: #FFF;
	width: 30%;
	height: 45%;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}

@media(min-width: 769px) {
.movieArea .thumb .playBT .play{
-webkit-transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.movieArea .thumb .playBT .play span{
-webkit-transition: background 0.6s;
transition: background 0.6s;
}
.movieArea:hover .thumb .playBT .play{
	background: rgba(52,64,75,0.8);
	-webkit-transform:translateY(-50%) scale(1.2);
	transform:translateY(-50%) scale(1.2);
}
.movieArea:hover .thumb .playBT .play span{background: #FFF;}

}



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


.allBanner{
	width: 83%;
	max-width: 1080px;
	margin: 120px auto 0;
	position: relative;
	border: 2px solid;
}
.allBanner.c01{border-color: #34404B;color: #34404B;}
.allBanner.c02{border-color: #4F5243;color: #D6D2CB;}
.allBanner.c03{border-color: #58342A;color: #D6D2CB;margin-top: 80px;}

.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;
}
.allBanner.c01 .photo span{background-image: url("../../images/allbanner_c01.jpg");}
.allBanner.c02 .photo span{background-image: url("../../images/allbanner_c02.jpg");}
.allBanner.c03 .photo span{background-image: url("../../images/allbanner_c03.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.c01 .bannerInner{background: #C3C4C4;}
.allBanner.c02 .bannerInner{background: #4F5243;}
.allBanner.c03 .bannerInner{background: #58342A;}

.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: 500;
	font-size: 26px;
	letter-spacing: 0.03em;
	line-height: 1.6;
	text-align: center;
}
.allBanner .detail h2 br.res{display: none;}

.allBanner .detail .more{
	width: 70%;
	margin: 0 auto;
}
.allBanner .detail .more a{
	display: block;
	border: 2px solid;
	text-align: center;	
	font-family: "TTCommonsClassicRegular";
	font-size: 26px;
	line-height: 1;
	letter-spacing: 0.08em;
	padding: 11px 0;
}
.allBanner.c01 .detail .more a{border-color: #34404B;color: #FFF;background: #34404B;}
.allBanner.c02 .detail .more a{border-color: #D6D2CB;color: #4F5243;background: #D6D2CB;}
.allBanner.c03 .detail .more a{border-color: #D6D2CB;color: #58342A;background: #D6D2CB;}


@media(min-width: 769px) {
.allBanner.c01 .detail .more a:hover{background:#C3C4C4;color: #34404B;}
.allBanner.c02 .detail .more a:hover{background:#4F5243;color: #D6D2CB;}
.allBanner.c03 .detail .more a:hover{background:#58342A;color: #D6D2CB;}
}

.allBanner .detail .line{
	position:relative;
	width: 100%;
	padding-top: 40%;
	margin: 0 auto;
} 
.allBanner .detail .line span{
	position: absolute;
	top: 15%;
	bottom: 18%;
	left: 50%;
	width: 1px;
}
.allBanner.c01 .detail .line span{background-color: #34404B;}
.allBanner.c02 .detail .line span{background-color: #D6D2CB;}
.allBanner.c03 .detail .line span{background-color: #D6D2CB;}


.allBanner .detail .line span:after{
	content: '';
	position: absolute;
	bottom: -2px;
	left: 7px;
	width: 1px;
	height: 20px;
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}
.allBanner.c01 .detail .line span:after{background-color: #34404B;}
.allBanner.c02 .detail .line span:after{background-color: #D6D2CB;}
.allBanner.c03 .detail .line span:after{background-color: #D6D2CB;}



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



.otherContents{
	width: 75%;
	max-width: 960px;
	margin:150px auto 0;
	color: #4B4642;
}

.otherContents .otherTitle{
	width: 100%;
	position: relative;
	text-align: center;
	font-family: "BigMooreRegular";
	letter-spacing: 0.07em;
	font-size: 50px;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #B3AFA5;
}
.otherContents .otherTitle h2{}


.otherContents .otherList{
	width: 80%;
	position: relative;
	margin: 80px auto 0;
}
.otherContents .otherList::after{
	content: "";
	position: absolute;
	display: block;
	top: 0;
	bottom: -10px;
	left: 50%;
	width: 1px;
	background: #B3AFA5;
}


.otherContents .otherList ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.otherContents .otherList ul li{
	width: 40%;
	text-align: center;
}

.otherContents .otherList h3{
	font-family: "BigMooreRegular";
	font-weight: normal;
	font-size: 30px;
	letter-spacing: 0.07em;
	line-height: 1.0;
}
.otherContents .otherList h3 br{display: none;}
.otherContents .otherList h3 span{
	display: block;
	font-size: 0.73em;
}
.otherContents .otherList h4{
	font-size: 18px;
	margin-top:0.4em; 
}

.otherContents .otherList .image{
	margin: 15px auto 25px;
}
.otherContents .otherList .more{}
.otherContents .otherList .more a{
	color: #FFF;
	background: #4F5243;
	font-size: 18px;
	letter-spacing: 0.06em;
	font-weight: normal;
	white-space: nowrap;
	display: inline-block;
	padding: 0.6em 2.0em 0.5em;
	border: 1px solid #4F5243;
	font-family: "TTCommonsClassicRegular";
}
@media(min-width:769px) {
.otherContents .otherList .more a:hover{color: #4F5243;background: #FFF;}
}

.otherContents .otherList .more span{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 40px;
	display: inline-block;
	letter-spacing: 0.05em;
}


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


.sns{
	width: 600px;
	margin: 160px auto 0;
}
.sns ul{
	width: 100%;
	display: flex;
}
.sns ul li{
	text-align: center;
	width: 33.3333%;
	padding: 25px 0;
	border-left: 1px solid #413D3C;
}
.sns ul li:first-child{border: none;}
.sns a{
	color: #413D3C;
	letter-spacing: 0.05em;
	font-size: 24px;
	font-family: "TTCommonsClassicRegular";
}
.sns .icon{
	width: 47px;
	margin: 20px auto 0;
	-webkit-transition:opacity 0.4s;
	transition:opacity 0.4s;
}
.sns .lineBanner{
	width: 550px;
	margin: 120px auto 0;
	border: 1px solid #413D3C;
}


@media(min-width:769px) {
.sns a:hover .icon{opacity: 0.5;}
.sns .lineBanner a:hover{opacity: 0.6;}
}




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




.footer{
	width: 100%;
	margin-top: 120px;
	padding: 240px 0 55px;
	position: relative;
	overflow: hidden;
	background: url("../../images/footer_pc.jpg") center center;
	background-size: cover;
}
.footer h2{
	width: 257px;
	margin: 0 auto;
}
.footer .copyright{
	font-family: "BigMooreRegular";
	font-weight: normal;
	font-size: 23px;
	letter-spacing: 0.08em;
	margin: 200px auto 0;
	color: #FFF;
	text-align: center;
}
.footer .copyright br{display: none;}

.footer .pagetop{
	position: absolute;
	display: block;
	cursor: pointer;
	width: 50px;
	right: 2.5%;
	top: 50%;
	margin-top: -30px;
}





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

.sideNavi{
    position: fixed;
    top: 50%;
    right:-101px;
    width: 100px;
    z-index: 100;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.sideNavi.view{right:0;}

.sideNavi .topic{
	width: 100%;
	background: #FFF;
	border-top:1px solid #898989;
	border-left:1px solid #898989;
	border-bottom:1px solid #898989;
}
.sideNavi .topic.c02{margin-top: 30px;}


.sideNavi .top{
	width: 100%;
	background: #DDDDDD;
	color: #4B4642;
	letter-spacing: 0.04em;
	padding: 8px 0 8px 8px;
}
.sideNavi .top .num{
	font-family: "TimesNewRomanProItalic";
	font-size: 12px;
	margin-bottom: 6px;
}
.sideNavi .top h3{
	font-family: "BigMooreRegular";
	font-size: 14px;
}

.sideNavi .photo{
	width: 100%;
	background: #DDDDDD;
	border-top:1px solid #898989;
}


.sideNavi .current a{color:#CBAB80;}
.sideNavi a .photo img{
	opacity: 0.5;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi .current a .photo img{opacity: 1;}

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

@media (min-width: 769px) {
.sideNavi ul li a:hover .image span{opacity:0;}
.sideNavi .pagetop:hover{opacity:0.5;}
}



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

.spBottomNavi{display: none;}






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


/* ========================= Slider =============================== */

.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
	outline:none;
}
.coordinate .slick-list{overflow:visible;}
.coordinate .collectionItems .slick-list{overflow:hidden;}
.slick-list:focus{outline:none;}
.slick-list.dragging{cursor: pointer;cursor: hand;}
.slick-slider .slick-track,
.slick-slider .slick-list{-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
.slick-track{position: relative;top: 0;left: 0;display: block;}
.slick-track:before,
.slick-track:after{display: table;content: '';}
.slick-track:after{clear: both;}
.slick-loading .slick-track{visibility: hidden;}
.slick-slide{display: none;float: left;position: relative;height: 100%;min-height: 1px;}
[dir='rtl'] .slick-slide{float: right;}
.slick-slide img{display: block;}
.slick-slide.slick-loading img{display: none;}
.slick-slide.dragging img{pointer-events: none;}
.slick-initialized .slick-slide{display: block;}
.slick-loading .slick-slide{visibility: hidden;}
.slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;}
.slick-arrow.slick-hidden {display: none;}

/* Prev Next Button */

.slick-prev,
.slick-next {
    cursor:pointer;
    display:block;
    font-size:0;
    line-height:0;
    width: 6vw;
    height: 6vw;
    position:absolute;
    top:50%;
	margin-top: -3vw;
    z-index:50;
	border:none;
}
#c01 .slick-prev{left:-7vw;background-image: url("../../images/slick_arrow_left01.svg");}
#c01 .slick-next{right:-7vw;background-image: url("../../images/slick_arrow_right01.svg");}

#c02 .slick-prev{left:-7vw;background-image: url("../../images/slick_arrow_left02.svg");}
#c02 .slick-next{right:-7vw;background-image: url("../../images/slick_arrow_right02.svg");}






