/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/*...VARIABLE...*/
#main .content .btnBox {
  padding-top: 40px;
}

#main .content .btnBox ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#main .content .btnBox ul.SP {
  display: none;
}

@media screen and (max-width: 835px) {
  #main .content .btnBox ul.PC {
    display: none;
  }
  #main .content .btnBox ul.SP {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  #main .content .btnBox ul.SP {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
  }
}

#main .content .btnBox ul .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  cursor: pointer;
  background-color: #FFF;
  font-size: 20px;
  font-weight: bold;
  margin: 0 9px 18px;
  padding: 15px 13px;
  height: 64px;
  border: 1px solid #0584C5;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main .content .btnBox ul .item img {
  width: 25px;
  margin-right: 10px;
}

#main .content .btnBox ul .item img.hvr {
  display: none;
}

@media screen and (min-width: 768px) {
  #main .content .btnBox ul .item:hover {
    background-color: #0584C5;
    color: #FFF;
  }
  #main .content .btnBox ul .item:hover img.noHvr {
    display: none;
  }
  #main .content .btnBox ul .item:hover img.hvr {
    display: block;
  }
}

@media screen and (max-width: 888px) {
  #main .content .btnBox ul .item {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  #main .content .btnBox ul .item {
    margin: 0 5px 10px;
    padding: 10px 15px;
  }
}

#main .content .inner .box {
  padding-top: 30px;
  padding-bottom: 35px;
}

#main .content .inner .box.white {
  background-color: #FFF;
}

#main .content .inner .box .head {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#main .content .inner .box .head img {
  width: 25px;
  margin-right: 20px;
}

#main .content .inner .box .head p {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  #main .content .inner .box .head p {
    font-size: 18px;
  }
}

#main .content .inner .box .table {
  margin-bottom: 30px;
}

@media screen and (max-width: 700px) {
  #main .content .inner .box .table {
    overflow-x: auto;
  }
}

#main .content .inner .box .table .tableInner {
  width: 100%;
  display: table;
}

@media screen and (max-width: 700px) {
  #main .content .inner .box .table .tableInner {
    width: 658px;
  }
}

#main .content .inner .box .table .tableInner .headingTable {
  width: 100%;
  display: table-row;
}

#main .content .inner .box .table .tableInner .headingTable h2 {
  display: table-cell;
  width: 33.3333%;
  background-color: #0584C5;
  color: #FFF;
  text-align: center;
  padding: 15px 0;
  font-size: 20px;
  font-weight: bold;
  border-left: 1px solid #EEE;
  border-top: 1px solid #EEE;
}

@media screen and (max-width: 480px) {
  #main .content .inner .box .table .tableInner .headingTable h2 {
    font-size: 18px;
  }
}

#main .content .inner .box .table .tableInner .headingTable h2:last-child {
  border-right: 1px solid #EEE;
}

#main .content .inner .box .table .tableInner .descTable {
  display: table-footer-group;
}

#main .content .inner .box .table .tableInner .descTable .roww {
  width: 100%;
  display: table-row;
  background-color: #FFF;
}

#main .content .inner .box .table .tableInner .descTable .roww p {
  width: 33.3333%;
  display: table-cell;
  background-color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid #EEE;
  border-left: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  padding: 16px 15px;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  #main .content .inner .box .table .tableInner .descTable .roww p {
    font-size: 16px;
  }
}

#main .content .inner .box .table .tableInner .descTable .roww p:last-child {
  border-right: 1px solid #EEE;
}

#main .content .inner .box .table .tableInner .descTable .roww p:hover {
  text-decoration: underline;
}

#main .content .inner .box .table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

@media screen and (max-width: 700px) {
  #main .content .inner .box .table table {
    width: 657px;
  }
}

#main .content .inner .box .table table tr th {
  padding: 15px 0;
  text-align: center;
  color: #FFF;
  background-color: #0584C5;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #EEE;
}

#main .content .inner .box .table table tr th:first-child {
  width: 150px;
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

#main .content .inner .box .table table tr th:last-child {
  width: 230px;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

@media screen and (max-width: 480px) {
  #main .content .inner .box .table table tr th {
    padding: 10px 0;
  }
}

#main .content .inner .box .table table tr td {
  background-color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #EEE;
  padding: 16px 0;
}

@media screen and (max-width: 480px) {
  #main .content .inner .box .table table tr td {
    padding: 10px 0;
  }
}

#main .content .inner .box .link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#main .content .inner .box .link a {
  font-weight: 500;
  color: #0584C5;
  font-size: 18px;
}

#main .content .inner .box .link a i {
  margin-left: 5px;
}

/*# sourceMappingURL=general.css.map */