/*customer css */
body{
	padding-top: 70px;
}

/*==========================*/
/*  PC & SP  */
/*==========================*/
.pc{
  display: inline;
}

.sp{
  display: none;
}


@media(max-width: 767px){
   .sp{
    display: inline;
  }

  .pc{
    display: none;
  }
}


/*==========================*/
/*  pagetop  */
/*==========================*/
#back-to-top {
  position: fixed;
  bottom: 0;
  right: 10px;
  font-size: 60%;
  z-index: 100;
}

#back-to-top a {
  background-color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: #fff;
  line-height: 14px;
  padding: 10px 10px 5px 10px;
  text-align: center;
  display: block;
  border-radius: 5px 5px 0 0;
}

#back-to-top a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.8);
}



/*==========================*/
/*  Footer  */
/*==========================*/
.footer{
  background: #59B29A;
  padding: 30px 0;
}

.footer .copyright{
  color: #fff;
  font-size: 14px;
}

.footer-menu{
  background: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-menu a{
  color: #88d8c3;
  font-size: 12px;
}

.footer-menu a:hover{
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer{
    padding: 20px 0;
  }

  .footer .copyright{
    font-size: 12px;
  }

  .footer-menu{
    padding: 20px 10px;
  }

  .footer-menu a{
    color: #88d8c3;
    font-size: 10px;
  }
}

/*==========================*/
/*  Well  */
/*==========================*/
.well {
  background: #ffffff;
  border-radius: 30px;
  margin: 0 0 30px 0;
  padding: 40px;
  line-height: 26px;
  height: auto;
  border: 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
}

.well-gray {
  background: #f1f1f1;
  border-radius: 30px;
  margin: 0 0 30px 0;
  padding: 40px;
  line-height: 26px;
  height: auto;
  border: 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
}

@media (max-width: 767px) {
  .well {
    background: #ffffff;
    border-radius: 30px;
    margin: 0 0 30px 0;
    padding: 20px;
    line-height: 26px;
    height: auto;
    border: 0;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
  }
  .well-gray {
    background: #f1f1f1;
    border-radius: 30px;
    margin: 0 0 30px 0;
    padding: 20px;
    line-height: 26px;
    height: auto;
    border: 0;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.125);
  }
}

/*==========================*/
/*  List-group-item  */
/*==========================*/
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #59B29A;
  border-color: #59B29A;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #59B29A;
}


