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

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}
/* -------------------------------- 

slide

-------------------------------- */
.cd-slide-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  /* hide horizontal scrollbar on IE11 */
  overflow: hidden;
}
.cd-slide-wrapper .cd-slide, .cd-slide-wrapper .cd-slide > li {
  height: 100%;
  width: 100%;
}

.cd-slide > li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* used to vertically center its content */
  display: table;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-slide > li.visible {
  /* selected slide */
  /*position: relative;*/
  z-index: 2;
  opacity: 1;
}
.cd-slide > li:first-of-type {
  background-color: #4a3553;
  background-image: url(../images/indexBanner_02.jpg);
}
.cd-slide > li:nth-of-type(2) {
  background-color: #ffb251;
  background-image: url(../images/indexBanner_02.jpg);
}
.cd-slide > li:nth-of-type(3) {
  background-color: #7d7160;
  background-image: url(../images/indexBanner_02.jpg);
}
.cd-slide > li:nth-of-type(4) {
  background-color: #ff625a;
  background-image: url(../images/indexBanner_02.jpg);
}
.cd-slide > li:first-of-type, .cd-slide > li:nth-of-type(2), .cd-slide > li:nth-of-type(3), .cd-slide > li:nth-of-type(4) {
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .cd-slide > li h2, .cd-slide > li p {
    max-width: 520px;
  }
  .cd-slide > li h2 {
    font-size: 2.4em;
    font-weight: 300;
  }
  .cd-slide > li .cd-btn {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-slide > li h2, .cd-slide > li p {
    margin-bottom: 20px;
  }
  .cd-slide > li h2 {
    font-size: 3.2em;
  }
  .cd-slide > li p {
    font-size: 1.8rem;
  }
}

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

slide navigation

-------------------------------- */
.cd-slide-navigation{position: absolute;bottom: 30px;width: 100%;z-index: 3;text-align: center;}
.cd-slide-navigation>li{display: inline-block;width: 20px;height: 20px;background: url(../images/banner_Index_03.png)no-repeat;}
.cd-slide-navigation>li:hover,.cd-slide-navigation>li.selected{background: url(../images/banner_Index_05.png)no-repeat;}
.cd-slide-navigation>li>a{color: #fff;}



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

svg cover layer

-------------------------------- */
ul{-webkit-padding-start: 0px;}  
.cd-svg-cover {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}
.cd-svg-cover path {
  fill: #ffe8c9;
}
.cd-svg-cover.is-animating {
  z-index: 4;
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
