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

/* ---------------------------
	sub common
--------------------------- */

#container{
  overflow: hidden;
}
footer{
  position: relative;
  z-index: 5;
}

.indentList li,
.indentTxt{
  text-indent: -1em;
  margin-left: 1em;
}

#contents{
  margin-top: 100vh;
  background: #fff;
  position: relative;
  z-index: 60;
}

.arrow{
  position: relative;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
.arrow::before,
.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

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

  #container{
  }
}

/* ---------------------------
	main
--------------------------- */
#main {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: url(../img/main.jpg) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
#main div.wrap{
  width: 100%;
  height: 100vh;
  background: url(../img/overlay.png) 0 0 repeat;
  -webkit-background-size: 48px auto;
  background-size: 48px auto;
}
#main div.padBg{
  width: 100%;
  height: 100vh;
  background: url(../img/main_ipad.png) center center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
#main div.padBg>div{
  position: absolute;
  width: 970px;
  top: 50%;
  left: 50%;
  margin-left: -485px;
  text-align: center;
  transform: translateY(-55%);
}
#main h2{
  font-size: 33px;
  margin-bottom: 40px;
}
#main .logo{
  margin-bottom: 55px;
}
#main .logo img{
  width: 590px;
}

#main h3{
  font-size: 30px;
  margin-bottom: 40px;
}
#main .note{
  margin-bottom: 35px;
}
#main .link img{
  width: 226px;
}

.link img{
  transition:0.5s opacity;
}
.link a:hover img{
  opacity:0.8;
}


.down {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  transition: .3s ease opacity;
  bottom: 50px;
  left: 0;
  right: 0;
  margin:0 auto;
  z-index: 50;
  display: block;
  cursor: pointer;
  opacity: 1;
}
.down img {
  width: 37px;
  margin: auto;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  transition: .3s ease all;
  transform: translateY(0);
}
.down::after, .down::before {
    box-sizing: border-box;
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation-name: pageDown;
    animation-name: pageDown;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-timing-function: cubic-bezier(.075,.82,.165,1);
    animation-timing-function: cubic-bezier(.075,.82,.165,1);
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
}
.down::after {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
@keyframes pageDown{
0%{
	opacity: 0;
}
1% {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
100% {
	-webkit-transform: scale(2);
	transform: scale(2);
	opacity: 0;
}
}

@keyframes motion{
	0%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
	}
	20%{
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	}

	40% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
	60% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
	}
	100% {
		-webkit-transform: translateY(2px);
		transform: translateY(2px);
	}
}
@media screen and (max-width: 767px) {

  #main {
    
    margin-top: 45px;
    height: calc(100vh - 45px);
    
    background: url(../img/main.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #main div.padBg{
    
    height: calc(100vh - 45px);
    
    background: url(../img/main_ipad.png) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #main div.wrap{
    background: url(../img/overlay.png) 0 0 repeat;
    -webkit-background-size: 24px auto;
    background-size: 24px auto;
  }
  #main div.padBg>div{
    width: 100%;
    top: 50%;
    left: 0;
    margin-left: 0;
    text-align: center;
    transform: translateY(-55%);
  }


  #main h2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  #main .logo{
    margin-bottom: 20px;
  }
  #main .logo img{
    width: 236px;
  }
  #main h3{
    font-size: 13px;
    margin-bottom: 25px;
  }
  #main .note{
    font-size: 10px;
    margin-bottom: 30px;
  }
  #main .link img{
    width: 112px;
  }
  #main div.wrap>div .img{
    bottom: 0;
    right: 10px;
    width: 78px;
  }
  .down {
    width: 15px;
    height: 15px;
    padding: 10px;
    bottom: 30px;
  }
  .down img{
    width: 17px;
  }
}



/* ---------------------------
	SERVICE
--------------------------- */

section#SERVICE{
  width: 970px;
  margin: 0 auto;
  padding: 80px 0 65px;
  text-align: center;
}
section#SERVICE h2{
  width: 594px;
  margin: 0 auto 40px;
}
section#SERVICE .leadNote{
  font-size: 30px;
  line-height: 2.35;
  margin-bottom: 80px;
}
section#SERVICE .img{
  width: 582px;
  margin: 0 auto 35px;
}
section#SERVICE ul{
  overflow: hidden;
  width: 750px;
  margin: 0 auto;
}
section#SERVICE li{
  width: 250px;
  margin-bottom: 50px;
  float: left;
}
section#SERVICE li .img{
  margin-bottom: 10px;
  width: 82px;
}
section#SERVICE li .img img{
  width: 82px;
}

dl#newsBox{
  width: 940px;
  margin: 0 auto;
  padding: 20px 15px;
  border: 2px solid #d0d2d3;
  border-radius: 8px;
  text-align: left;
}
dl#newsBox dt{
  float: left;
  width: 250px;
  clear: both;
}
dl#newsBox dd{
  padding-left: 265px;
}
dl#newsBox dt~dt,
dl#newsBox dd~dd{
  margin-top: 5px;
}
dl#newsBox dt span{
  display: inline-block;
  margin-right: 10px;
  background: #f00;
  width: 77px;
  line-height: 15px;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  section#SERVICE{
    width: 100%;
    padding: 40px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  section#SERVICE h2{
    width: 262px;
    margin: 0 auto 17px;
  }
  section#SERVICE .leadNote{
    font-size: 14px;
    margin-bottom: 20px;
  }
  section#SERVICE .img{
    width: 250px;
    margin: 0 auto 35px;
  }
  section#SERVICE ul{
    width: 90%;
  }
  section#SERVICE li{
    width: 50%;
    margin-bottom: 25px;
  }
  section#SERVICE li .img{
    width: auto;
    margin-bottom: 5px;
  }
  section#SERVICE li .img img{
    width: 40px;
  }

  dl#newsBox{
    width: 100%;
    padding: 15px 10px 5px;
    border: 1px solid #d0d2d3;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  dl#newsBox dt{
    float: none;
    width: 100%;
    clear: both;
    margin-bottom: 5px;
    line-height: 12px;
  }
  dl#newsBox dd{
    padding-left: 0;
    margin-bottom: 10px;
  }
  dl#newsBox dt~dt,
  dl#newsBox dd~dd{
    margin-top: 0;
  }
  dl#newsBox dt span{
    display: inline-block;
    margin-right: 10px;
    background: #f00;
    width: 50px;
    line-height: 12px;
    font-size: 9px;
  }
}



