:root {
  /*size*/
  --h1-size:clamp(32px, calc(64vw /19.2), 64px);
  --h1-lineheight:clamp(40px, calc(72vw /19.2), 72px);
  --h1-margin:0;
  --h2-size:clamp(24px, calc(56vw /19.2), 56px);
  --h2-lineheight:clamp(32px, calc(64vw /19.2), 64px);
  --h2-margin:0 0 36px 0;
  --h3-size:clamp(18px, calc(24vw /19.2), 32px);
  --h3-lineheight:clamp(30px, calc(40vw /19.2), 48px);
  --h3-margin:0;
  --p-size:16px;
  --p-lineheight:24px;
  --p-margin:0 0 24px 0;
  /*color*/
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  cursor: pointer;
  font-family: "Roboto Condensed", "Microsoft JhengHei", sans-serif;
  background: none;
}

* {
  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;
}

select {
  /*-webkit-appearance:none;*/
}

textarea {
  padding: 8px;
}

/* For Old Broswer */
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;
}

/* 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-left: 24px;
}
.list-disc li, .list-num li {
  font-size: var(--p-size);
  line-height: var(--p-lineheight);
  color: #000;
  margin-bottom: 16px;
}

.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: -webkit-flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.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 {
  align-items: flex-start;
}

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

.flex-v-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: var(--h1-size);
  line-height: var(--h1-lineheight);
  margin: var(--h1-margin);
}

h2, .undoreset h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-lineheight);
  margin: var(--h2-margin);
  font-weight: 600;
  color: #000;
}

h3, .undoreset h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-lineheight);
  margin: var(--h3-margin);
}

p, .undoreset p {
  font-size: var(--p-size);
  line-height: var(--p-lineheight);
  margin: var(--p-margin);
}
p a, .undoreset p a {
  color: #000;
  text-decoration: underline;
}
p a:hover, .undoreset p a:hover {
  color: #4cc7a3;
}

.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;
}

.clearfix {
  overflow: auto;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}/*# sourceMappingURL=style.css.map */