@charset "utf-8";

/* RESET */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{*font-size:100%;}
/* RESET HTML5 */
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;font:inherit;vertical-align:baseline;}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}

/* GENERAL */
a:link, a:visited {color: #000;text-decoration: none;}
a:hover {color: #000;text-decoration: none;}
a{outline: none;}

/* CLEARFIX */
.clearfix
{zoom: 1;}

.clearfix:after,
.topSlide li:after,
.slider-nav > div:after,
.behindBox:after,
.imgBox:after
{content: "."; display: block; visibility: hidden; clear: both; height: 0; font-size: 0; line-height: 0;}

strong{
  font-weight: bold;
}

img{
  vertical-align: top;
}







/* ------------------------------------------
LAYOUT
------------------------------------------ */


.pageBtn{
  position: fixed;
  left: 50%;
  bottom: 0px;
  z-index: 20;

  font-family: "Roboto","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;

  width: 60px;
  height: 30px;
  background-image:url(../images/btn_page.png);
  background-repeat:no-repeat;
  background-size: 11px auto;
  background-position: center top;
  padding-top: 4px;
  text-align: center;
}




h1.logo{
  position: fixed;
  left: 30px;
  top: 20px;
  z-index: 100;
}

h1.logo a{
  text-indent: -9999px;
  display: block;
  width: 103px;
  height: 35px;
  background-image:url(../images/hd_logo.png);
  background-repeat:no-repeat;
  background-size: contain;

  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

h1.logo a:hover{
  opacity: 0.6;
}

.disable{
  opacity: 0.3;
}

#button_container{
  position: fixed;
  top: 24px;
  right: 20px;

  height: 55px;
  z-index: 300;
  width: 50px;

  margin-top: -20px;

  /* 	display: none; */
}


#toggle {
  position: absolute;
  right: 0px;
  top: 20px;
  height: 27px;
  width: 40px;
  cursor: pointer;
  z-index: 300;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

#toggle:hover {
  opacity: .7;
}
#toggle.active .top {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
  background: #fff !important;
}
#toggle.active .middle {
  -webkit-transform: translateY(30px) translateX(0) rotate(0);
  -ms-transform: translateY(30px) translateX(0) rotate(0);
  transform: translateY(30px) translateX(0) rotate(0);
  background: #fff !important;
}
#toggle.active .bottom {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
  background: #fff !important;
}
#toggle span {
  background: #000;
  border: none;
  height: 2px;
  width: 40px;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}

#button_container.black #toggle span{
  background-color: #000;
}




#toggle span:nth-of-type(2) {
  top: 8px;
}
#toggle span:nth-of-type(3) {
  top: 16px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, width .35s;
  transition: opacity .35s, visibility .35s, width .35s;
  z-index: 200;

}
#overlay:before {
  content: '';
  background: #000;
  left: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: left .35s ease;
  transition: left .35s ease;
}
#overlay:after {
  content: '';
  background: #000;
  right: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}
#overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
}
#overlay.open:before {
  left: 0;
}
#overlay.open:after {
  right: 0;
}
#overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}
#overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .40s;
  animation-delay: .40s;
}
#overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}
#overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}
#overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: .55s;
  animation-delay: .55s;
}
#overlay.open li:nth-of-type(6) {
  -webkit-animation-delay: .60s;
  animation-delay: .60s;
}
#overlay.open li:nth-of-type(7) {
  -webkit-animation-delay: .65s;
  animation-delay: .65s;
}
#overlay.open li:nth-of-type(8) {
  -webkit-animation-delay: 0.70s;
  animation-delay: 0.70s;
}
#overlay.open li:nth-of-type(9) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
#overlay.open li:nth-of-type(10) {
  -webkit-animation-delay: 0.80s;
  animation-delay: 0.80s;
}

#overlay.open li:nth-of-type(11) {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}
#overlay.open li:nth-of-type(12) {
  -webkit-animation-delay: 0.90s;
  animation-delay: 0.90s;
}
#overlay.open li:nth-of-type(13) {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}
#overlay.open li:nth-of-type(14) {
  -webkit-animation-delay: 1.00s;
  animation-delay: 1.00s;
}
#overlay.open li:nth-of-type(15) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}