/* ---------------------------
	FUNCTION
--------------------------- */

#FUNCTION ul li{
  width: 100%;
  height: 436px;
}

#FUNCTION ul li#f01{
  background: url(../img/func_img01.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
#FUNCTION ul li#f02{
  background: url(../img/func_img02.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
#FUNCTION ul li#f03{
  background: url(../img/func_img03.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
#FUNCTION ul li#f04{
  background: url(../img/func_img04.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
#FUNCTION ul li#f05{
  background: url(../img/func_img05.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
#FUNCTION ul li>div{
  height: 436px;
  background: url(../img/overlay.png) 0 0 repeat;
  -webkit-background-size: 48px auto;
  background-size: 48px auto;
}
#FUNCTION ul li>div>div{
  width: 970px;
  margin: 0 auto;
  position: relative;
  text-align: right;
  color: #fff;
}
#FUNCTION ul li#f02>div>div,
#FUNCTION ul li#f04>div>div{
  right: auto;
  left: 15px;
  text-align: left;
}
#FUNCTION .img{
  padding: 90px 15px 60px;
}
#FUNCTION .img img{
  width: 132px;
}
#FUNCTION h3{
  font-size: 30px;
  margin-bottom: 15px;
}
#FUNCTION ul li.appBox{
  background: url(../img/func_img06.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
#FUNCTION ul li.appBox>div>div{
  width: 970px;
  margin: 0 auto;
}
#FUNCTION ul li.appBox>div>div>div{
  width: 500px;
  margin: 0 0 0 auto;
  text-align: center;
  position: relative;
}
#FUNCTION ul li.appBox .ladyImg{
  position: absolute;
  width: 457px;
  top: 0;
  left: 50px;
}
#FUNCTION ul li.appBox .note{
  font-size: 24px;
  padding: 100px 0 35px;
}
#FUNCTION ul li.appBox .dlBtn{
  width: 350px;
  margin: 0 auto;
}
#FUNCTION ul li.appBox .dlBtn a{
  display: block;
  background: #f6921e;
  border-radius: 5px;
  line-height: 56px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  transition: 0.5s all;
}
#FUNCTION ul li.appBox .dlBtn a:hover{
  opacity: 0.7;
  text-decoration: none;
}

#FUNCTION ul li.appBox .dlBtn a::before{
  left:auto;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  #FUNCTION ul li{
    width: 100%;
    height: 195px;
  }

  #FUNCTION ul li#f01{
    background: url(../img/func_img01.jpg) 48% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #FUNCTION ul li#f02{
    background: url(../img/func_img02.jpg) 70% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #FUNCTION ul li#f03{
    background: url(../img/func_img03.jpg) 72% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #FUNCTION ul li#f04{
    background: url(../img/func_img04.jpg) 63% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #FUNCTION ul li#f05{
    background: url(../img/func_img05.jpg) 30% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #FUNCTION ul li>div{
  height: 195px;
    background: url(../img/overlay.png) 0 0 repeat;
    -webkit-background-size: 24px auto;
    background-size: 24px auto;
  }
  #FUNCTION ul li>div>div{
    width: 100%;
  }
  #FUNCTION ul li#f02>div>div,
  #FUNCTION ul li#f04>div>div{
    left: 0;
  }
  #FUNCTION .img{
    padding: 40px 10px 25px;
  }
  #FUNCTION .img img{
    width: 62px;
  }
  #FUNCTION h3{
    padding:0 10px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  #FUNCTION .note{
    padding:0 10px;
  }
  #FUNCTION ul li.appBox{
    background: url(../img/func_img06.jpg) 40% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  #FUNCTION ul li.appBox>div>div{
    width: 100%;
  }
  #FUNCTION ul li.appBox>div>div>div{
    width: 200px;
    margin: 0 10px 0 auto;
    text-align: center;
    position: relative;
    z-index: 999;
  }
  #FUNCTION ul li.appBox .ladyImg{
    left: 50%;
    width: auto;
  }
  #FUNCTION ul li.appBox .ladyImg img{
    width: auto;
    height: 195px;
    margin-left: -185px;
  }
  #FUNCTION ul li.appBox .note{
    font-size: 12px;
    padding: 50px 0 12px;
  }
  #FUNCTION ul li.appBox .dlBtn{
    width: 200px;
  }
  #FUNCTION ul li.appBox .dlBtn a{
    border-radius: 3px;
    line-height: 30px;
    font-size: 10px;
  }

  #FUNCTION ul li.appBox .dlBtn a::before{
    right: 10px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}


section.slideSec ul.channel{
  display: table;
  width: 100%;
  padding-bottom: 50px;
}
section.slideSec ul.channel li{
  display: table-cell;
  text-align: center;
  padding:0 10px;
  position: relative;
  vertical-align: middle;
  height: 40px;
  background: #fff;
}
section.slideSec ul.channel li a{
  display: block;
  border: 2px solid #b3b3b3;
  line-height: 40px;
  color: #999;
  transition: 0.3s all;
}
section.slideSec ul.channel li.current a,
section.slideSec ul.channel li a:hover{
  border: 2px solid #087efe;
  background: #087efe;
  text-decoration: none;
  color: #fff;
}
section.slideSec ul.channel li.current:after{
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -20px;

  border: 20px solid transparent;
  border-top: 20px solid #087efe;
  z-index: 100;
  transform: scaleX(0.6);
}



section.slideSec>div{
  width: 970px;
  margin: 0 auto;
  padding: 75px 0;
  overflow: hidden;
}
section.slideSec>div~div{
  border-top: 1px solid #b3b3b3;
}

section.slideSec h2{
  font-size: 29px;
  margin-bottom: 90px;
  text-align: center;
}

section.slideSec div.noteBox{
  float: left;
  width: 250px;
  padding-top: 30px;
}

