@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700;900&family=Righteous&display=swap);
body {
  font-family: "Noto Sans TC", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 400;
  background: #f8f8f8;
}

html, body {
  scroll-behavior: smooth;
}

[class*=col-] {
  float: left;
  box-sizing: border-box;
}

div.titan {
  /*--隱藏開影音、開相簿--*/
  display: none;
}

a {
  cursor: pointer;
  transition: 0.9s;
}
a:hover {
  color: #d52027;
}

@media (max-width: 640px) {
  .textEditor {
    padding: 0 1rem;
  }
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

*, .b-box {
  box-sizing: border-box;
  outline: none;
}

input[type=text] {
  -webkit-appearance: none;
  font-family: "serif";
}

textarea {
  -webkit-appearance: none;
  font-family: "serif";
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1300;
}
.loading.loadingNk {
  opacity: 0;
  transform: translate(100%, 0);
  pointer-events: none;
  transition: opacity 0.8s 0s, transform 0s 0.8s;
}
.loading.loadingOK {
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, 0);
  transition: opacity 1.5s 2s, transform 0s 3.5s;
}
.loading.loadingOK img, .loading.loadingOK svg {
  transition: 0.6s 0.4s;
}
.loading.loadingOK::before {
  transform: translate(-100%, 0);
  transition: 0.5s ease-in;
}
.loading img, .loading svg {
  display: block;
  width: 154px;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
}
.loading::before {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  background: #52A2B4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
}
.loading::after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.bread {
  border-bottom: 2px solid #52A2B4;
  padding: 0 0 10px;
  text-align: right;
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 14px;
  color: #797c81;
}
.bread a {
  color: #000;
}
.bread i {
  padding: 0 5px;
  color: #c2c3c5;
}
.bread em.subject {
  color: #000;
}
@media (max-width: 767px) {
  .bread {
    text-align: left;
    position: relative;
  }
}

.sectionTitle {
  display: block;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #52A2B4;
}

.side_album {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.side_album li {
  width: 16.6666666667%;
  padding: 0 5px 5px 0;
}
.side_album li:hover a::before {
  top: 50%;
}
.side_album li:hover img {
  opacity: 0.5;
}
.side_album li a {
  display: block;
  background: #52A2B4;
  position: relative;
  overflow: hidden;
}
.side_album li a::before {
  content: "\f00e";
  font-family: FontAwesome;
  color: #fff;
  display: block;
  font-size: 25px;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
  z-index: 10;
}
.side_album li img {
  display: block;
  width: 100%;
  opacity: 1;
  transition: 0.6s;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .side_album li {
    width: 20%;
  }
}
@media (max-width: 520px) {
  .side_album li {
    width: 25%;
  }
}

/******頁籤*******/
.tab {
  margin-top: 40px;
  display: flex;
}
.tab a {
  flex: 1;
  position: relative;
  background: #d0cfcf;
  color: #fff;
  text-align: center;
  line-height: 40px;
  padding: 5px;
  font-size: 15px;
}
.tab a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 0;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.tab a.current {
  background: #52A2B4;
}

.tabContent {
  margin-top: -1px;
  padding: 20px 5px;
  border-top: 1px solid #d6d6d6;
}
.tabContent > li {
  display: none;
}
.tabContent .textEditor {
  margin: 0;
}
.tabContent .sectionTitle {
  display: none;
}

/*標籤*/
.tagBox {
  padding: 20px 0;
}
.tagBox b {
  display: block;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #52A2B4;
}
.tagBox ul {
  display: inline-block;
}
.tagBox li {
  display: inline-block;
  margin-bottom: 5px;
}
.tagBox a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #c7c7c7;
  font-size: 13px;
  color: #8a8a8a;
}
.tagBox a:hover {
  color: #fff;
  background-color: #52A2B4;
}
.tagBox a.current {
  color: #fff;
  background-color: #52A2B4;
}
.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