#overlay nav {
  position: relative;
  height: 80%;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  z-index: 100;
}
#overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}
#overlay ul li {
  display: block;

  height: 25%;
  height: calc(100% / 6);

  max-height: 60px;

  position: relative;
  opacity: 0;
}

#overlay ul li.lineSp{
  position: relative;
  padding-bottom: 20px;
}

#overlay ul li.lineSp:after{
  content: '';
  background: #eee;
  display: block;

  width: 160px;
  height: 1px;

  position: absolute;
  left: 50%;
  bottom: 4px;

  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}


#overlay ul li a,
#overlay ul li span {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  padding: 15px 0;

  font-size: 15x;

  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: bold;
}



#overlay ul li.lang a,
#overlay ul li.lang span{
  display: inline-block;
  color: #fff;
}

#overlay ul li.lang span{
  padding: 15px 15px;
}

#overlay ul li a:hover:after, #overlay ul li a:focus:after, #overlay ul li a:active:after {
  width: 100%;
}


#overlay ul li.snsList{
  padding-top: 0px;
  float: none;
  margin-left: 0;
}
#overlay ul li.snsList a{
  display: inline-block;
  color: #fff;

  text-indent: -9999px;
  width: 30px;
  height: 30px;

  margin: 0 10px;
}

#overlay a.facebook{
  background-image:url(../images/ico_facebook.png);
  background-repeat:no-repeat;
  background-size: 20px auto;
}

#overlay a.instagram{
  background-image:url(../images/ico_instagram.png);
  background-repeat:no-repeat;
  background-size: 20px auto;
}



@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}




/* ------------------------------------------
LAYOUT
------------------------------------------ */

html{
  height: 100%;
}

body{
  font: 12px/1.4 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  position:relative;
  font-size: 14px;
  letter-spacing: 0.05em;

  line-height: 160%;
}

section.sec{
  padding: 90px 0;
}

.onlyPc{
  display: block;
}

.onlySp{
  display: none;
}

*{
  box-sizing: border-box;
}

body{
  overflow-x: hidden;
}

.navList{
  position: fixed;
  right: 100px;
  top: 22px;
  z-index: 100;
}

.navList li{
  display: inline-block;
  margin-left: 30px;
  font-family: "Roboto","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.navList li a{
  color: #000;

  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navList li a:hover{
  opacity: 0.6;
}


.mainVisual{
  width: 100%;
  height: 100%;
  overflow: hidden;

  background-image:url(../images/img_bg.jpg);
  background-repeat:no-repeat;
  background-size: cover;
  background-position: center center;
}

.topSlideBox{
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  top: calc(50% + 20px);
  width: 880px;
  width: 900px;

  width: 1024px;

  max-width: 100%;
  /* 	height: 585px; */
  padding-left: 50px;
  padding-right: 50px;

  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);

  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
.topSlideBox.mini{
	width: 980px;
}
*/

.topSlideBox.mini .topSlide .col1.interview{
  padding-left: 0px;
  padding-right: 40px;
}

.topSlideBox.mini .topSlide .mainDesp{
  line-height: 140%;
}

/*
.topSlideBox.mini .topSlide .col1{
	padding-top: 30px;
	padding-bottom: 30px;
}

.topSlideBox.mini .topSlide .left.col2{
	padding-right: 60px;
}
.topSlideBox.mini .topSlide .right.col2{
	padding-left: 60px;
}

.topSlideBox.mini .topSlide .all{
	padding-right: 60px;
	padding-left: 60px;
}
*/


.topSlideBox .scrollBox{
  height: 480px;
  /*
    overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  */
}


.whiteBg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;

  background-color: rgba(255,255,255,0.54);
}


.topSlide > div{
  padding-bottom: 20px;
  vertical-align: bottom;
}




.slick-slide > div > div{
  vertical-align: bottom;
}


