body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
/*Variable*/
/*Mixin*/
/*Reset*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
  display: block;
}

.hide {
  display: none;
}

::selection {
  background: #000;
  color: #fff;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

*:focus {
  outline: none;
}

a {
  color: #444;
  text-decoration: none;
  transition: color 0.4s;
}

a:hover {
  color: #f52b52;
}

*::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/*Body*/
#g-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: 1s;
  z-index: 101;
  text-align: center;
}
#g-loader .center p {
  display: none;
}
#g-loader .logo {
  width: 100px;
  height: 100px;
  background: url(../img/loading.svg) no-repeat center;
  background-size: 100%;
}
#g-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

html.is-lock, body.is-lock {
  width: 100%;
  height: 100%;
}

body {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  font-family: "Cronos Pro LtDisp", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  background: linear-gradient(to right, #ffe5c4, #fff, #fff, #ffe5c4);
  text-align: center;
}
body.lock {
  overflow: hidden;
}

* {
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
}

.color-blue {
  color: #1166f5;
}

.color-red {
  color: #f52b52;
}

.color-pink {
  color: #f52b52;
}

.color-green {
  color: #8bc34a;
}

.color-yellow {
  color: #f5c225;
}

#g-wrap {
  width: 800px;
  position: relative;
  margin: 0 auto;
  position: relative;
}
#g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
.g-section img {
  width: 100%;
}

#g-nav {
  background: url(../img/nav.webp) no-repeat;
  background-size: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: 0 5px 5px rgba(210, 191, 171, 0.5);
}
#g-nav ol {
  display: flex;
}
#g-nav li:nth-child(1) {
  width: 31%;
}
#g-nav li:nth-child(2) {
  width: 24%;
}
#g-nav li:nth-child(3) {
  width: 25%;
}
#g-nav li:nth-child(4) {
  width: 20%;
}
#g-nav a {
  height: 125px;
  display: block;
  text-indent: -9999px;
}