/*==========================*/
/*  Breadcrumb  */
/*==========================*/
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 0px;
  list-style: none;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li a{
  color: #59B29A;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}

@media(max-width: 767px){
  .breadcrumb {
    margin-top: 0px;
    padding: 3px 15px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-wrap: break-word;
  }
}

/*==========================*/
/*  pagination  */
/*==========================*/
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 40px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 0;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  line-height: 50px;
  color: #59B29A;
  text-decoration: none;
  border-radius: 40px;
  background-color: #fff;
  border: 1px solid #59B29A;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin: 0 5px;
  border-radius: 40px;
  border-radius: 40px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  margin: 0 5px;
  border-radius: 40px;
  border-radius: 40px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #59B29A;
  border-color: #59B29A;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #59B29A;
  border-color: #59B29A;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #ddd;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

@media(max-width: 767px){
  .pagination > li > a,
  .pagination > li > span {
    padding: 0;
    width: 28px;
    height: 28px;
    margin: 0 2px;
    line-height: 28px;
    font-size: 10px;
  }
  .pagination > li:first-child > a,
  .pagination > li:first-child > span {
    margin: 0 2px;
  }
  .pagination > li:last-child > a,
  .pagination > li:last-child > span {
    margin: 0 2px;
  }
}


/*==========================*/
/*  Btn  */
/*==========================*/
.btn-next {
  color: #fff;
  background-color: #59B29A;
  border-color: #59B29A;
  border-radius: 3px;
}

.btn-next:hover,
.btn-next:focus,
.btn-next:active,
.btn-next.active,
.open .dropdown-toggle.btn-next {
  color: #ffffff;
  background-color: #79C9B2;
  border-color: #79C9B2;
}

.btn-next:active,
.btn-next.active,
.open .dropdown-toggle.btn-next {
  background-image: none;
}

.btn-back {
  color: #59B29A;
  background-color: #fff;
  border-color: #59B29A;
  border-radius: 3px;
}

.btn-back:hover,
.btn-back:focus,
.btn-back:active,
.btn-back.active,
.open .dropdown-toggle.btn-back {
  color: #79C9B2;
  background-color: #fff;
  border-color: #79C9B2;
}

.btn-back:active,
.btn-back.active,
.open .dropdown-toggle.btn-back {
  background-image: none;
}


/*==========================*/
/*  Form group  */
/*==========================*/
.form-title{
  background: #f1f1f1;
  margin: 60px 0 30px;
  padding: 15px;
  text-align: center;
  line-height: bold;
  font-size: 24px;
}

.form-group{
  margin: 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #dddddd;
  overflow: hidden;
}

.form-group .control-label{
/*  background: #f1f1f1;*/
  padding-top: 20px;
  padding-bottom: 1000px;
  margin-bottom: -1000px;
  text-align: left;
}

.form-group .col-sm-8,
.form-group .col-sm-9{
  padding: 20px;
}

.form-group.noborder{
  border: 0;
}

.form_container{
  margin: 20px;
}
select.input-lg {
    height: 46px;
    line-height: 18px;
}
.input-lg {
    height: 46px;
    padding: 10px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 0px;
}
/*==========================*/
/*  Login Form  */
/*==========================*/
.form-signin {
  max-width: 330px;
/*  min-height: 300px;*/
  padding: 15px 0px;
  margin: 0 auto;
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}

.form-signin h2 {
  margin: 0px;
  padding: 0px;
  font-size: 20px;
}

.form-signin .checkbox {
  font-weight: normal;
}

.form-signin .form-control {
  position: relative;
  font-size: 16px;
  height: auto;
  padding: 10px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.form-signin .form-control:focus {
  z-index: 2;
}

.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form-signin .com {
  margin: 10px auto;
  font-size: 12px;
  color: #666666;
}


/*==========================*/
/*  Form  */
/*==========================*/
.form-navi {
  margin-bottom: 20px;
}

.form-navi span {
  margin-right: 10px;
  font-size: 18px;
}

.form-navi .navi-box {
  background: #fff;
  margin-bottom: 10px;
  padding: 8px;
  color: #ccc;
  text-align: center;
  border-radius: 6px;
  border: 2px solid #fff;
}


.form-navi .navi-active {
  background: #d9eaec;
  margin-bottom: 10px;
  padding: 8px;
  color: #202020;
  text-align: center;
  border-radius: 40px;
  border: 2px solid #d9eaec;
}

.input-small {
  width: 180px;
  display: inline-block;
}

.input-birth {
  width: 80px;
  display: inline-block;
}

.input-birth-y {
  width: 120px;
  display: inline-block;
}

.form-rule{
  background: #fff;
  border: solid 1px #ccc;
  width: 100%;
  height: 150px;
  padding: 0.5em;
  overflow: auto;
}

.form-rule p{
  color: #666;
  font-size: 14px;
  font-weight: normal;
}

.form-rule02{
  background: #fff;
  border: solid 1px #ccc;
  width: 100%;
  height: 450px;
  padding: 10px;
  overflow: auto;
}

.qus{
  margin: 40px 0 20px;
  padding: 10px;
  background: #f1f1f1;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .form-navi {
    margin-bottom: 10px;
  }

  .form-navi span {
    margin-right: 10px;
    font-size: 16px;
  }

  .form-navi .navi-box {
    background: #fff;
    margin-bottom: 5px;
    padding: 5px;
    font-size: 14px;
  }


  .form-navi .navi-active {
    background: #d9eaec;
    margin-bottom: 5px;
    padding: 5px;
    font-size: 14px;
  }

  .input-small {
    width: 120px;
    display: inline-block;
  }

  .input-birth {
    width: 75px;
    display: inline-block;
  }

  .input-birth-y {
    width: 80px;
    display: inline-block;
  }

  .form-rule{
    height: 150px;
    font-size: 12px;
  }

  .form-rule02{
    height: 350px;
    font-size: 12px;
    line-height: 18px;
  }
  .form-rule02 h2{
    font-size: 18px;
    line-height: 24px;
  }
  .form-rule02 h3{
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
  }
}


.form-error {
  color: #ff0000;
}

#img_url {
  display:none;
}