section.slideSec h3{
  font-size: 29px;
  margin-bottom: 30px;
}
section.slideSec div.slideWrap{
  float: right;
  width: 654px;
  height: 390px;
  padding: 0 0 0 70px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
section.slideSec>div:nth-child(2) div.noteBox{
  float: right;
}
section.slideSec>div:nth-child(2) div.slideWrap{
  float: left;
}


section.slideSec div#Aslide2,
section.slideSec div#Aslide3{
  display: none;
}


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

  section.slideSec ul.channel{
    margin-bottom: 25px;
    border-collapse: collapse;
  }
  section.slideSec ul.channel li{
    padding:0 ;
    border: 1px solid #b3b3b3;
  }
  section.slideSec ul.channel li a{
    border: none;
    line-height: 1.5;
  }
  section.slideSec ul.channel li.current{
    border: 1px solid #087efe;
    background: #087efe;
  }

  section.slideSec ul.channel li.current a,
  section.slideSec ul.channel li a:hover{
    border: none;
    background: none;
  }
  section.slideSec ul.channel li.current:after{
    content: "";
    position: absolute;
    bottom: -30px;
    margin-left: -15px;

    border: 15px solid transparent;
    border-top: 15px solid #087efe;
  }


  section.slideSec>div{
    width: 100%;
    padding: 32px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  section.slideSec h2{
    font-size: 15px;
    margin-bottom: 25px;
  }
  section.slideSec div.noteBox{
    float: none;
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
  section.slideSec div.noteBox .note{
    display: inline-block;
    text-align: left;
  }

  section.slideSec h3{
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
  }
  section.slideSec div.slideWrap{
    float: none;
    width: 300px;
    margin: 0 auto;
    height: 210px;
    padding: 20px 0 0 0;
  }
  section.slideSec>div:nth-child(2) div.noteBox{
    float: none;
  }
  section.slideSec>div:nth-child(2) div.slideWrap{
    float: none;
  }
}



/*-------------- AB slide ---------------------*/
section.slideSec div.slideWrap{
background: url(../img/pad_base.png) 108px 0 no-repeat;
}
section.slideSec div.slideWrap ul.slick-slider{
  width: 398px;
  height: 300px;
  margin-left: 80px;
  margin-top: 20px;
}
section.slideSec div.slideWrap ul.slick-slider li img{
  width: 398px;
}
section.slideSec .slick-prev{
  margin-top: -26px;
  left: -105px;
}
section.slideSec .slick-next{
  margin-top: -26px;
  right: -100px;
}
section.slideSec .slick-prev:before,
section.slideSec .slick-next:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
section.slideSec .slick-next:before{
  left: 13px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.slideSec .slick-prev:before{
  left: 20px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.slideSec div.slideWrap ul.slick-dots {
    bottom: -55px;
    margin-left: 0;
}
section.slideSec .slick-dots li{
  margin: 0;
}
section.slideSec .slick-dots li button {
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
}
section.slideSec .slick-dots li button:before {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    content: '';
    display: block;
    background: #fff;
    border: 1px solid #808080;
    border-radius: 50%;
}
section.slideSec .slick-dots li.slick-active button:before {
  background: #999;
}

section.slideSec div#Bslide2,
section.slideSec div#Bslide3,
section.slideSec div#Bslide4{
  display: none;
}

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

  section.slideSec div.slideWrap{
  background: url(../img/pad_base.png) center 20px no-repeat;
  -webkit-background-size: 213px auto;
  background-size: 213px auto;
  }
  section.slideSec div.slideWrap ul.slick-slider{
    width: 176px;
    height: 133px;
    margin-left: 62px;
    margin-top: 10px;
  }
  section.slideSec div.slideWrap ul.slick-slider li img{
    width: 176px;
  }

  section.slideSec .slick-prev,
  section.slideSec .slick-next{
    width: 23px;
    height: 23px;
  }
  section.slideSec .slick-prev{
    margin-top: -13px;
    left: -50px;
  }
  section.slideSec .slick-next{
    margin-top: -13px;
    right: -50px;
  }






  section.slideSec .slick-next:before{
    left: 7px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  section.slideSec .slick-prev:before{
    left: 10px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  section.slideSec .slick-dots {
      bottom: -30px;
  }
  section.slideSec .slick-dots li{
      width: 15px;
      height: 15px;
  }
  section.slideSec .slick-dots li button {
      width: 10px;
      height: 10px;
  }
  section.slideSec .slick-dots li button:before {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 4px;
      height: 4px;
      content: '';
  }
}

/*-------------- AB slide end---------------------*/


/* ---------------------------
	pointSec
--------------------------- */
section#pointSec{
  width: 100%;
  padding-top: 40px;
  background: url(../img/point_bg.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
section#pointSec>div{
  width: 970px;
  height: 460px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
section#pointSec h2{
  font-size: 29px;
  margin-bottom: 20px;
}
section#pointSec .note{
  margin-bottom: 30px;
}
section#pointSec .img{
  width: 775px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  section#pointSec{
    padding-top: 20px;
  }
  section#pointSec>div{
    width: 100%;
    height: 202px;
  }
  section#pointSec h2{
    font-size: 15px;
    margin-bottom: 10px;
  }
  section#pointSec .note{
    font-size: 9px;
    margin-bottom: 20px;
  }
  section#pointSec .img{
    width: 300px;
  }
}

/* ---------------------------
	appSec
--------------------------- */
section#appSec{
  width: 100%;
  padding-top: 125px;
}
section#appSec h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 85px;
}
section#appSec div.introBox{
  width: 970px;
  margin: 0 auto;
  overflow: hidden;
}
section#appSec div.introBox>div{
  float: left;
  width: 500px;
  padding-left: 20px;
}
section#appSec div.introBox>p{
  float: right;
  width: auto;
  height: 386px;
  padding: 10px 100px 0 0;
}
section#appSec .note{
  margin-bottom: 25px;
}
section#appSec ul{
  margin-left: 30px;
}
section#appSec ul li{
  float: left;
}
section#appSec ul li~li{
  margin-left: 10px;
}
section#appSec ul li:first-child img,
section#appSec ul li:last-child img{
  height: 46px;
  width: auto;
}


@media screen and (max-width: 767px) {
  section#appSec{
    padding-top: 30px;
  }
  section#appSec h2{
    font-size: 15px;
    margin-bottom: 25px;
  }
  section#appSec div.introBox{
    width: 100%;
    position: relative;
    min-height: 175px;
  }
  section#appSec div.introBox>div{
    float: none;
    width: 100%;

    padding-right: 150px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  section#appSec div.introBox>p{
    float: none;
    width: 125px;
    height: auto;
    padding: 0;

    position: absolute;
    bottom: 0;
    right: 10px;
    z-index: 100;
  }

  section#appSec .note{
    margin-bottom: 15px;
    font-size: 10px;
  }
  section#appSec ul{
    overflow: hidden;
    margin-left: 0;
    padding-bottom: 20px;
  }
  section#appSec ul li~li{
    margin-left: 5px;
  }
  section#appSec ul li:first-child img,
  section#appSec ul li:last-child img{
    height: 22px;
  }
}