.insbanner {
  margin-top: 84px;
  min-height: 300px;
  padding-left: 50%;
  position: relative;
  z-index: 11;
}
.insbanner .appendtop {
  width: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.insbanner svg.background_txt {
  position: absolute;
  top: 25%;
  left: 0%;
  z-index: -1;
  font-family: "Righteous", sans-serif;
  font-size: 317px;
  width: 100%;
  height: 270px;
}
.insbanner .titleBox {
  min-width: 295px;
}
.insbanner .titleBox h2 {
  color: #000;
}
@media (max-width: 1023px) {
  .insbanner {
    margin-top: 0;
    padding-left: 0%;
  }
  .insbanner svg.background_txt {
    font-size: 120px;
  }
  .insbanner .bannerBox {
    width: 100%;
  }
  .insbanner .bannerBox img {
    width: 100%;
  }
  .insbanner .appendtop {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .insbanner {
    background: #fff;
  }
  .insbanner svg.background_txt {
    display: none;
  }
  .insbanner .appendtop {
    padding-top: 40px;
    padding-bottom: 0;
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0, 0%);
  }
}

/*內頁*/
.classBox {
  padding-bottom: 40px;
}

.arrowArea {
  display: flex;
}
.arrowArea a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c3996f;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 16px;
  border-radius: 99em;
  margin: 0 5px;
}
.arrowArea a:hover {
  background: #c3996f;
}

.outerWrap {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .outerWrap {
    padding-top: 72px;
  }
}

