@charset "UTF-8";
/*------------------------------------*\
基本設定
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap&subset=chinese-traditional");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: "Microsoft JhengHei", "Segoe UI", Arial, sans-serif;
}

ul, ol {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

/*------------------------------------*\
全部頁面共用layout
\*------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC';
  color: #494949;
  background-color: #272626;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/**
*header區塊內容
**/
header {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: url(../images/bg.jpg) center no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header > h2 {
  font-family: 'Noto Sans TC';
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #f00414;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (min-width: 480px) {
  header > h2 {
    font-size: 6rem;
  }
}

@media only screen and (min-width: 768px) {
  header > h2 {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1024px) {
  header > h2 {
    font-size: 10rem;
  }
}

.siteNav {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.siteNav::before {
  content: '';
  position: absolute;
  border-radius: 3px;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
  -webkit-transition: width 0.3s .3s, background-color 0.3s;
  transition: width 0.3s .3s, background-color 0.3s;
}

.siteNav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.siteNav > ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.siteNav > ul li:nth-of-type(1) a {
  border-left: none;
}

.siteNav > ul a {
  display: block;
  color: #494949;
  border-left: 1px solid rgba(73, 73, 73, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.siteNav > ul a:hover {
  color: #8c020c;
}

.siteNav > ul a.current {
  color: #be0310;
}

.siteNav > ul.active {
  height: auto;
}

@media only screen and (min-width: 768px) {
  .siteNav > ul {
    width: auto;
    height: auto;
    margin-left: auto;
  }
  .siteNav > ul a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .siteNav {
    position: absolute;
    padding-left: 1rem;
    padding-right: 1rem;
    top: 4em;
  }
  .siteNav::before {
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
    width: calc(100% - 2rem);
    background-color: rgba(255, 255, 255, 0.8);
  }
  .siteNav.siteNav-sticky {
    position: fixed;
    top: 0;
  }
  .siteNav.siteNav-sticky::before {
    width: 100vw;
    background-color: #fff;
  }
}

.underline {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  background: #be0310;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
}

.logo {
  padding: .5rem 1rem;
  line-height: 2rem;
  font-weight: bold;
  color: #be0310;
}

.logo img {
  width: auto;
  height: 2rem;
  margin-right: .5rem;
}

@media only screen and (min-width: 768px) {
  .logo {
    padding: 1rem 1.5rem;
  }
}

.fancy-menu {
  background-color: #be0310;
  margin-left: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 1rem;
}

.fancy-menu span {
  background: #fff;
  border-radius: 3px;
  display: block;
  height: 2px;
  margin-top: 5px;
  padding: 0;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 25px;
}

.fancy-menu span:first-child {
  margin-top: 0;
}

.fancy-menu.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}

.fancy-menu.active span:nth-of-type(2) {
  opacity: 0;
}

.fancy-menu.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}

@media only screen and (min-width: 768px) {
  .fancy-menu {
    display: none;
  }
}

/**
*main區塊內容
**/
section {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#252525), to(#363636));
  background-image: linear-gradient(to top right, #252525, #363636);
  padding: 5rem 1rem;
}

section .grid {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1336px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section:nth-child(even) {
  background-color: #272626;
  background-image: none;
  background-image: -webkit-gradient(linear, right bottom, left top, from(#c4c5c7), color-stop(52%, #dcdddf), to(#ebebeb));
  background-image: linear-gradient(to top left, #c4c5c7 0%, #dcdddf 52%, #ebebeb 100%);
}

section:nth-child(even) figcaption {
  background: rgba(255, 255, 255, 0.75);
}

section:nth-child(even) .content {
  background-color: #272626;
  color: whitesmoke;
}

section:nth-child(even) .content h3 {
  color: #fff;
}

section figure {
  position: relative;
  width: 100%;
}

section figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #be0310;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s;
  transition: -webkit-clip-path 0.3s;
  transition: clip-path 0.3s;
  transition: clip-path 0.3s, -webkit-clip-path 0.3s;
}

section figure img {
  display: block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 0.6s 0.3s;
  transition: -webkit-clip-path 0.6s 0.3s;
  transition: clip-path 0.6s 0.3s;
  transition: clip-path 0.6s 0.3s, -webkit-clip-path 0.6s 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  height: 30vh;
}

section figure figcaption {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 10px;
  font-family: 'Noto Sans TC';
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #be0310;
  background: rgba(255, 255, 255, 0.75);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s 0.9s;
  transition: -webkit-clip-path 0.3s 0.9s;
  transition: clip-path 0.3s 0.9s;
  transition: clip-path 0.3s 0.9s, -webkit-clip-path 0.3s 0.9s;
}

section figure.animated::before {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

section figure.animated img {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

section figure.animated figcaption {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

section .content {
  background-color: white;
  width: 100%;
  padding: 1rem 1.5rem;
  line-height: 2;
}

section .content h3 {
  margin-bottom: 1rem;
  color: #be0310;
}

section .content p {
  margin-bottom: 1rem;
}

section .content a {
  color: #fff;
}

section .content *::-moz-selection {
  color: #fff;
  background-color: #be0310;
}

section .content *::selection {
  color: #fff;
  background-color: #be0310;
}

section .icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

section .icon-list li {
  width: 33%;
  padding: .5em;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 25%;
  margin-bottom: 0.25rem;
}

@media only screen and (min-width: 480px) {
  section figure img {
    height: 58vh;
  }
}

@media only screen and (min-width: 1024px) {
  section {
    padding: 10rem 1rem;
  }
  section .grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section:nth-child(even) .grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section figure {
    width: 70%;
  }
  section figure img {
    height: 100%;
  }
  section figure figcaption {
    font-size: 2rem;
  }
  section .content {
    width: 30%;
  }
  section .icon-list {
    width: 125%;
    -webkit-transform: translateX(-25%) translateY(5%);
            transform: translateX(-25%) translateY(5%);
  }
}

/**
*footer區塊內容
**/
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: .5rem 1rem;
  font-size: 0.75rem;
}

footer > * {
  color: rgba(255, 255, 255, 0.5);
}

footer a {
  margin-left: 1rem;
}

footer a:hover {
  color: #fff;
}

.icon-close {
  width: 1rem;
  height: 1rem;
  display: block;
  background-position: center;
  background-size: cover;
  background-image: url(/images/ic_close_24px.svg);
}

.popup {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  display: none;
}

.popup-main {
  background-color: #fff;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.popup-main h3 {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(73, 73, 73, 0.25);
  position: relative;
}

.popup-main h3 span {
  position: absolute;
  right: 1rem;
  top: .5rem;
  cursor: pointer;
}

.popup-content {
  padding: 1rem;
  overflow-y: auto;
}

.popup-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.popup-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.popup-content p {
  margin-bottom: 1rem;
}

.popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100vh;
}
/*# sourceMappingURL=screen.css.map */