/* ---------------------------
	qrSec
--------------------------- */
section#qrSec{
  width: 100%;
  color: #fff;
  background: url(../img/qr_bg.jpg) 0 center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
section#qrSec>div{
  background: url(../img/overlay.png) 0 0 repeat;
  -webkit-background-size: 48px auto;
  background-size: 48px auto;
}
section#qrSec>div>div{
  padding-top: 75px;
  width: 970px;
  margin: 0 auto;
  overflow: hidden;
}
section#qrSec>div>div>p{
  float: left;
  width: 513px;
}
section#qrSec>div>div>div{
  float: right;
  width: 350px;
  padding-right: 30px;
}
section#qrSec h2{
  font-size: 24px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  section#qrSec{
    background: url(../img/qr_bg.jpg) 13% center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  section#qrSec>div{
    background: url(../img/overlay.png) 0 0 repeat;
    -webkit-background-size: 24px auto;
    background-size: 24px auto;
  }
  section#qrSec>div>div{
    padding-top: 22px;
    width: 100%;
    text-align: center;
  }
  section#qrSec>div>div>p{
    float: none;
    width: 230px;
    margin: 0 auto;
  }
  section#qrSec>div>div>div{
    float: none;
    width: 100%;
    padding:0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  section#qrSec h2{
    font-size: 15px;
    margin-bottom: 15px;
  }
  section#qrSec .note{
    display: inline-block;
    text-align: left;
  }
}
/* ---------------------------
	cardSec
--------------------------- */
section#cardSec{
  width: 100%;
  padding:80px 0 45px;
}
section#cardSec>div{
  width: 970px;
  margin: 0 auto;
}
section#cardSec h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 70px;
}
section#cardSec div.pointBox{
  overflow: hidden;
}
section#cardSec .note{
  float: left;
  padding: 55px 30px;
}
section#cardSec .img{
  float: right;
  padding-right: 30px;
  width: 535px;
}
@media screen and (max-width: 767px) {
  section#cardSec{
    padding:25px 0 35px;
  }
  section#cardSec>div{
    width: 100%;
    text-align: center;
  }
  section#cardSec h2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  section#cardSec .note{
    width: 100%;
    float: none;
    padding: 0 10px 20px;
    display: inline-block;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  section#cardSec .img{
    float: none;
    padding-right: 0;
    width: 240px;
    margin: 0 auto;
  }
}

/* ---------------------------
	funcSec
--------------------------- */
section#funcSec{
  width: 100%;
  background: #f2f2f2;
  padding: 40px 0 60px;
}

section#funcSec h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 40px;
}

section#funcSec>div{
  width: 970px;
  margin: 0 auto;
}

section#funcSec table{
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #999;
}
section#funcSec table th,
section#funcSec table td{
  padding: 15px;
  background: #fff;
  border: 1px solid #999;
}
section#funcSec table th{
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
  width: 170px;
  text-align: left;
}
section#funcSec table td{
  font-size: 12px;
}
section#funcSec table tr.paid th span{
  display: block;
  position: relative;
}
section#funcSec table tr.paid th span:after{
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 100;
  margin-top: -6px;
  content: "有料";
  font-size: 8px;
  color: #f00;
  display: inline-block;
  border-radius: 3px;
  width: 20px;
  line-height: 12px;
  text-align: center;
  border: 1px solid #f00;
  vertical-align: middle;
}

section#funcSec div.baseFunc.open table{
  border-bottom: none;
}
section#funcSec div.moreFunc{
  display: none;
}
section#funcSec div.moreFunc table{
  border-top: none;
}
section#funcSec div.moreFunc table th,
section#funcSec div.moreFunc table td{
  background: #fffaf8;
}
section#funcSec div.moreFunc table tr:first-child th,
section#funcSec div.moreFunc table tr:first-child td{
  border-top: none;
}

section#funcSec div.moreFunc>p{
  font-size: 12px;
  text-align: right;
  padding-top: 5px;
}
section#funcSec .moreTable{
  margin: 30px auto 0;
  width: 350px;
}
section#funcSec .moreTable a{
  display: block;
  width: 350px;
  line-height: 58px;
  border: 2px solid #087efe;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
}
section#funcSec .moreTable a:hover{
  background: #f2f2f2;
  text-decoration: none;
}
section#funcSec .moreTable a.close{display: none;}
section#funcSec .moreTable.open a.open{display: none;}
section#funcSec .moreTable.open a.close{display: block;}

section#funcSec .moreTable a.open::before{
  left:auto;
  top: -5px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #087efe;
  border-left: 2px solid #087efe;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
section#funcSec .moreTable a.close::before{
  left:auto;
  top: 5px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #087efe;
  border-right: 2px solid #087efe;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


@media screen and (max-width: 767px) {
  section#funcSec{
    padding: 25px 0;
  }
  section#funcSec h2{
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
  }
  section#funcSec>div{
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  section#funcSec table{
    border: 1px solid #999;
    table-layout: fixed;
  }
  section#funcSec table th,
  section#funcSec table td{
    padding: 5px 8px;
  }
  section#funcSec table th{
    font-size: 12px;
    width: 40%;
    max-width: 80px;
    padding-right: 25px;
  }
  section#funcSec table td{
    font-size: 11px;
  }
  section#funcSec table tr.paid th span:after{
    right: -20px;
    width: 18px;
    margin-top: -8px;
  }


  section#funcSec div.moreFunc>p{
    font-size: 10px;
    padding-top: 3px;
  }
  section#funcSec .moreTable{
    margin: 20px auto 0;
    width: 70%;
  }
  section#funcSec .moreTable a{
    display: block;
    width: 100%;
    line-height: 30px;
    border: 1px solid #087efe;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
  }
  section#funcSec .moreTable a.open::before{
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #087efe;
    border-left: 1px solid #087efe;
  }
  section#funcSec .moreTable a.close::before{
    width: 6px;
    height: 6px;
    border-top: 1px solid #087efe;
    border-right: 1px solid #087efe;
  }
}


/* ---------------------------
	PLAN
--------------------------- */
#PLAN{
  padding: 85px 0 70px;
}
#PLAN h2{
  font-size: 29px;
  text-align: center;
  margin-bottom: 40px;
}
#PLAN h2+p{
  margin-bottom: 40px;
  text-align: center;
}
#PLAN ul#planList{
  overflow: hidden;
  width: 970px;
  margin: 0 auto 15px;
}
#PLAN #planList>li{
  float: left;
  width: 314px;
}
#PLAN #planList>li~li{
  margin-left: 10px;
}

