@charset "UTF-8";

/* =====================
   Reset
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "PingFangTC", "Microsoft JhengHei",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.5px;
  background: #fff;
}

@media screen and (max-width: 736px) {
  body { font-size: 14px; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { text-decoration: none; }

ul, ol { list-style: none; }

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

::selection {
  color: #000;
  background: #00ff00;
}

/* pc / mobile show toggle */
.pc_show { display: block !important; }
.mb_show { display: none  !important; }

@media (max-width: 767px) {
  .pc_show { display: none  !important; }
  .mb_show { display: block !important; }
}

/* footer */
#footer {
  padding: 20px;
  color: #000;
  background: #fff;
  margin-top: 0;
  text-align: center;
  font-size: 13px;
  border-top: 2px solid #000;
}

@media (max-width: 767px) {
  #footer { font-size: 11px; }
}