.wrap {
  z-index: 15;
  position: relative;
  width: 1415px;
  margin: 0 auto;
}
@media (max-width: 1495px) {
  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.searchBox {
  background: #202020;
  text-align: center;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.searchBox a.moduleClose {
  transform: translate(100%, -100%);
}
.searchBox.mobileshow {
  flex-direction: column;
  line-height: 2;
}
.searchBox.moduleBox {
  background: #52A2B4;
  padding: 50px 20px;
}
.searchBox.moduleBox h4 {
  font-weight: 500;
  padding-bottom: 20px;
}
.searchBox.moduleBox a {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-170%, 5px);
  color: #fff;
}
.searchBox input {
  max-width: 300px;
  background: #fff;
  border: none;
  border-radius: 20em;
  margin-left: 20px;
  line-height: 30px;
  height: 30px;
  padding: 0 50px 0 20px;
}
.searchBox a {
  display: inline-block;
  font-size: 20px;
  transform: translate(-150%, 3px);
}
@media (max-width: 520px) {
  .searchBox {
    flex-direction: column;
    line-height: 2;
  }
}

/*-moduleBox--*/
.moduleBox {
  position: fixed;
  left: 50%;
  top: 48%;
  max-width: 500px;
  width: 90%;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: top, opacity, visibility;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  background: #fff;
}
.moduleBox.show {
  top: 50%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.moduleBox .box {
  padding-bottom: 20px;
}
.moduleBox .box h4 {
  background: #52A2B4;
  position: relative;
  margin-bottom: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}
.moduleBox .box .btn {
  position: relative;
  text-align: center;
  padding-top: 20px;
}
.moduleBox .box .reset .resetButton {
  background: #e6e6e6;
  color: #7d7d7d;
}
.moduleBox .box .reset .resetButton:hover {
  background: #7d7d7d;
  color: #fff;
}
.moduleBox .box .login {
  width: 300px;
  margin: 0 auto;
}

.moduleMask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1003;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

a.moduleClose {
  position: absolute;
  top: 0px !important;
  right: 0;
  transform: translate(-80%, 30%);
  color: #fff;
  font-size: 20px !important;
  z-index: 2;
}

.classNote, .thankInfo {
  border-bottom: 2px solid #52A2B4;
  padding-bottom: 20px;
  font-size: 15px;
  margin-bottom: 40px;
}
.classNote img, .thankInfo img {
  max-width: 100%;
  backface-visibility: hidden;
}

/*****網頁頭*****/
header {
  position: absolute;
  top: 35px;
  left: 0px;
  width: calc(50% - 140px);
  padding: 0 100px 0 117px;
  display: flex;
  justify-content: space-between;
  z-index: 97;
}
header .logo {
  width: 185px;
  min-width: 154px;
  position: relative;
  overflow: hidden;
}
header .logo a {
  position: relative;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
header .logo span {
  position: absolute;
  bottom: 100%;
}
header .logo img {
  width: 100%;
}
header .controlbar {
  display: flex;
  align-items: center;
}
header .controlbar a {
  font-size: 20px;
  color: #231815;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  padding: 0 20px 0 0;
}
@media (max-width: 640px) {
  header .controlbar a:not(.searchopen) {
    display: none;
  }
}
header .controlbar a svg {
  fill: #231815;
  display: block;
}
header .controlbar a i {
  position: relative;
  top: 2px;
  font-size: 23px;
  width: 30px;
  height: 30px;
}
header .controlbar a:hover {
  color: #52A2B4;
}
header .controlbar a:hover svg {
  fill: #52A2B4;
}
header .controlbar .socialItem {
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
}
@media (max-width: 640px) {
  header .controlbar .socialItem {
    display: none;
  }
}
header .controlbar .socialItem .txt {
  padding-left: 5px;
}
@media (max-width: 1500px) {
  header {
    width: 330px;
    left: 20px;
    top: 20px;
    padding: 0;
  }
}
@media (max-width: 1023px) {
  header {
    position: fixed;
    background: #f8f8f8;
    left: 0px;
    top: 0;
    width: 100%;
    padding: 10px 80px 0 20px;
    height: 72px;
  }
  header .controlbar a {
    padding: 0 10px 0 0;
  }
}
@media (max-width: 640px) {
  header {
    padding: 10px 70px 0 20px;
  }
}

.rightControBox {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  padding: 0 0 30px 0;
  background: #52A2B4;
  color: #fff;
  width: 137px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "Righteous", sans-serif;
  font-size: 12px;
  transition: 0.9s;
}
.rightControBox.rightControBoxShow {
  width: 117px;
  background: transparent;
}
.rightControBox.rightControBoxShow .translateIbest {
  display: none;
}
.rightControBox.rightControBoxShow #bannerdot {
  display: none;
}
.rightControBox.rightControBoxShow .goTop {
  transform: translate(0, 100%);
}
.rightControBox.rightControBoxShowDown {
  background: #fff;
}
.rightControBox.rightControBoxShowDown .translateIbest {
  display: none;
}
.rightControBox.rightControBoxShowDown #bannerdot {
  display: none;
}
.rightControBox.rightControBoxShowDown .goTop {
  transform: translate(0, 0px);
}
.rightControBox .translateIbest {
  opacity: 0.6;
  writing-mode: tb-rl;
  display: flex;
}
.rightControBox .translateIbest ul.ibestContent {
  padding-top: 10px;
}
.rightControBox .goTop {
  background: #52A2B4;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 117px;
  height: 260px;
  padding: 30px 25px;
  color: #fff;
  font-family: "Righteous", sans-serif;
  font-size: 12px;
  display: flex;
  align-items: center;
  writing-mode: tb-rl;
  transform: translate(0, 100%);
}
.rightControBox .goTop::before {
  content: "";
  width: 10px;
  height: 26px;
  margin-bottom: 10px;
  background: url(../images/arrow_white2.png);
}
.rightControBox a {
  color: #fff;
}
.rightControBox .menuicon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 20px 15px 15px 15px;
  background: #52A2B4;
  min-width: 117px;
}
.rightControBox .menuicon.openmenu span {
  transform: rotate(45deg);
}
.rightControBox .menuicon.openmenu span::before {
  width: 0px;
}
.rightControBox .menuicon.openmenu span::after {
  transform: rotate(90deg) translate(-50%, -50%);
}
.rightControBox .menuicon span {
  display: block;
  width: 30px;
  padding: 1px;
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  transition: 0.9s;
}
.rightControBox .menuicon span::before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  top: 8px;
  right: 0;
  position: absolute;
  background: #fff;
  transition: 0.5s;
}
.rightControBox .menuicon span::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  top: 16px;
  right: 0;
  position: absolute;
  background: #fff;
  transition: 0.5s;
}
@media (max-width: 1260px) {
  .rightControBox {
    width: 60px;
  }
  .rightControBox.rightControBoxShow {
    width: 60px;
  }
  .rightControBox .goTop {
    width: 60px;
    height: 200px;
    padding: 30px 10px;
  }
  .rightControBox .menuicon {
    padding: 20px 5px 15px 5px;
    min-width: 50px;
  }
}
@media (max-width: 1023px) {
  .rightControBox {
    background: transparent;
  }
  .rightControBox #bannerdot {
    display: none;
  }
  .rightControBox .menuicon {
    min-width: 60px;
  }
  .rightControBox .translateIbest {
    display: none;
  }
  .rightControBox.rightControBoxShow .translateIbest {
    display: none;
  }
  .rightControBox.rightControBoxShow #bannerdot {
    display: none;
  }
  .rightControBox.rightControBoxShow .goTop {
    display: none;
  }
  .rightControBox.rightControBoxShowDown {
    background: transparent;
  }
  .rightControBox.rightControBoxShowDown .translateIbest {
    display: none;
  }
  .rightControBox.rightControBoxShowDown #bannerdot {
    display: none;
  }
  .rightControBox.rightControBoxShowDown .goTop {
    display: none;
  }
}

