@charset "UTF-8";
/*-------------------------------------------*\
	megamenu.scss
\*-------------------------------------------*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap);
/*-------------------------------------------*\
  iehack.scss

  Use
  @include hack($IE-ver),目前使用IE10以上
\*-------------------------------------------*/
/*-------------------------------------------*\
	hamburger.scss

	Index
  - 1.button
  - 2.line
  - 3.active
\*-------------------------------------------*/
.hamburger_btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  background-color: black;
  pointer-events: auto;
}
@media (min-width: 813px) {
  .hamburger_btn {
    width: 100px;
    height: 100px;
  }
}

.hr_line {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
  margin: auto;
  background-color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0;
}
.hr_line:before, .hr_line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hr_line:before {
  -webkit-box-shadow: 0 -10px 0 0 white;
          box-shadow: 0 -10px 0 0 white;
}
.hr_line:after {
  -webkit-box-shadow: 0 10px 0 0 white;
          box-shadow: 0 10px 0 0 white;
}

.active .hr_line {
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.active .hr_line:before, .active .hr_line:after {
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.active .hr_rotate {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.active .hr_rotate:before, .active .hr_rotate:after {
  left: 6px;
}
.active .hr_rotate:before {
  -webkit-transform: translateY(6px) rotate(-45deg);
      -ms-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.active .hr_rotate:after {
  -webkit-transform: translateY(-8px) rotate(45deg);
      -ms-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

.megamenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  pointer-events: none;
}

.no-js .megamenu {
  position: static;
}

/*-------------------------------------------*\
	mtree.scss

	Index
  - 1.button
  - 2.line
  - 3.active
\*-------------------------------------------*/
@media (max-width: 812px) {
  .menu_wrap {
    overflow: hidden;
    height: calc(100vh - 50px);
    margin-top: 50px;
  }
  .menu_wrap .mtree {
    display: none;
  }
  .menu_wrap-open {
    pointer-events: auto;
  }
  .menu_wrap-open > div.menu_inner {
    -webkit-animation: mobile_menu 0.3s ease-out 0.3s both;
            animation: mobile_menu 0.3s ease-out 0.3s both;
  }
  .menu_wrap-open .mtree {
    display: block;
  }
  .menu_inner {
    height: 100%;
    background-color: black;
    -webkit-transform: translateY(-100vh);
        -ms-transform: translateY(-100vh);
            transform: translateY(-100vh);
    overflow-y: auto;
  }
  .menu_inner-am {
    -webkit-animation: mobile_menu-back 0.3s ease-out 0.3s both;
            animation: mobile_menu-back 0.3s ease-out 0.3s both;
  }
}
@-webkit-keyframes mobile_menu {
  from {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0vh);
            transform: translateY(0vh);
    opacity: 1;
  }
}
@keyframes mobile_menu {
  from {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0vh);
            transform: translateY(0vh);
    opacity: 1;
  }
}
@-webkit-keyframes mobile_menu-back {
  from {
    -webkit-transform: translateY(0vh);
            transform: translateY(0vh);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    opacity: 0;
  }
}
@keyframes mobile_menu-back {
  from {
    -webkit-transform: translateY(0vh);
            transform: translateY(0vh);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    opacity: 0;
  }
}
.mtree {
  width: 100%;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.25em;
  line-height: 1.2;
  letter-spacing: 0.25rem;
}
.mtree a {
  display: block;
  padding: 0.75rem 0.5rem;
  padding-right: 1.25rem;
  color: inherit;
  -webkit-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.mtree a:hover {
  color: white;
}
.mtree > li {
  margin: 1rem 0;
}

.mtree .mtree-open > a {
  background: #7d0000;
}
.mtree_second > li > a {
  padding-left: 1.35rem;
  font-size: 90%;
}
.mtree_second .mtree-open > a {
  background: #590c15;
}
.mtree_third > li > a {
  padding-left: 2.7rem;
  font-size: 80%;
}
.mtree_third .mtree-open > a {
  background: #4d0712;
}
.mtree_fourth > li > a {
  padding-left: 4.05rem;
  font-size: 70%;
}
.mtree_fourth .mtree-open > a {
  background: #3e0513;
}

.mtree-node > a {
  position: relative;
}
.mtree-node > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.75rem;
  right: 0.5rem;
  width: 18px;
  height: 18px;
}
.mtree-open > a {
  color: white;
}
.mtree-open > a:after {
  background: url(../../images/mtree_open.svg) no-repeat center/contain;
}
.mtree-closed > a:after {
  background: url(../../images/mtree_closed.svg) no-repeat center/contain;
}

@media (min-width: 813px) {
  .menu_wrap {
    overflow: hidden;
    width: calc(100% - 100px);
    height: 100vh;
    margin-left: auto;
    pointer-events: none;
  }
  .menu_wrap .mtree {
    display: none;
  }
  .menu_wrap-open {
    position: relative;
    pointer-events: auto;
  }
  .menu_wrap-open > div.menu_inner {
    -webkit-animation: desktop_menu ease-out 0.3s both;
            animation: desktop_menu ease-out 0.3s both;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .menu_wrap-open > div.menu_inner:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .menu_wrap-open .mtree {
    display: block;
  }
  .menu_inner {
    width: 370px;
    height: inherit;
    padding: 36px 2rem 0;
    background-color: black;
    -webkit-transform: translateX(-370px);
        -ms-transform: translateX(-370px);
            transform: translateX(-370px);
  }
  .menu_inner-am {
    -webkit-animation: desktop_menu-back ease-out 0.3s both;
            animation: desktop_menu-back ease-out 0.3s both;
  }

  .mtree_second {
    position: absolute;
    z-index: -1;
    top: 70px;
    left: 0px;
    width: 350px;
    padding: 0 3rem;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    opacity: 0;
  }

  .mtree > .mtree-node:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 350px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mtree > .mtree-node.mtree-open {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mtree > .mtree-node.mtree-open:after {
    left: 370px;
    background-color: black;
  }
  .mtree > .mtree-node.mtree-open .mtree_second {
    left: 370px;
    opacity: 1;
  }
}
@-webkit-keyframes desktop_menu {
  from {
    -webkit-transform: translateX(-324px);
            transform: translateX(-324px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes desktop_menu {
  from {
    -webkit-transform: translateX(-324px);
            transform: translateX(-324px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes desktop_menu-back {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-324px);
            transform: translateX(-324px);
    opacity: 0;
  }
}
@keyframes desktop_menu-back {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-324px);
            transform: translateX(-324px);
    opacity: 0;
  }
}
@media (min-width: 813px) {
  .no-js .menu_wrap {
    height: auto;
  }
  .no-js .menu_inner {
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    pointer-events: auto;
  }
  .no-js .mtree_second {
    position: static;
    opacity: 1;
    width: auto;
    padding: 0.25rem;
  }
}
@media (min-width: 813px) {
  .no-js .mtree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .no-js .mtree > li {
    padding: 0.25rem;
    width: 50%;
  }
  .no-js .mtree > li > a {
    background-color: #7d0000;
  }
  .no-js .mtree a {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 992px) {
  .no-js .mtree > li {
    width: 25%;
  }
}

/*-------------------------------------------*\
	language_mobile.scss

	Index
  - 1.wrapper
  - 2.style
\*-------------------------------------------*/
.mobile_lang {
  padding: 0 1rem;
}
@media (min-width: 813px) {
  .mobile_lang {
    display: none;
  }
}

.mtree_lang {
  padding: 0;
  border-top: 1px solid #484646;
  font-size: 1em;
}
.mtree_lang .mtree-open > a {
  background: rgba(151, 95, 20, 0.75);
}
.mtree_lang .mtree_second > li > a {
  padding: 0.5rem;
}
.mtree_lang .mtree_second > li > a:hover {
  background: rgba(151, 95, 20, 0.5);
}