#PLAN .balloon{
  position: relative;
  display: inline-block;
  padding: 15px;
  margin-bottom: 30px;
  color: #555;
  background: #FFF;
  border: solid 2px #808080;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#PLAN .balloon:before{
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  margin-left: -16px;
  border: 17px solid transparent;
  border-top: 17px solid #FFF;
  z-index: 2;
  transform: scaleX(0.7);
}

#PLAN .balloon:after{
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  margin-left: -17px;
  border: 18px solid transparent;
  border-top: 18px solid #808080;
  z-index: 1;
  transform: scaleX(0.7);
}

#PLAN div.planBox{
  border: 1px solid #808080;
  border-radius: 8px;
  background: #e6e7e8;
}
#PLAN #plan3 div.planBox{
  background: #fff;
}
#PLAN div.planBox h3{
  background: #ec1c24;
  text-align: center;
  font-weight: bold;
  line-height: 42px;
  border-radius: 6px 6px 0 0;
  color: #fff;
}
#PLAN div.planBox>div{
  background: #fff;
  border-radius: 8px;
}
#PLAN div.planBox>div>p{
  text-align: center;
  font-weight: bold;
}
#PLAN .priceNote{
  padding: 20px 0 20px;
  line-height: 20px;
}
#PLAN .priceNote .price{
  padding-left:10px;
}
#PLAN .priceNote .price img{
  height: 27px;
  width: auto;
}
#PLAN .initNote{
  padding-bottom: 25px;
  line-height: 14px;
  font-size: 13px;
}
#PLAN ul#planList li#plan1 .initNote{
  font-size: 16px;
}
#PLAN .initNote span.price{
  padding-left:10px;
}
#PLAN .initNote span.price img{
  height: 19px;
  width: auto;
}
#PLAN span.unit{
  padding-left: 5px;
  font-size: 15px;
}
#PLAN span.tax{
  font-size: 12px;
}

#PLAN ul.innerList{
  margin-bottom: 20px;
}
#PLAN ul.innerList li{
  padding: 0 20px;
  background: #fff;
}
#PLAN ul.innerList li p{
  border-top: 1px dotted #808080;
  line-height: 40px;
  position: relative;
  padding-left: 5px;
}
#PLAN ul.innerList li:last-child p{
  border-bottom: 1px dotted #808080;
}
#PLAN ul.innerList li p:after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 3px;
  width: 12px;
  height: 12px;
  margin-top: -9px;
  border: 3px solid #ec1c24;
  border-radius: 50%;
}
#PLAN ul.innerList li.non{
  background: #e6e7e8;
  color: #999;
}

#PLAN ul.innerList li.non p::after{
  display: none;
}
#PLAN ul.indentList{
  width: 950px;
  margin: 0 auto;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  #PLAN{
    padding: 35px 10px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #PLAN h2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  #PLAN h2+p{
    margin-bottom: 20px;
  }
  #PLAN h2+p span{
    display: inline-block;
    text-align: left;
  }
  #PLAN div#planListWrap{
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  #PLAN ul#planList{
    overflow: hidden;
    width: 590px;
    margin: 0 auto 15px;
  }
  #PLAN #planList>li{
    float: left;
    width: 192px;
  }
  #PLAN #planList>li~li{
    margin-left: 5px;
  }

  #PLAN .balloon{
    padding: 10px;
    margin-bottom: 15px;
    border: solid 1px #808080;
    border-radius: 8px;
  }

  #PLAN .balloon:before{
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 8px solid #FFF;
  }

  #PLAN .balloon:after{
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    margin-left: -9px;
    border: 9px solid transparent;
    border-top: 9px solid #808080;
  }

  #PLAN div.planBox{
    border-radius: 8px;
  }
  #PLAN div.planBox h3{
    line-height: 25px;
    border-radius: 7px 7px 0 0;
    color: #fff;
  }
  #PLAN div.planBox>div{
    background: #fff;
    border-radius: 8px;
  }
  #PLAN div.planBox>div>p{
    text-align: center;
    font-weight: bold;
  }
  #PLAN .priceNote{
    padding: 10px 0 10px;
    line-height: 15px;
  }
  #PLAN .priceNote .price{
    padding-left:5px;
  }
  #PLAN .priceNote .price img{
    height: 16px;
    width: auto;
  }
  #PLAN .initNote{
    padding-bottom: 12px;
    line-height: 10px;
    font-size: 11px;
  }
  #PLAN ul#planList li#plan1 .initNote{
    font-size: 16px;
  }
  #PLAN .initNote span.price{
    padding-left:10px;
  }
  #PLAN .initNote span.price img{
    height: 12px;
    width: auto;
  }
  #PLAN span.unit{
    padding-left: 5px;
    font-size: 11px;
  }
  #PLAN span.tax{
    font-size: 10px;
  }

  #PLAN ul.innerList{
    margin-bottom: 10px;
  }
  #PLAN ul.innerList li{
    padding: 0 10px;
  }
  #PLAN ul.innerList li p{
    line-height: 30px;
    padding-left: 5px;
  }
  #PLAN ul.innerList li p:after{
    width: 8px;
    height: 8px;
    margin-top: -7px;
    border: 2px solid #ec1c24;
  }
  #PLAN ul.indentList{
    width: 100%;
    font-size: 11px;
  }
}


/* ---------------------------
	ACCESORIES
--------------------------- */

#ACCESORIES{
  background: #f2f2f2;
  padding: 75px 0 65px;
}
#ACCESORIES h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 25px;
}
#ACCESORIES>div{
  width: 970px;
  margin: 0 auto;
}
#ACCESORIES .accNote{
  background: #fff;
  border: 1px solid #ccc;
  color: #999;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  margin-bottom: 45px;
}
#ACCESORIES h3{
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}
#ACCESORIES .note{
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

#ACCESORIES div.accSlideWrap{
  width: 1028px;
  margin-left: -29px;
  margin-bottom: 90px;
}

#ACCESORIES div.accSlideWrap .img{
  margin-bottom: 15px;
}
#ACCESORIES div.accSlideWrap .spec{
  width: 260px;
  text-align: left;
  margin: 0 auto;
  font-size: 14px;
}

