a {
  text-decoration: none; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0; }

img {
  max-width: 100%; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

input[type="text"], input[type="password"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 0 8px;
  height: 32px; }

textarea {
  padding: 8px; }

/* For Old Broswer */
.flex-fl-left > * {
  float: left; }

.flex-fl-right > * {
  float: right; }

img, a {
  border: 0 \9; }

/* ==================*/
.fl-left {
  float: left; }

.fl-right {
  float: right; }

.txt-left {
  text-align: left; }

.txt-center {
  text-align: center; }

.txt-right {
  text-align: right; }

.txt-justify {
  text-align: justify; }

.txt-300 {
  font-weight: 300; }

.txt-400 {
  font-weight: 400; }

.txt-500 {
  font-weight: 500; }

.txt-600 {
  font-weight: 600; }

.txt-italic {
  font-style: italic; }

.txt-underline {
  text-decoration: underline; }

.txt-through {
  text-decoration: line-through; }

.txt-upper {
  text-transform: uppercase; }

.alert {
  color: red; }

.fade {
  transition: 0.4s;
  -webkit-transition: 0.4s; }

.clear {
  width: 100%;
  overflow: hidden; }

/* column */
.col-xl-1 {
  width: 8.3333%; }

.col-xl-2 {
  width: 16.6666%; }

.col-xl-3 {
  width: 25%; }

.col-xl-4 {
  width: 33.3333%; }

.col-xl-5 {
  width: 41.6666%; }

.col-xl-6 {
  width: 50%; }

.col-xl-7 {
  width: 58.3333%; }

.col-xl-8 {
  width: 66.6666%; }

.col-xl-9 {
  width: 75%; }

.col-xl-10 {
  width: 83.3333%; }

.col-xl-11 {
  width: 91.66667%; }

.col-xl-12 {
  width: 100%; }

.col-center {
  text-align: center; }
  .col-center > * {
    display: inline-block; }

/* list */
.list-xl-i2 > li {
  width: 49%; }
  .list-xl-i2 > li:nth-child(2n) {
    float:right;
    margin-right: 0; }

.list-xl-i3 > li {
  width: 32.5%;
  margin-right: 1.2%; }
  .list-xl-i3 > li:nth-child(3n) {
    margin-right: 0; }

.list-xl-i4 > li {
  width: 23%;
  margin-right: 1.2%; }
  .list-xl-i4 > li:nth-child(4n) {
    margin-right: 0; }

.list-xl-i5 > li {
  width: 19%;
  margin-right: 1.2%; }
  .list-xl-i5 > li:nth-child(5n) {
    margin-right: 0; }

.list-xl-i6 > li {
  width: calc(100% / 6 - 10px);
  margin-right: 10px; }
  .list-xl-i6 > li:nth-child(6n) {
    margin-right: 0; }

.list-xl-i2 li, .list-xl-i3 li, .list-xl-i4 li, .list-xl-i5 li, .list-xl-i6 li {
  float: left; }

/* position */
.pos-rel {
  position: relative; }

.pos-abs {
  position: absolute; }

.pos-fix {
  position: fixed; }

.list-disc {
  list-style-type: disc; }

.list-num {
  list-style-type: decimal; }

.list-disc, .list-num {
  margin: 0 0 calc(20rem / 16) 0; }
  .list-disc li, .list-num li {
    font-size: calc(16rem / 16);
    line-height: calc(26rem / 16);
    margin: 0 0 5px 25px; }
  .list-disc.list-no-margin li, .list-num.list-no-margin li {
    margin-bottom: 0; }

.img-inline {
  position: relative;
  top: 3px; }

.img-thumb {
  overflow: hidden;
  text-align: center; }
  .img-thumb img {
    display: block;
    width: 100%;
    vertical-align: middle; }
  .img-thumb.vertical img {
    width: auto;
    height: 100%;
    margin: 0 auto; }

.table-tr {
  width: 100%;
  overflow: hidden; }
  .table-tr > div {
    float: left; }

/* flex box */
.flex {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex; }

.flex-wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap; }

.flex-fl-left {
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row; }

.flex-fl-right {
  flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse; }

.flex-h-left {
  justify-content: flex-start;
  -webkit-justify-content: flex-start; }

.flex-h-right {
  justify-content: flex-end;
  -webkit-justify-content: flex-end; }

.flex-h-between {
  justify-content: space-between;
  -webkit-justify-content: space-between; }

.flex-h-center {
  justify-content: center;
  -webkit-justify-content: center; }

.flex-v-top {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }

.flex-v-bottom {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; }

.flex-v-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

/* special hidden / show classes */
.tablet-show, .mobile-show {
  display: none; }

/* waypoint */
.el-hidden {
  opacity: 0;
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px); }
  .el-hidden.el-top {
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px); }
  .el-hidden.el-bottom {
    transform: translateY(100px);
    -webkit-transform: translateY(100px); }
  .el-hidden.el-scale {
    transform: scale(0);
    -webkit-transform: scale(0); }
  .el-hidden.el-left {
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px); }
  .el-hidden.el-right {
    transform: translateX(100px);
    -webkit-transform: translateX(100px); }

.el-top, .el-bottom, .el-left, .el-right, .el-scale {
  transition: 0.4s;
  -webkit-transition: 0.4s; }

.el-timer-1 {
  transition: 0.4s !important;
  -webkit-transition: 0.4s !important; }

.el-timer-2 {
  transition: 0.6s !important;
  -webkit-transition: 0.6s !important; }

.el-timer-3 {
  transition: 0.8s !important;
  -webkit-transition: 0.8s !important; }

.el-timer-4 {
  transition: 1s !important;
  -webkit-transition: 1s !important; }