.sidemenu {
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 60px;
  padding-left: 60px;
  padding-bottom: 60px;
  padding-right: 197px;
  z-index: 98;
  max-width: 737px;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: 0.9s 0.6s;
  transform: translate(100%, 0);
  pointer-events: none;
}
.sidemenu.menuopen {
  transform: translate(0%, 0) !important;
  pointer-events: auto !important;
  transition: 0.9s 0s;
}
.sidemenu.menuopen .beforemask {
  opacity: 1 !important;
  transition: 0.6s 0.6s;
}
.sidemenu .beforemask {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  transition: 0.6s 0s;
  cursor: pointer;
}
.sidemenu::after {
  content: "";
  width: 100%;
  height: 100vh;
  display: block;
  background: #f8f8f8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sidemenu .weblink {
  z-index: 3;
  color: #cdcdcd;
}
@media (max-width: 1023px) {
  .sidemenu {
    padding-top: 60px;
    padding-left: 30px;
    padding-bottom: 60px;
    padding-right: 30px;
  }
}

.weblink {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.weblink li {
  background: #fff;
  overflow: hidden;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 5px;
  border-radius: 99em;
}
.weblink li a {
  display: block;
}
.weblink li img {
  display: block;
}
.weblink li:hover a {
  background: #52A2B4;
}
.weblink li:hover a img {
  -webkit-filter: brightness(100);
}
.weblink li.nourl {
  display: flex;
  width: fit-content;
  padding-right: 10px;
}

/*menu*/
.menuBox {
  position: relative;
  z-index: 3;
}
.menuBox .menu > li {
  position: relative;
  border-bottom: 1px solid #eaeaea;
}
.menuBox .menu > li > a {
  position: relative;
  line-height: 70px;
  display: block;
  font-size: 24px;
  color: #252525;
  font-weight: 700;
}
.menuBox .menu > li > a::before {
  content: "";
  width: 0%;
  height: 1px;
  display: block;
  background: #52A2B4;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: 0.6s;
}
.menuBox .menu > li > a::after {
  content: "";
  width: 26px;
  height: 10px;
  display: block;
  background: url(../images/arrow_gray.png);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: 0.6s;
}
.menuBox .menu > li > a:hover, .menuBox .menu > li > a.current {
  color: #52A2B4;
}
.menuBox .menu > li > a:hover::before, .menuBox .menu > li > a.current::before {
  width: 100%;
}
.menuBox .menu > li > a:hover::after, .menuBox .menu > li > a.current::after {
  background: url(../images/arrow_red.png);
}

/*頁尾資訊*/
footer {
  position: relative;
  z-index: 10;
  background: #131313;
  padding: 100px 207px 70px 117px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer.footerShow .left {
  transform: translate(0, 0);
  opacity: 1;
}
footer.footerShow .footerInfo {
  transform: translate(0, 0);
  opacity: 1;
}
footer.footerShow .weblink {
  transform: translate(0, 0);
  opacity: 1;
}
footer.footerShow .contactDown {
  transform: translate(0, 0);
  opacity: 1;
}
footer .left {
  transform: translate(0, 40px);
  opacity: 0;
  transition: 0.8s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}
footer .downLogo {
  max-width: 230px;
}
footer .downLogo img {
  width: 100%;
}
footer .footerInfo {
  transform: translate(0, 40px);
  opacity: 0;
  transition: 0.8s 0.5s;
  color: #fff;
  line-height: 2;
  padding-bottom: 30px;
}
footer .weblink {
  transform: translate(0, 40px);
  opacity: 0;
  transition: 0.8s 1s;
  position: relative;
  display: flex;
  padding-bottom: 30px;
}
footer .weblink li img {
  -webkit-filter: brightness(0);
}
footer .weblink li:hover a {
  background: #fff;
}
footer .weblink li:hover img {
  -webkit-filter: brightness(0);
}
footer .downmenu {
  padding-top: 20px;
}
footer .downmenu ul.menu {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}
footer .downmenu ul.menu li:last-child a {
  border-right: none;
}
footer .downmenu ul.menu li a {
  padding: 0 10px;
  display: block;
  line-height: 15px;
  border-right: 1px solid #484848;
  color: #484848;
}
footer .downmenu ul.menu li a:hover {
  color: #fff;
}
footer .contactDown {
  transform: translate(0, 40px);
  opacity: 0;
  transition: 0.8s 1.5s;
  text-align: right;
}
footer .contactDown .btn {
  padding-top: 0;
}
footer .contactDown .btn a {
  color: #9b9b9b;
  border: 1px solid #9b9b9b;
}
footer .contactDown .btn a::before {
  background: url(../images/arrow_gray.png);
}
footer .contactDown .btn a::after {
  border-left: 1px solid #9b9b9b;
}
footer .contactDown .btn a:hover {
  color: #fff;
  border: 1px solid #fff;
}
footer .contactDown .btn a:hover::before {
  background: url(../images/arrow_white.png);
}
footer .contactDown .btn a:hover::after {
  border-left: 1px solid #fff;
}
footer .contactDown .translateIbest {
  padding-top: 20px;
  color: #9b9b9b;
  font-size: 12px;
  font-family: "Righteous", sans-serif;
}
@media (max-width: 1500px) {
  footer {
    padding: 100px 167px 70px 50px;
  }
}
@media (max-width: 1023px) {
  footer {
    padding: 50px 20px 20px 20px;
  }
}

/*********內頁**********/
/**********************/
.side_menu ul li {
  padding: 10px 0px;
  border-bottom: 1px solid #c7c7c7;
  line-height: 20px;
  position: relative;
}
.side_menu ul li.openthis dl {
  display: block;
}
.side_menu ul li.openthis > a em {
  background: #909090;
  border-radius: 99em;
}
.side_menu ul li.openthis > a em img {
  -webkit-filter: contrast(2) invert(1);
}
.side_menu ul li.openthis > a em::after {
  height: calc(100% - 85px);
  transition: 0.2s;
}
.side_menu ul li a {
  font-size: 25px;
  padding: 10px 0;
  color: #000;
  display: flex;
  align-items: center;
}
.side_menu ul li a em {
  display: block;
  margin-right: 20px;
  transition: 0.6s;
}
.side_menu ul li a em::after {
  content: "";
  width: 1px;
  height: 0px;
  display: block;
  background: #909090;
  position: absolute;
  left: 42px;
  top: 65px;
  z-index: -1;
  transition: 0.2s;
}
.side_menu ul li a img {
  width: 35px;
  margin: 5px;
  display: block;
}
.side_menu ul li a::before {
  display: none;
}
.side_menu ul li a.current em {
  background: #909090;
  border-radius: 99em;
}
.side_menu ul li a.current em img {
  -webkit-filter: contrast(2) invert(1);
}
.side_menu ul li a.current::before {
  display: none;
}
.side_menu ul li dl {
  display: none;
  padding: 10px 0 0 10px;
}
.side_menu ul li dl dt a {
  color: #929191;
  font-size: 15px;
  line-height: 25px;
}
.side_menu ul li dl dt a:hover {
  color: #464444;
}

.mainArea {
  position: relative;
}
.mainArea.mainAreains {
  position: relative;
  z-index: 10;
}
.mainArea.mainAreains::after {
  content: "";
  width: calc(100% - 117px);
  height: calc(100% + 50px);
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -50px);
}
@media (max-width: 1180px) {
  .mainArea.mainAreains::after {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .mainArea {
    padding: 40px 0;
  }
}

.titleBox {
  position: relative;
  z-index: 5;
}
.titleBox.homepage {
  writing-mode: tb-rl;
}
.titleBox.homepage em {
  padding-left: 15px;
}
.titleBox.homepage em::before {
  margin-right: 0px;
  margin-bottom: 20px;
  width: 1px;
  height: 40px;
}
.titleBox.homepage h2 span {
  display: block;
}
.titleBox em {
  color: #52A2B4;
  font-family: "Righteous", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}
.titleBox em::before {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  background: #52A2B4;
  margin-right: 20px;
  transform-origin: center top;
}
.titleBox h2 {
  font-size: 52px;
  font-weight: 700;
  color: #52A2B4;
}
.titleBox h2 span {
  color: #000;
}
@media (max-width: 1180px) {
  .titleBox.homepage {
    writing-mode: horizontal-tb;
  }
  .titleBox.homepage em {
    padding-left: 15px;
  }
  .titleBox.homepage em::before {
    margin-right: 20px;
    margin-bottom: 0px;
    width: 40px;
    height: 1px;
  }
  .titleBox.homepage h2 {
    font-size: 40px;
  }
  .titleBox.homepage h2 span {
    display: inline-block;
  }
}
@media (max-width: 1023px) {
  .titleBox.homepage h2 {
    font-size: 26px;
  }
  .titleBox.homepage em {
    font-size: 13px;
  }
  .titleBox.homepage em::before {
    margin-right: 10px;
  }
  .titleBox em {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .titleBox em::before {
    margin-right: 10px;
  }
  .titleBox h2 {
    font-size: 26px;
  }
}

@keyframes btnarrow {
  0% {
    transform: translate(0%, -50%);
  }
  25% {
    transform: translate(-8%, -50%);
  }
  50% {
    transform: translate(0%, -50%);
  }
  75% {
    transform: translate(8%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}
.btn {
  padding-top: 40px;
}
.btn a {
  color: #000;
  font-weight: bold;
  font-size: 12px;
  transition: 0.9s;
  cursor: pointer;
  padding: 0px 100px 0px 35px;
  line-height: 80px;
  border: 1px solid #eaeaea;
  font-family: "Righteous", sans-serif;
  display: inline-block;
  position: relative;
}
.btn a::after {
  content: "";
  width: 30px;
  height: 100%;
  display: block;
  border-left: 1px solid #eaeaea;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.btn a::before {
  content: "";
  width: 26px;
  height: 10px;
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/arrow_black2.png);
  z-index: 2;
}
.btn a:hover {
  color: #fff;
  padding: 0px 80px 0px 55px;
  background: #52A2B4;
}
.btn a:hover::before {
  background: url(../images/arrow_white.png);
  animation: btnarrow 600ms infinite ease-in-out;
}
@media (max-width: 767px) {
  .btn {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.side_share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  padding-top: 40px;
}
.side_share i {
  font-size: 20px;
  display: inline-block;
  padding-right: 5px;
}
.side_share a {
  padding: 3px 3px 3px 10px;
  display: flex;
  align-items: center;
}
.side_share a svg {
  border-radius: 99em;
  overflow: hidden;
  margin-right: 5px;
}
.side_share a.line {
  color: #4ecd00;
}
.side_share a.line svg {
  fill: #fff;
  background: #4ecd00;
}
.side_share a.fb {
  color: #3c77c7;
}
.side_share a.fb svg {
  fill: #fff;
  background: #3c77c7;
}
.side_share a.twitter {
  color: #43bceb;
}
.side_share a.twitter svg {
  fill: #fff;
  background: #43bceb;
}
@media (max-width: 767px) {
  .side_share a {
    padding: 3px;
  }
  .side_share a span {
    display: none;
  }
}

.mainArea .contentBox {
  clear: both;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1023px) {
  .mainArea .contentBox {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.articleTitle {
  /*文章標題*/
  clear: both;
  font-weight: 700;
  font-size: 33px;
  color: #252525;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
.articleTitle::before {
  content: "";
  width: 100px;
  height: 3px;
  display: block;
  background: #52A2B4;
  position: absolute;
  bottom: -1px;
  left: 0;
}

table.breakpoint > tbody > tr > td.expand {
  cursor: pointer;
  background: url("../images/plus.png") no-repeat 5px center;
  padding-left: 40px;
}

.classLink {
  display: none;
}

/*類別*/
.m_classLink {
  width: 295px;
  line-height: 20px;
  display: block;
  position: relative;
  margin-top: 50px;
}
.m_classLink a.main {
  display: block;
  font-size: 17px;
  color: #fff;
  background: #52A2B4;
  position: relative;
  padding: 20px;
  /* IE6-9 */
}
.m_classLink a.main i {
  display: block;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}
.m_classLink ul {
  padding: 0;
  list-style: none;
  display: none;
  width: 100%;
  background: #FFF;
  border: 1px solid #d1d1d1;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  box-sizing: border-box;
}
.m_classLink ul li {
  padding: 0;
}
.m_classLink ul li a {
  display: block;
  padding: 15px 10px;
  border-top: 1px solid #d1d1d1;
  color: #000;
}
.m_classLink ul li a:hover {
  background: #52A2B4;
  color: #fff;
}
.m_classLink ul li:first-child a {
  border: none;
}

/**********適應性**********/
/************************/
/***Hover效果1: 放大淡出***/
.imh_opacity {
  background-color: #000;
  overflow: hidden;
}
.imh_opacity img {
  transition: all 0.3s linear;
  backface-visibility: hidden;
}
.imh_opacity:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
.imh_detail {
  background-color: #000;
  overflow: hidden;
}
.imh_detail img {
  transition: all 0.3s linear;
  backface-visibility: hidden;
}
.imh_detail a:before {
  content: "Details+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -45px;
  margin-top: -80px;
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}
.imh_detail:hover img {
  opacity: 0.3;
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出zoom***/
.imh_zoom {
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.imh_zoom img {
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}
.imh_zoom a:before {
  content: "\f002";
  display: block;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 99;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  font-family: FontAwesome;
  text-align: center;
  background-color: #000;
  transition: all 0.4s ease;
}
.imh_zoom:hover a:before {
  top: 50%;
}
.imh_zoom:hover img {
  opacity: 0.3;
  transform: scale(1.05);
}

@media (max-width: 1023px) {
  .slideLink {
    display: none;
  }
}
@media (min-width: 1024px) {
  .m_slideLink {
    display: none;
  }
}
.m_slideLink {
  position: relative;
}

.m_slideLink a.main {
  display: block;
  font-size: 17px;
  color: #fff;
  background: #52A2B4;
  position: relative;
  padding: 20px;
}

.m_slideLink a.main i {
  display: block;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
}

.m_slideLink ul {
  padding: 0;
  list-style: none;
  display: none;
  width: 100%;
  background: #FFF;
  border: 1px solid #d1d1d1;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  box-sizing: border-box;
}

.m_slideLink ul li {
  padding: 0;
  border: none;
}

.m_slideLink ul li > a.opens {
  position: relative;
}

.m_slideLink ul li > a.opens::before {
  content: "\f107";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  font-family: FontAwesome;
}

.m_slideLink ul li.openthis > a.opens::before {
  content: "\f106";
}

.m_slideLink ul li a {
  display: block;
  padding: 15px 10px;
  border-top: 1px solid #d1d1d1;
  font-size: 14px;
  color: #000;
}

.m_slideLink ul li:first-child a {
  border: none;
}