#ACCESORIES .slick-slide img{
  margin: 0 auto;
  width: 280px;
}

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

  #ACCESORIES{
    padding: 25px 10px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #ACCESORIES h2{
    font-size: 15px;
    margin-bottom: 12px;
  }
  #ACCESORIES>div{
    width: 300px;
    margin: 0 auto;
  }
  #ACCESORIES .accNote{
    line-height: 1.7;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 8px;
  }
  #ACCESORIES h3{
    text-align: center;
    font-size: 13px;
    margin-bottom: 10px;
  }
  #ACCESORIES .note{
    text-align: center;
    font-size: 10px;
    margin-bottom: 15px;
  }

  #ACCESORIES div.accSlideWrap{
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }

  #ACCESORIES div.accSlideWrap .img{
    margin-bottom: 15px;
  }
  #ACCESORIES div.accSlideWrap .spec{
    width: 200px;
    font-size: 11px;
  }

  #ACCESORIES .slick-slide img{
    margin: 0 auto;
    width: 200px;
  }

}



/*-------------- ACCESORIES slide ---------------------*/


#ACCESORIES div.accSlideWrap .slick-prev{
  top: 120px;
  left: 6px;
  z-index: 999;
}
#ACCESORIES div.accSlideWrap .slick-next{
  top: 120px;
  right: 6px;
}
#ACCESORIES div.accSlideWrap .slick-prev:before,
#ACCESORIES div.accSlideWrap .slick-next:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#ACCESORIES div.accSlideWrap .slick-next:before{
  left: 13px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#ACCESORIES div.accSlideWrap .slick-prev:before{
  left: 20px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#ACCESORIES div.accSlideWrap .slick-dots {
    bottom: -55px;
}
#ACCESORIES div.accSlideWrap .slick-dots li{
  margin: 0;
}
#ACCESORIES div.accSlideWrap .slick-dots li button {
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
}
#ACCESORIES div.accSlideWrap .slick-dots li button:before {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    content: '';
    display: block;
    background: #fff;
    border: 1px solid #808080;
    border-radius: 50%;
}
#ACCESORIES div.accSlideWrap .slick-dots li.slick-active button:before {
  background: #999;
}

@media screen and (max-width: 767px) {
  #ACCESORIES div.accSlideWrap .slick-prev,
  #ACCESORIES div.accSlideWrap .slick-next{
    width: 23px;
    height: 23px;
  }
  #ACCESORIES div.accSlideWrap .slick-prev{
    top: 85px;
    left: 5px;
  }
  #ACCESORIES div.accSlideWrap .slick-next{
    top: 85px;
    right: 5px;
  }

  #ACCESORIES div.accSlideWrap .slick-next:before{
    left: 7px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  #ACCESORIES div.accSlideWrap .slick-prev:before{
    left: 10px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  #ACCESORIES div.accSlideWrap .slick-dots {
      bottom: -55px;
  }
  #ACCESORIES div.accSlideWrap .slick-dots li{
    margin: 0;
  }
  #ACCESORIES div.accSlideWrap .slick-dots li button {
      width: 20px;
      height: 20px;
  }
  #ACCESORIES div.accSlideWrap .slick-dots li button:before {
      top: 4px;
      left: 4px;
      width: 8px;
      height: 8px;
      border: 1px solid #808080;
  }
}

/*-------------- ACCESORIES slide end---------------------*/

/* ---------------------------
	REGISTRATION
--------------------------- */
#REGISTRATION{
  padding: 65px 0;
}
#REGISTRATION h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 80px;
}
#REGISTRATION>div{
  width: 970px;
  margin: 0 auto 65px;
  overflow: hidden;
}

#REGISTRATION div.noteBox{
  float: left;
  width: 250px;
  padding-top: 20px;
}

#REGISTRATION h3{
  margin-bottom: 50px;
  width: 84px;
}
#REGISTRATION h4{
  font-size: 22px;
  margin-bottom: 10px;
}
#REGISTRATION .note{
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}
#REGISTRATION .link img{
  height: 50px;
  width: auto;
}
#REGISTRATION div.slideWrap{
  float: right;
  width: 654px;
  height: 390px;
  padding: 0 0 0 70px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#REGISTRATION .entryNote{
  width: 950px;
  margin: 0 auto;
  line-height: 1.5;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  #REGISTRATION{
    padding: 30px 0;
  }
  #REGISTRATION h2{
    font-size: 15px;
    margin-bottom:20px;
  }
  #REGISTRATION>div{
    width: 100%;
    margin: 0 auto 20px;
  }

  #REGISTRATION div.noteBox{
    float: none;
    width: 100%;
    padding-top: 0;
    overflow: hidden;
    width: 244px;
    margin: 0 auto;
  }

  #REGISTRATION h3{
    float: left;
    width: 35px;
    margin-bottom: 5px;
    padding-top: 5px;
  }
  #REGISTRATION div.noteBox>div{
    float: right;
    width: 190px;
  }
  #REGISTRATION h4{
    font-size: 14px;
    margin-bottom: 5px;
  }
  #REGISTRATION .note{
    font-size: 10px;
    margin-bottom: 5px;
  }
  #REGISTRATION .link img{
    height: 22px;
    width: auto;
  }
  #REGISTRATION div.slideWrap{
    float: none;
    width: 300px;
    margin: 0 auto;
    height: 210px;
    padding: 20px 0 0 0;
  }
  #REGISTRATION .entryNote{
    width: 100%;
    padding: 0 10px;
    font-size: 11px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/*-------------- C slide ---------------------*/
#REGISTRATION div.slideWrap{
background: url(../img/pad_base.png) 108px 0 no-repeat;
}
#REGISTRATION div.slideWrap ul.slick-slider{
  width: 398px;
  height: 300px;
  margin-left: 80px;
  margin-top: 20px;
}
#REGISTRATION div.slideWrap ul.slick-slider li img{
  width: 398px;
}
#REGISTRATION .slick-prev{
  margin-top: -26px;
  left: -105px;
}
#REGISTRATION .slick-next{
  margin-top: -26px;
  right: -100px;
}

#REGISTRATION .slick-prev:before,
#REGISTRATION .slick-next:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#REGISTRATION .slick-next:before{
  left: 13px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#REGISTRATION .slick-prev:before{
  left: 20px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#REGISTRATION .slick-dots {
    bottom: -55px;
}
#REGISTRATION .slick-dots li{
  margin: 0;
}
#REGISTRATION .slick-dots li button {
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
}
#REGISTRATION .slick-dots li button:before {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    content: '';
    display: block;
    background: #fff;
    border: 1px solid #808080;
    border-radius: 50%;
}
#REGISTRATION .slick-dots li.slick-active button:before {
  background: #999;
}