.imgth {
  margin-bottom: 10px;
  text-align: center;
}

.imgth i{
  font-size: 60px;
  line-height: 60px;
}

.alert img{
  max-width: 100px;
}


/*==========================*/
/*  Margin  */
/*==========================*/
.top5{
  margin-top: 5px;
}
.right5{
  margin-right: 5px;
}
.bottom5{
  margin-bottom: 5px;
}
.left5{
  margin-left: 5px;
}

.top10{
  margin-top: 10px;
}
.right10{
  margin-right: 10px;
}
.bottom10{
  margin-bottom: 10px;
}
.left10{
  margin-left: 10px;
}

.top15{
  margin-top: 15px;
}
.right15{
  margin-right: 15px;
}
.bottom15{
  margin-bottom: 15px;
}
.left15{
  margin-left: 15px;
}

.top20{
  margin-top: 20px;
}
.right20{
  margin-right: 20px;
}
.bottom20{
  margin-bottom: 20px;
}
.left20{
  margin-left: 20px;
}

.top25{
  margin-top: 25px;
}
.right25{
  margin-right: 25px;
}
.bottom25{
  margin-bottom: 25px;
}
.left25{
  margin-left: 25px;
}

.top30{
  margin-top: 30px;
}
.right30{
  margin-right: 30px;
}
.bottom30{
  margin-bottom: 30px;
}
.left30{
  margin-left: 30px;
}

.top40{
  margin-top: 40px;
}
.right40{
  margin-right: 40px;
}
.bottom40{
  margin-bottom: 40px;
}
.left40{
  margin-left: 40px;
}

.top50{
  margin-top: 50px;
}
.right50{
  margin-right: 50px;
}
.bottom50{
  margin-bottom: 50px;
}
.left50{
  margin-left: 50px;
}

.top-50{
  margin-top: -50px;
}

.top90{
  margin-top: 90px;
}
@media (max-width: 640px){
  .top90{
    margin-top: 40px;
  }
}


.top-30{
  margin-top: -30px;
}

.top-100{
  margin-top: -200px;
}

/*==========================*/
/*  Color  */
/*==========================*/
.white{
  color: #FFFFFF;
}
.yellow{
  color: #FFC200;
}
.red{
  color: #ED5454;
}
.blue{
  color: #009E96;
}
.green{
  color: #7EC45F;
}
.orange{
  color: #59B29A;
}
.skyblue{
  color: #00B5E1;
}
.pink{
  color: #EB6877;
}
.gray{
  color: #ddd;
}
.color-facebook {
  color: #2F477A;
}
.color-twitter {
  color: #2ca7e0;
}

.bg-new-gray{
  background: #f6f7f8;
}

.bg-gray{
  background: #fafafa;
}

.bg-yellow{
  background: #d9d459;
}

.bg-blue{
  background: #d9eaec;
}

.bg-green{
  background: #7daf3d;
}

.bg-skyblue{
  background: #3d8baf;
}

.bg-orange{
  background: #59B29A;
}

.bg-gold{
  background: #d4af37;
}

.bg-silver{
  background: #c0c0c0;
}

.bg-bronze{
  background: #cd7f32;
}

.bg-purple{
  background: #86979b;
}

.bg-brown{
  background: #ece0cb;
}