/* Custom style */
h1, .undoreset h1 {
  font-size: calc(30rem / 16);
  line-height: calc(40rem / 16);
  margin: 0 0 calc(15rem / 16) 0;
  color: #026f69; }

h2, .undoreset h2 {
  font-size: calc(24rem / 16);
  line-height: calc(36rem / 16);
  margin: 0 0 calc(10rem / 16) 0;
  font-weight: 600; }
  h2 a, .undoreset h2 a {
    color: #000;
    text-decoration: underline; }
    h2 a:hover, .undoreset h2 a:hover {
      color: #026f69; }

h3, .undoreset h3 {
  font-size: calc(18rem / 16);
  line-height: calc(30rem / 16);
  margin: 0;
  font-weight: 600;
  color: #026f69; }

p, .undoreset p {
  font-size: calc(16rem / 16);
  line-height: calc(26rem / 16);
  margin: 0 0 calc(20rem / 16) 0;
  text-align: justify; }
  p a, .undoreset p a {
    color: #000;
    text-decoration: underline; }
    p a:hover, .undoreset p a:hover {
      color: #026f69; }

.undoreset ul, .undoreset ol {
  padding-left: 0;
  margin: 10px 0 30px 0; }
.undoreset li {
  font-size: calc(16rem / 16);
  line-height: calc(26rem / 16);
  margin: 0 0 10px 0; }
.undoreset table {
  border: 1px solid #000; }
  .undoreset table td {
    border: 1px solid #000;
    padding: 5px;
    vertical-align: middle; }
.undoreset img {
  max-width: 100%; }
.undoreset ul {
  list-style-type: disc;
  margin-left: 25px; }
.undoreset ol {
  list-style-type: decimal;
  margin-left: 25px; }

.btn-more, .btn-back {
  display: inline-block;
  height: 25px;
  overflow: hidden;
  border: 1px solid #026f69;
  border-radius: 5px; }
  .btn-more span, .btn-back span {
    float: left;
    font-size: calc(14rem / 16);
    color: #026f69;
    padding: 0 15px;
    line-height: 23px;
    height: 25px;
    /*background:url('../images/icons/btn_more_m.png') repeat-x;*/
    font-weight: 600; }
  .btn-more:hover, .btn-back:hover {
    background-color: #026f69; }
    .btn-more:hover span, .btn-more:hover:before, .btn-more:hover:after, .btn-back:hover span, .btn-back:hover:before, .btn-back:hover:after {
      background-position: left bottom; }
    .btn-more:hover span, .btn-back:hover span {
      color: #fff; }

.btn-more:before {
  float: left;
  /*content:"";*/
  width: 2px;
  height: 25px;
  background: url("../images/icons/btn_more_l.png") no-repeat; }
.btn-more:after {
  float: left;
  /*content:"";*/
  width: 11px;
  height: 25px;
  background: url("../images/icons/btn_more_r.png") no-repeat; }

.btn-back:before {
  float: left;
  /*content:"";*/
  width: 11px;
  height: 25px;
  background: url("../images/icons/btn_back_l.png") no-repeat; }
.btn-back:after {
  float: left;
  /*content:"";*/
  width: 2px;
  height: 25px;
  background: url("../images/icons/btn_back_r.png") no-repeat; }

.btn-circle {
  display: inline-block;
  width: 150px;
  margin: 0 40px;
  text-align: center;
  vertical-align: top; }
  .btn-circle span {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    margin: 0 auto;
    border-radius: 30px;
    border: 2px solid #026f69;
    padding: 105px 10px 0 10px;
    color: #026f69;
    font-weight: 600;
    font-size: calc(14rem / 16); }
    .btn-circle span:before {
      content: "";
      position: absolute;
      top: 25px;
      left: calc( ( 100% - 87px ) / 2);
      width: 87px;
      height: 87px;
      background-position: left top;
      background-repeat: no-repeat; }
  .btn-circle p {
    margin-top: 10px;
    color: #000;
    line-height: 24px;
    text-align: center; }
  .btn-circle:hover span {
    background-color: #026f69;
    color: #fff; }
    .btn-circle:hover span:before {
      background-position: left bottom; }
  .btn-circle.btn-circle-color2 span {
    color: #617d21;
    border-color: #617d21; }
  .btn-circle.btn-circle-color2:hover span {
    background-color: #617d21;
    color: #fff; }
  .btn-circle.btn-circle-text2 span {
    /*padding-top:110px;*/ }
    .btn-circle.btn-circle-text2 span:before {
      /*top:25px;*/ }
  .btn-circle.btn-circle-contest span:before {
    background-image: url("../images/icons/btn_circle_contest01.png"); }
  .btn-circle.btn-circle-restaurant span:before {
    background-image: url("../images/icons/btn_circle_restaurant01.png"); }
  .btn-circle.btn-circle-vote span:before {
    background-image: url("../images/icons/btn_circle_vote01.png"); }
  .btn-circle.btn-circle-sign01 span:before {
    background-image: url("../images/icons/btn_circle_sign01.png"); }
  .btn-circle.btn-circle-sign02 span:before {
    background-image: url("../images/icons/btn_circle_sign02.png"); }

.lang-en .btn-circle p label.break {
  display: block; }

.color-green01 {
  color: #026f69; }

.color-green02 {
  color: #a0d9d3; }

.font-sm {
  font-size: calc(14rem / 16); 
  line-height:calc(20rem / 16);
}

.font-md {
  font-size: calc(16rem / 16); }

.font-lg {
  font-size: calc(24rem / 16); }

.font-xl {
  font-size: calc(30rem / 16); }

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