@media screen and (max-width: 767px) {
  /*
  #REGISTRATION div.slideWrap ul{
    width: 244px;
    margin: 0 auto;
  }
  #REGISTRATION div.slideWrap li.slick-slide{
    padding: 0 10px;
  }
  #REGISTRATION div.slideWrap li img{
    width: 224px;
  }
  #REGISTRATION .slick-prev,
  #REGISTRATION .slick-next{
    width: 23px;
    height: 23px;
  }
  #REGISTRATION .slick-prev{
    margin-top: -13px;
    left: -30px;
  }
  #REGISTRATION .slick-next{
    margin-top: -13px;
    right: -30px;
  }
  */


    #REGISTRATION div.slideWrap{
    background: url(../img/pad_base.png) center 20px no-repeat;
    -webkit-background-size: 213px auto;
    background-size: 213px auto;
    }
    #REGISTRATION div.slideWrap ul.slick-slider{
      width: 176px;
      height: 133px;
      margin-left: 62px;
      margin-top: 10px;
    }
    #REGISTRATION div.slideWrap ul.slick-slider li img{
      width: 176px;
    }

    #REGISTRATION .slick-prev,
    #REGISTRATION .slick-next{
      width: 23px;
      height: 23px;
    }
    #REGISTRATION .slick-prev{
      margin-top: -13px;
      left: -50px;
    }
    #REGISTRATION .slick-next{
      margin-top: -13px;
      right: -50px;
    }









  #REGISTRATION .slick-next:before{
    left: 7px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  #REGISTRATION .slick-prev:before{
    left: 10px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  #REGISTRATION .slick-dots {
      bottom: -30px;
  }
  #REGISTRATION .slick-dots li{
    width: 15px;
    height: 15px;
  }
  #REGISTRATION .slick-dots li button {
      width: 20px;
      height: 20px;
      padding: 0;
      cursor: pointer;
      color: transparent;
      outline: none;
  }
  #REGISTRATION .slick-dots li button:before {
      top: 2px;
      left: 2px;
      width: 4px;
      height: 4px;
  }
}

/*-------------- C slide end---------------------*/




/* ---------------------------
	securitySec
--------------------------- */
section#securitySec{
  width: 100%;
  background: #f2f2f2;
  padding: 40px 0 ;
}

section#securitySec h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 40px;
}

section#securitySec>ul{
  width: 970px;
  margin: 0 auto;
  overflow: hidden;
}
section#securitySec>ul li{
  float: left;
  width: 460px;
  margin-bottom: 35px;
}
section#securitySec>ul li:nth-child(2n){
  float: right;
}
section#securitySec>ul li h3{
  font-size: 18px;
  margin-bottom: 10px;
}
section#securitySec>ul li>div{
  overflow: hidden;
}
section#securitySec>ul li>div .img{
  width: 110px;
  float: left;
}
section#securitySec>ul li>div .note{
  width: 335px;
  float: right;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section#securitySec{
    padding: 20px 10px ;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  section#securitySec h2{
    font-size: 15px;
    margin-bottom: 20px;
  }

  section#securitySec>ul{
    width: 100%;
  }
  section#securitySec>ul li{
    float: none;
    width: 100%;
    margin-bottom: 25px;
  }
  section#securitySec>ul li:nth-child(2n){
    float: none;
  }
  section#securitySec>ul li h3{
    font-size: 12px;
    margin-bottom: 5px;
  }
  section#securitySec>ul li>div .img{
    width: 70px;
  }
  section#securitySec>ul li>div .note{
    width: calc( 100% - 80px ) ;
    float: right;
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ---------------------------
	FAQ
--------------------------- */
#FAQ{
  padding: 60px 0 70px;
}
#FAQ h2{
  text-align: center;
  font-size: 29px;
  margin-bottom: 50px;
}
#FAQ ul{
  width: 970px;
  margin: 0 auto 65px;
  overflow: hidden;
  border-top: 1px dotted #bbbcbe;
}
#FAQ ul li{
  border-bottom: 1px dotted #bbbcbe;
}
#FAQ ul .qst{
  cursor: pointer;
}
#FAQ ul .qst p{
  padding: 15px 60px 15px 50px;
  min-height: 25px;
}
#FAQ ul .qst p:before{
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon_q.png) 0 0 no-repeat;
  -webkit-background-size: 25px auto;
  background-size: 25px auto;
  vertical-align: middle;
  margin-left: -40px;
  padding-right: 15px;
}
#FAQ ul .qst::before{
  left:auto;
  top: -5px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #c6ccd6;
  border-right: 3px solid #c6ccd6;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: 0.5s all;
}
#FAQ ul .qst.open::before{
  top: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


#FAQ ul .ans{
  background: #eee;
  display: none;
}
#FAQ ul .qst.open+.ans{
  display: block;
}

#FAQ ul .ans p{
  padding: 15px 10px 15px 50px;
  min-height: 25px;
}
#FAQ ul .ans p:before{
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon_a.png) 0 0 no-repeat;
  -webkit-background-size: 25px auto;
  background-size: 25px auto;
  vertical-align: middle;
  margin-left: -40px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  #FAQ{
    padding: 30px 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #FAQ h2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  #FAQ ul{
    width: 100%;
    margin: 0 auto 30px;
  }
  #FAQ ul .qst p{
    padding: 10px 30px 10px 25px;
    min-height: 20px;
    font-size: 12px;
  }
  #FAQ ul .qst p:before{
    width: 20px;
    height: 20px;
    background: url(../img/icon_q.png) 0 0 no-repeat;
    -webkit-background-size: 15px auto;
    background-size: 15px auto;
    margin-left: -20px;
    padding-right: 0;
  }
  #FAQ ul .qst::before{
    left:auto;
    top: -5px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #c6ccd6;
    border-right: 2px solid #c6ccd6;
  }
  #FAQ ul .ans p{
    padding: 10px 30px 10px 25px;
    min-height: 20px;
    font-size: 12px;
  }
  #FAQ ul .ans p:before{
    width: 20px;
    height: 20px;
    background: url(../img/icon_a.png) 0 0 no-repeat;
    -webkit-background-size: 15px auto;
    background-size: 15px auto;
    margin-left: -20px;
    padding-right: 0;
  }
}