.topSlide .col1 {
  padding: 72px 55px;
}
.topSlide .col2{
  padding: 20px 20px;
}
.topSlide .col3{
  padding: 75px 20px;
  padding-right: 0;
  padding-left: 120px;
  padding-bottom: 0;
}
.topSlide .col3 img{
  text-align: right;
}

.topSlide img{
  width: 100%;

  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.topSlide.hover img{
  opacity: 0.2;
}

.topSlide .all.hover:hover img{
  opacity: 0.2;
}
.topSlide .left.hover:hover img{
  opacity: 0.2;
}
.topSlide .right.hover:hover img{
  opacity: 0.2;
}

.topSlide .all.hover:hover .desp{
  opacity: 1;
  z-index:10;
}
.topSlide .left.hover:hover .desp{
  opacity: 1;
  z-index:10;
}
.topSlide .right.hover:hover .desp{
  opacity: 1;
  z-index:10;
}

.all .img img{
  width: auto !important;
}
.all .img{
  overflow: hidden;
}


.topSlide .each.opend img{
  opacity: 0.2;
}

.topSlide .each.opend .desp{
  opacity: 1;
}


.each{
  position: relative;
}
/*
.linkBtn{
	position: absolute;
	right: -40px;
	bottom: -30px;

	width: 40px;
	height: 40px;
	background-image:url(../images/ico_link2.png);
	background-repeat:no-repeat;
	background-size: 20px auto;
	background-position: center center;

	text-indent: -9999px;
}
*/

.linkBtn{
  position: absolute;
  right: 15px;
  bottom: 7px;

  width: 40px;
  height: 40px;
  background-image:url(../images/ico_link2.png);
  background-repeat:no-repeat;
  background-size: 20px auto;
  background-position: center center;

  text-indent: -9999px;
}

/*
.all .linkBtn{
	background-image:url(../images/ico_link2_white.png);
}
*/

.topSlide .left{
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
}

.topSlide .right{
  float: right;
  width: 50%;
  height: 100%;
  position: relative;
}

.topSlide.hover .desp{
  opacity: 1;
}

.topSlide .desp{
  min-width: 330px;
  font-family: "Roboto","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 160%;
  color: #333;
  opacity: 0;

  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.topSlide .desp a{
  text-decoration: underline;
}

/*
.topSlide .left .desp,
.topSlide .all .desp{
	position: absolute;
	left: 30px;
	bottom: 10px;
}
.topSlide .right .desp{
	position: absolute;
	right: 30px;
	bottom: 10px;
}
*/

.topSlide li{

}


.topSlide .left .desp,
.topSlide .all .desp{
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;

  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}



.topSlide .right .desp{
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;

  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}




.topSlide .slick-list {
  overflow: visible;
}


.topSlide h2.ttl{
  font-family: "clarendon-urw","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.15em;

  margin-bottom: 20px;
}

.topSlide h2.ttl.mini{
  font-size: 16px;
  margin-bottom: 10px;
  /* 	padding-top: 20px; */
}

.caption{
  font-family: "Roboto","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 8px;
  margin-bottom: 10px;
}

.topSlide .museName{
  font-size: 13px;
  margin-bottom: 15px;
}

.topSlide h3.ttl{
  font-size: 12px;
  margin-bottom: 4px;
}

.mainDesp{
  font-size: 10px;
  line-height: 160%;
  margin-bottom: 20px;
}

.topSlide .copy{
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 150%;
}



.behindBox .leftBox{
  width: 75%;
  float: left;
}
.behindBox .rightBox{
  width: 20%;
  float: right;
}



.sliderSide{
  position: fixed;
  z-index: 15;
  left: 50%;
  bottom: 0;
  width: 80%;
  width: 1050px;
  max-width: 90%;

  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sliderSide.hide{
  bottom: -70px;
}


.slider-nav{
  /* 	display: none; */
}

.slider-nav img{
  width: 100%;
}

/*
.slider-nav > div .left,
.slider-nav > div .right,
.slider-nav > div .all{
	height: 120px;
}
*/

.slider-nav > div{

}

.slider-nav .each{
  padding-right: 10px;
}

.slider-nav > div .left{
  float: left;
  width: 50%;
  padding-left: 2px;
  padding-right: 2px;
}
.slider-nav > div .right{
  float: right;
  width: 50%;
  padding-left: 2px;
  padding-right: 2px;
}


.slider-nav .slick-slide img{
  opacity: 1
}
.slider-nav .slick-slide.slick-current img{
  opacity: 0.5;
}



body.showThum .thumBox{
  visibility: visible;
  opacity: 1;
}

body.showThum .topSlideBox{
  opacity: 0;
}

body.hide .topSlideBox,
body.hide .thumBox{
  opacity: 0;
}


.thumBox{
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);

  visibility: hidden;
  opacity: 0;

  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.thumBox .box{
  width: 964px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;

  position: absolute;
  left: 50%;
  top: 50%;

  /* 	background-color: red; */

  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.thumList{

}

.thumList li{
  float: left;
  width: 20%;
  width: calc(25% - 20px);
  margin-left: 10px;
  margin-right: 10px;

  margin-top: 10px;
  margin-bottom: 10px;
}

.thumList li img{
  width: 100%;
}


.imgBox{
  position: relative;
}
.imgBox .img{
  float: left;
  width: 60%;
}
.imgBox2{
  margin-left:30px;
}

.imgBox .desp2{
  width: 35%;
  margin-left: 5%;

  position: absolute;
  bottom: 0;
  right: 0;

  font-family: "Roboto","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 160%;
  color: #333;
}



.creditList{
  /*
    margin-top: 150px;
    float: right;
  */

  text-align: right;
  font-family: "Roboto","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 160%;
  color: #333;
}

.creditList li{
  margin-top: 10px;
}

.creditList li .name{
  font-weight: bold;
}















.each.tile{
  height: 100%;
}


.posRe{
  position: relative;
}




.topSlideBox{
  width: 1200px;
}
/*
.topSlideBox.mini{
	width: 950px;
}
*/





@media screen and (max-width: 1500px){

  .topSlideBox{
    width: 1120px;
  }

}


@media screen and (max-width: 1300px){

  .topSlideBox{
    width: 1050px;
    width: 980px;
  }

}


@media screen and (max-width: 1150px){

  .topSlideBox{
    width: 950px;
  }

}

@media screen and (max-width: 1100px){

  .topSlideBox{
    width: 850px;
  }

}

/* bxslider */
/*.bx-viewport {
    height: 100%;
    display: block;
}
.img.other__images {
    width: 100% !important;
	height: 100% !important;
}
.other__images__item {
	width: 100% !important;
}
.bx-pager.bx-default-pager {
    display: none;
}
.bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}*/


/*.other__images {
	width: 100%;
	height: 100vh;
	position: fixed;
}
.other__images div.idx1 {
	background-image: url(../images/page6-1.jpg);
	height: 100%;
	width: 100%;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.other__images div.idx2 {
	background-image: url(../images/page6-2.jpg);
	height: 100%;
	width: 100%;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}*/


.topSlide .slick-track {
  display: flex;
  align-items: center;
}
.topSlide .slick-slide {
  background-color: #fff;
}
.topSlide .slick-slide:last-child { /* lsatSlide */
  background-color: transparent;
}

/* Last Slide */
.last-slide {
  display: flex !important;
  align-items: center;
}
.last-slide .credit-bottom-wrap {
  display: flex;
  align-items: flex-end;
}
.last-slide .left { /* credit */
  height: auto !important;
  background-color: #fff;
}
.last-slide .left .imgBox .img {
  width: 80%;
}
.last-slide .right { /* vol.1 */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.last-slide .right .imgBox .img {
  width: 100%;
}















.topSlide .right.hover:hover .swiper-container1 .hover_nodisp img{
  opacity: 0;
}
.topSlide .right.hover:hover .swiper-container2 .hover_nodisp img{
  opacity: 0;
}
.topSlide .all.hover:hover .swiper-container3 .hover_nodisp img{
  opacity: 0;
}
.topSlide .each.opend .hover_nodisp img{
  opacity: 0;
}