/* ---------------------------
	CONTACT
--------------------------- */
#CONTACT{
  background: #f2f2f2;
  padding: 80px 0 60px;
}
#CONTACT h2{
  text-align: center;
  font-size: 30px;
  margin-bottom: 60px;
}
#CONTACT dl{
  width: 770px;
  margin: 0 auto;
}
#CONTACT dt.error{
  color: #ea2227;
}

#CONTACT .errorNote{
  color: #ea2227;
  font-size: 14px;
}
#CONTACT dd{
  margin-bottom: 20px;
}

#CONTACT .prvLink{
  text-align: center;
  margin-bottom: 20px;
}

.submitBtn button{
  width: 350px;
  margin: 0 auto;
  display: block;
  background: #f6921e;
  line-height: 56px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  transition: 0.5s all;
  border-radius: 5px;
  cursor: pointer;
}
.submitBtn button::before{
  left:auto;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.5s all;
}
.submitBtn button:hover{
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #CONTACT{
    padding: 30px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #CONTACT h2{
    font-size: 15px;
    margin-bottom: 30px;
  }
  #CONTACT dl{
    width: 100%;
  }
  #CONTACT .errorNote{
    font-size: 11px;
  }
  #CONTACT dd{
    margin-bottom: 10px;
  }

  #CONTACT .prvLink{
    margin-bottom: 10px;
  }

  .submitBtn button{
    width: 75%;
    margin: 0 auto;
    line-height: 36px;
    font-size: 12px;
    border-radius: 3px;
  }
  .submitBtn button::before{
    left:auto;
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/*--------- modal window --------------*/

#modalWin{
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
  display: none;
}

#modalWin div.inner{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 970px;
	margin-left: -485px;
	background: #fff;
  transform: translateY(-50%);
  padding: 45px 0 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.5s all;
}
#modalWin div.inner h2{
  font-size: 25px;
  text-align: center;
  margin-bottom: 50px;
}

#modalWin div.inner table{
  width: 770px;
  margin: 0 auto 40px;
  border-collapse: collapse;
}
#modalWin div.inner table th,
#modalWin div.inner table td{
  padding: 15px;
  text-align: left;
  font-weight: normal;
  font-size: 14px;
  border: 2px solid #ccc;
  vertical-align: top;
}
#modalWin div.inner table th{
  border-left: none;
  width: 180px;
}
#modalWin div.inner table td{
  border-right: none;
}
#modalWin div.inner .btnClose{
  width: 44px;
  height: 44px;
  position: absolute;
  z-index: 100001;
  top: -22px;
  right: -22px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
#modalWin div.inner .btnClose img{
transition: 0.5s all;
}
#modalWin div.inner .btnClose:hover img{
  opacity: 0.7 ;
}

#modalWin div.inner.finish{
  display: none;
  padding: 60px;
}
#modalWin div.inner.finish h2 span{
  display: inline-block;
  position: relative;
}
#modalWin div.inner.finish h2 span:before{
  position: absolute;
  left: -30px;
  top: 20px;
  z-index: 100002;
  content: "";
  width: 25px;
  height: 10px;
  margin-left: -10px;
  margin-top: -10px;
  display: inline-block;
  border-bottom: 6px solid #e60012;
  border-left: 6px solid #e60012;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#modalWin div.inner.finish div.notes{
  margin-bottom: 90px;
  font-size: 14px;
}
#modalWin div.inner.finish div.notes p{
  margin-bottom: 2em;
}
.btnEnd{
  width: 350px;
  margin: 0 auto;
}
.btnEnd a{
  width: 350px;
  display: block;
  border: 1px solid #f6921e;
  line-height: 56px;
  font-size: 18px;
  color: #f6921e;
  font-weight: bold;
  transition: 0.5s all;
  border-radius: 5px;
  text-align: center;
}
.btnEnd a:hover{
  background: #f2f2f2;
  text-decoration: none;
}

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

  #modalWin{
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
  }

  #modalWin div.inner{
  	left: 5%;
  	width: 90%;
  	margin-left: 0;
    padding: 30px 10px;
  }
  #modalWin div.inner h2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  #modalWin div.inner table{
    width: 100%;
    margin: 0 auto 20px;
  }
  #modalWin div.inner table th,
  #modalWin div.inner table td{
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ccc;
  }
  #modalWin div.inner table th{
    border-left: none;
    width: 28%;
  }
  #modalWin div.inner table td{
    border-right: none;
  }
  #modalWin div.inner .btnClose{
    width: 22px;
    height: 22px;
    top: -11px;
    right: -11px;
  }

  #modalWin div.inner.finish{
    display: none;
    padding:30px 10px;
  }
  #modalWin div.inner.finish h2 span:before{
    position: absolute;
    left: -15px;
    top: 10px;
    width: 13px;
    height: 5px;
    margin-left: -5px;
    margin-top: -5px;
    display: inline-block;
    border-bottom: 3px solid #e60012;
    border-left: 3px solid #e60012;
  }

  #modalWin div.inner.finish div.notes{
    margin-bottom: 20px;
    font-size: 11px;
  }
  #modalWin div.inner.finish div.notes p{
    margin-bottom: 2em;
  }
  .btnEnd{
    width: 75%;
  }
  .btnEnd a{
    width: 100%;
    line-height: 36px;
    font-size: 12px;
    color: #f6921e;
    border-radius: 3px;
  }
}

/* ---------------------------
	sumSec
--------------------------- */
section#sumSec{
  width: 100%;
  height: 480px;
  background: url(../img/btm_img.jpg) center 0 no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

section#sumSec>div{
  width: 970px;
  margin: 0 auto;
  position: relative;
}

section#sumSec .inner{
  position: absolute;
  top: 110px;
  left: 50px;
  z-index: 200;
  color: #fff;
}

section#sumSec h2{
  font-size: 30px;
  margin-bottom: 40px;
}
section#sumSec .link img{
  height: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  section#sumSec{
    width: 100%;
    height: 222px;
    background: url(../img/btm_img.jpg) center 0 no-repeat;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
  }

  section#sumSec>div{
    width: 100%;
  }

  section#sumSec .inner{
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -150px;
  }

  section#sumSec h2{
    font-size: 15px;
    margin-bottom: 20px;
  }
  section#sumSec .link img{
    height: 22px;
  }
}


/**/