@charset "utf-8";
/* CSS Document */
@font-face { font-family: 'Noto Sans TC'; src: url('../fonts/NotoSansTC-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noto Sans TC'; src: url('../fonts/NotoSansTC-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noto Sans TC'; src: url('../fonts/NotoSansTC-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
body {
    font-family: 'Noto Sans TC','微軟正黑體',Arial, sans-serif;
    font-size: 18px;
    line-height: 2;
}
img{
    max-width: 100%;
}
.mainArea{
    width: 100%;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .barBTN,
    .closeBTN {
        display: none;
    }

    .wrap {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
    }
}
.logo {
    position: absolute;
    top: 0px;
    left: 0;
    padding: 0px;
    z-index: 99999;
}
.logo span{
    font-size: 30px;
    line-height: 85px;
    color: #fff;
    margin-left: 7px;
    position: relative;
}
.logo img {
    vertical-align: middle;
    position: relative;
    top: -6px;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
#header .wrap{
    justify-content: flex-end;
}
.linknav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0;
}
.linknav ul > li {
    position: relative;
    padding: 24.5px 30px;
}
.linknav ul > li:hover {
    color: #7e587c;
    cursor: pointer;
}
.linknav ul > li:hover a {
    color: #7e587c;
}
.linknav ul > li > a {
    color: #4b4948;
}
.linknav ul > li > a::before {
    content: "";
    position: absolute;
    background-image: url(../images/website_image/star.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
}
.linknav ul > li > a.current::before, .linknav ul > li > a:hover::before {
  opacity: 1;
}
.linknav ul > li .dropdown {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: #a98b73;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
.linknav ul > li:hover .dropdown {
    top: 65.7px;
    opacity: 1;
    transition: 0.3s;
    z-index: -1;
}
.linknav ul > li .dropdown a {
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #ffffff36;
    padding: 15px 20px;
    line-height: 1.5em;
    display: block;
}
.linknav ul > li .dropdown h4 {
    margin: 0;
    white-space: nowrap;
}
.linknav a {
    font-size: 17px;
}
nav {
    width: 100%;
    background-color: #d291bc66;
    position: fixed;
    top: 0;
    left: 0;
    height: 85px;
    z-index: 999;
    box-shadow: 1px 1px 1px 1px #0000000f;
    padding: 0 5px;
}
.nav_banner {
    margin-top: 0px;
    position: relative;
    z-index: 10;
}
.banner_txt {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    color: #fff;
}
.banner_txt > h1 {
    font-size: 30px;
    margin: 0 0 20px 0;
}
span.banner_title {
    display: block;
    font-size: 48px;
    font-weight: 600;
}
span.cross {
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
}
span.cross::after {
    content: '';
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
    position: absolute;
    top: calc(50% + 8px);
    left: 50%;
}
span.cross::before {
    content: '';
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;
    position: absolute;
    top: calc(50% + 8px);
    left: 50%;
}
.banner_txt > p {
    font-size: 24px;
    display: inline-block;
    margin: 0;
    background-color: #e8dbd5;
    padding: 5px 15px;
    color: #5d3100;
}
.nav_banner .scrollDown {
  position: absolute;
  bottom: -70px;
  right: 180px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15px;
  height: 280px;
}
@media (min-width: 1201px) {
  .nav_banner .scrollDown:hover span.text {
    -webkit-animation: upDown 1.2s ease-in-out infinite;
            animation: upDown 1.2s ease-in-out infinite;
  }
}
@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.nav_banner .scrollDown span.text {
    cursor: pointer;
  color: #d291bc;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 20px;
}
.nav_banner .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.nav_banner .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: white;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.nav_banner .scrollDown span.decoStar {
  width: 14px;
  height: 14px;
  margin: 15px 0;
  background-image: url(../images/website_image/star.png);
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
@media (max-width: 1000px) {
.logo span {
    font-size: 20px;
}
.nav_banner .scrollDown {
    right: 30px;
}
}
@media (max-width: 768px) {
    .nav_banner .scrollDown {
    height: 180px;
    right: 10px;
}
    .nav_banner {
        margin-top: 60px;
    }
    .module7 .banner .bannerTxt {
        font-size: 0.8rem;
    }
    nav {
        height: 60px;
        background-color: #d291bc!important;
    }
    .linknav ul > li:hover a {
        color: #333;
    }
    .barBTN {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        font-size: 20px;
        color: #fff;
        text-decoration: none;
        background-color: #7e587c;
        width: 60px;
        height: 60px;
    }
.linknav ul > li > a::before{
    display: none;
}
    a.barBTN img {
        width: 26px;
    }

    .barBTN:hover,
    .barBTN:active,
    .barBTN:focus {
        color: #fff;
        text-decoration: none;
    }
    .barBTN span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: -0.5px;
        width: 26px;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        margin-left: 0px;
    }
    .barBTN span:before, .barBTN span:after {
        content: "";
        position: absolute;
        right: 0;
        width: 26px;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .barBTN span:before {
        top: -7px;
    }
    .barBTN span:after {
        bottom: -7px;
    }
    .barBTN.show span {
        background-color: transparent;
    }
    .barBTN.show span:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .barBTN.show span:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .linknav ul > li > a:after{
        display: none;
    }
    .linknav {
        width: 100%;
        z-index: 9999;
        display: none;
        height: calc(100vh - 60px);
        background-color: #FFF1F6;
        border-top: 1px solid #e1c1ca26;
    }
    .linknav ul {
        flex-direction: column;
        margin-top: 20px;
    }
    .linknav ul > li {
        padding: 0;
        padding: 0;
        border-bottom: 1px solid #ffffff36;
        width: 100%;
    }
    .linknav ul > li > a {
        color: #454545;
    }
    .linknav a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 45px;
        font-size: 18px;
        color: #592f16;
        text-decoration: none;
    }

    .linknav a:hover,
    .linknav a:active,
    .linknav a:focus {
        background-color: #e1c1ca26;
        color: #222;
        text-decoration: none;
    }
    .linknav ul > li .dropdown {
        display: none;
    }
}

/* 導覽列樣式 結束 */

.cont {
    width: 1300px;
    margin: 0 auto;
}

.fbook {
    padding: 0 !important;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}
.titleBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    text-align: center;
}
.titleBox .title{
    position: relative;
    padding: 35px 0 15px;
    margin: 20px 0;
}
.titleBox > .title::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 25px;
    background-image: url(../images/website_image/line_1.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.titleBox > .title::after{
    content: "";
    position: absolute;
    display: block;
    width: 200%;
    height: 1px;
    background: linear-gradient(to left, #fff1f6, #F16377, #fff1f6);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.title > span {
    display: block;
    font-size: 18px;
    font-family: "Playfair Display";
    letter-spacing: .8px;
    color: #F16377;
    margin-top: 5px;
    text-align: center;
}

.ftitle h3 {
    display: inline-block;
    background: #0071bf;
    padding: 10px 15px;
    color: #fff;
    border-radius: 16px;
    font-size: 1.17em;
    font-weight: bold;
}

.fsub {
    background: #0071bf !important;
    border: none !important;
    color: #fff !important;
    padding: 4px 10px !important;
    cursor: pointer;
}

.pro_show_info {
    width: 100%;
    margin-bottom: 5px;
    float: left;
    position: relative;
    padding-top: 10px;
}

.pro_show_info li {
    width: 100%;
    padding: 2px 10px;
    float: left;
}

.pro_show_info li.attr .fl {
    width: 20%;
}

.fl {
    float: left;
    display: inline;
}

.pro_show_info li.attr .fr {
    width: 79%;
}

.fr {
    float: right;
    display: inline;
}

.pro_show_info li.attr a {
    line-height: 20px;
    margin: 0 10px 10px 0;
    padding: 3px 8px;
    background: #fbfbfb;
    border: solid 1px #e2e2e2;
    border-radius: 1px;
    display: inline-block;
    color: #666;
}

.pro_show_info li.attr a.on {
    background: #0071bf;
    border-color: #0071bf;
    color: #fff;
}

@media (max-width: 768px) {
    .cont {
        width: 100%;
    }

    .pro_show_info li.attr .fl {
        width: 100%;
    }

    .pro_show_info li.attr .fr {
        width: 100%;
    }

    .pro_show_info li {
        float: inherit;
    }

    .pro_show_info {
        padding-bottom: 10px;
    }

    .pro_show_info li.attr a {
        margin: 2px;
    }

    .foot1 {
        padding: 10px;
        font-size:12px;
        height: auto !important;
        line-height: 22px !important;
    }
}
div#newmodulePc .titleBox{
    padding-top: 50px;
}
/*footer*/
.footer{
    background-color: #454545;
}
.foot1 {
    width: 100%;
    height: 40px;
    font-size: 13px;
    line-height: 40px;
    text-align: center;
    color: #999;
    background-color: #222;
}
.foot1 a {
    color: #999;
}
.foot1 p{
    margin: 0;
}
.module7 .contact .contact_content .right {
    width: 165px;
    text-align: center;
}
.module7 .contact .contact_content .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-animation-name: scaleDraw;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
}

@keyframes scaleDraw {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(0.95);
    }
}

.xinring_list_box {
    margin: 0;
    padding: 0;
    list-style: none;
    position: fixed;
    right: 15px;
    bottom: 0px;
    z-index: 9999999;
}
.xinring_list_box > li {
    cursor: pointer;
    position: relative;
    width: 45px;
    height: 45px;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #aaa;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}
.xinring_list_box > li a{
    color: #fff;
    font-style: normal;
}
.xinring_list_box:hover {
    background: #f3b02b;
    border-radius: 50%;
}
@media (max-width: 768px) {
    /* .xinring_list_box > li {
        width: 35px;
        height: 25px;
        padding: 5px 10px 25px 10px;
    } */
}
.footer_asidelink {
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 999;
}
.footer_asidelink ul {
    margin: 0;
    padding: 0;
}
.footer_asidelink li {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    border-radius: 50%;
    padding: 8px;
    position: relative;
    cursor: pointer;
}
.footer_asidelink > ul > li:nth-child(1) {
    background-color: #d291bc;
}
.footer_asidelink > ul > li:nth-child(2) {
    background-color: #5db923;
}
.footer_asidelink > ul > li:nth-child(3) {
    background-color: #d483b5;
}
.footer_asidelink li a{
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
}
.footer_asidelink li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer_asidelink li:hover{
    box-shadow: 2px 2px 4px #000;
}
.footer_asidelink li:hover::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
    .footer_asidelink {
        bottom: 45px;
        right: 0px;
    }
    .xinring_list_box {
        right: 0px;
    }
    .footer_asidelink li, .xinring_list_box > li {
        width: 35px;
        height: 35px;
        padding: 5px;
    }
}
/* 關於我們 開始 */
.bg_gray{
    width: 100%;
    background-image: url(../images/website_image/bg_gray.webp);
}
/* aboutBox1 */
.aboutBox1{
    width: 100%;
    padding: 100px 15px 50px;
    position: relative;
}
.aboutBox1::before {
    content: "";
    position: absolute;
    width: 70%;
    height: calc(100% - 280px);
    background-color: #fff;
    right: 0;
    top: 140px;
}
.aboutBox1 .aboutBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.aboutBox1 .aboutBox .imgBox{
    text-align: center;
    width: 45%;
    padding: 0 60px 0 45px;
}
.aboutBox1 .aboutBox .imgBox .Img{
    position: relative;
    width: 100%;
    display: inline-block;
}
.aboutBox1 .aboutBox .Txt{
    width: 55%;
    padding-top: 100px;
}
.titleMainBox .titleTw {
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 1.8px;
    color: #5c5b5b;
    margin: 0;
}
.titleMainBox .titleEn {
    line-height: 1.25;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bd8fba;
    margin: 10px 0 25px;
    font-family: Arial;
}
.titleMainBox .text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.9px;
    color: #676767;
}
.titleMainBox .text_pointBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0;
}
.titleMainBox .text_pointBox .left{
    border-right: 4px solid #d291bc;
    padding-right: 20px;
    margin-right: 20px;
    text-align: center;
}
.titleMainBox .text_pointBox .left .text{
    margin: 5px 0;
}
.titleMainBox .text_pointBox .right{
    flex: 1 0 0;
}
.titleMainBox .text_pointBox .right .text {
    font-size: 20px;
    color: #b35795;
    font-weight: bold;
}
.titleMainBox .text_pointBox .text .text_point{
    background-color: #5c5b5b;
    color: #fff;
    display: inline-block;
    padding: 2px 10px;
}
.Txt_Img {
    position: relative;
    top: 30px;
    left: 65%;
    width: 60%;
}
.Txt_Img::before {
    content: "";
    position: absolute;
    display: block;
    width: 95%;
    height: 95%;
    border-top: 1px solid #d291bc;
    border-left:1px solid #d291bc;
    top: -7px;
    left: -7px;
    z-index: 1;
}
.Txt_Img img{
    width: 100%;
    position: relative;
    z-index: 5;
    box-shadow: 8px 8px 4px #aaa;
}
.imgBox .decoMainBox {
    top: 0;
    left: 0;
    height: 350px;
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
}
.decoMainBox .decoLine {
  width: 1px;
  height: 115px;
  background-color: #bd8fba;
}
.decoMainBox .decoStar {
  width: 14px;
  height: 14px;
  margin: 15px 0;
  background-image: url("../images/website_image/star.png");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.decoMainBox .decoTxt {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 18px;
  color: #7e587c;
  letter-spacing: 1.8px;
  color: #bd8fba;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.aboutBox1 .btnBox{
    margin-top: 30px;
}
.btnBox .btn2 {
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02rem;
    padding: 15px 10px;
    position: relative;
    text-align: center;
    z-index: 1;
}
.btnBox .btn_color {
    width: 230px;
    line-height: 65px;
    color: #7e587c;
    border-bottom: 1px solid #7e587c;
    position: relative;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
}
.btnBox .btn_color:hover {
    color: #fff;
    padding: 0 15px;
}
.btnBox .btn_color:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.btnBox .btn_color:hover::before {
    right: 10px;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
    -webkit-animation: arrRight2 1.2s ease-in-out infinite;
            animation: arrRight2 1.2s ease-in-out infinite;
}
.btnBox .btn_color::before {
    content: "";
    position: absolute;
    background-image: url("../images/website_image/btn_arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 7px;
    height: 13px;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
}
.btnBox .btn_color::after {
    content: "";
    width: 0%;
    height: 100%;
    display: block;
    background-color: #7e587c;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 1s cubic-bezier(0, 0.56, 0.28, 1.1);
    transition: all 1s cubic-bezier(0, 0.56, 0.28, 1.1);
    z-index: -1;
}

/*s_bannerBox*/
.s_bannerBox1{
    width: 100%;
    height: 100px;
    background-color: #fff;
    background-image: url(../images/website_image/recommend-bg.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
}
.s_bannerBox1 .wrap{
    align-items: stretch;
}
.s_bannerBox1 .Img {
    flex: 0 0 auto;
}
.s_bannerBox1 .Txt {
    color: #fff;
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.s_bannerBox1 .Txt h3{
    font-size: 36px;
    letter-spacing: 5px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}
.s_bannerBox1 .Txt .btn2 {
    display: inline-block;
    width: 170px;
    line-height: 45px;
    color: #FE763C;
    background-color: #fff;
    position: relative;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    margin-left: 5%;
    transition: all 0.3s;
    border-radius: 3px;
    box-shadow: 3px 3px 2px #444;
    animation: floatBtn 2s ease-in-out infinite;
}
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.s_bannerBox1 .Txt .btn2:hover{
    color: #fff;
    background-color: #7e587c;
}

/* aboutBox2 */
.aboutBox2{
    position: relative;
    z-index: 5;
    background-color: #fff;
    padding-top: 100px;
    overflow: hidden;
}
.aboutBox2::before {
    content: "";
    position: absolute;
    background-image: url("../images/website_image/bg_purple.webp");
    background-position: left;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 70%;
    height: 86%;
    bottom: 150px;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
.aboutBox2::after {
    content: "";
    position: absolute;
    background-image: url("../images/website_image/deco_shadow.webp");
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    width: 100%;
    height: 100%;
    bottom: -37%;
    right: 0;
    -webkit-animation: shadow 18s ease-in-out infinite;
    animation: shadow 18s ease-in-out infinite;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
@-webkit-keyframes shadow {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes shadow {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.aboutBox2 .aboutBox{
    width: 100%;
    padding: 0 15px;
    margin-bottom: 50px;
}
.aboutBox2 .decoMainBox {
    left: 3%;
}
.aboutBox2 .aboutBox .TxtBox {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: -165px 0 0;
    padding-bottom: 30px;
}
.aboutBox2 .aboutBox .TxtBox .Txt{
    width: 100%;
    max-width: 1200px;
    margin: 0 3% 0 auto;
    padding: 65px 75px;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    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;
    z-index: 2;
}
.aboutBox2 .aboutBox .Txt > p{
    position: relative;
    line-height: 1.8;
    font-size: 24px;
    margin: 10px 30px 10px 80px;
    color: #666;
}
.aboutBox2 .imgBox .decoMainBox{
    height: 300px;
}
.Icon{
    display: inline-flex;
}
.Icon .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 30px 60px 0;
    position: relative;
}
.Icon .item:first-child::before{
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 70%;
    top: 15%;
    right: -60px;
    background-color: #ddd;
}
.Icon .Icon_Img {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.Icon .Icon_Img img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.Icon .titleTw {
    font-size: 16px;
    color: #222;
    letter-spacing: 0.8px;
    text-align: center;
    font-weight: 400;
    margin-top: 20px;
    white-space: nowrap;
}
.aboutBox2 .Txt_bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* aboutBox3 */
.aboutBox3{
    position: relative;
    z-index: 5;
    padding: 7.5% 0px;
    margin-top: -4px;
    background-image: url(../images/website_image/bg_gray.webp);
}
.aboutBox3 .decoMainBox {
    top: -80%;
    right: 0;
    left: auto;
    margin: 0 auto;
    height: 400px;
    z-index: 6;
}
.aboutBox3 .decoMainBox .decoLine {
    height: 250px;
}
.aboutBox3::after{
    content: "";
    display: block;
    position: absolute;
    width: 94%;
    height: 100%;
    background-image: url(../images/website_image/bg_box3.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    top: 0%;
    left: 6%;
}
.aboutBox3 .aboutBox{
    width: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}
.aboutBox3 .classBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.aboutBox3 .aboutBox .Txt{
    border: 1px solid #ededed;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    width: 82%;
    margin-right: 3%;
}
.aboutBox3 .aboutBox .Txt .Txt_title{
    background-color: #eee;
    padding: 20px 75px;
    color: #7e587c;
    position: relative;
}
.aboutBox3 .aboutBox .Txt .Txt_title::before{
    content: "";
    display: block;
    position: absolute;
    width: 23%;
    height: 5px;
    bottom: -2px;
    right: -1px;
    background-color: #7e587c;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.aboutBox3 .aboutBox .Txt .Txt_title h2{
    margin: 10px 0;
}
.aboutBox3 .aboutBox .Txt .Txt_main{
    padding: 65px 75px;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil {
    width: 50%;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #7e587c;
    margin-right: 15px;
    color: #fff;
    position: relative;
    padding: 0px 10px;
    font-size: 15px;
    width: 80px;
    height: 30px;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil:nth-child(2) span{
    width: 55px;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil:nth-child(2) span:before{
    width: 61px;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil span:before {
    content: "";
    position: absolute;
    display: block;
    top: -3px;
    left: -3px;
    width: 86px;
    height: 36px;
    border: 1px solid #ccc;
    animation: 12s img-rotate linear infinite;
    transform-origin: center;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil a{
    color: #454545;
    font-size: 22px;
    font-weight: 600;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil a:hover{
    color: #888;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil a img {
    transition: transform 0.3s ease;
}
.aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil a:hover img{
    animation: soft-bounce 1s ease-in-out infinite;
}
@keyframes soft-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
/* aboutBox4 */
.aboutBox4{
    position: relative;
    z-index: 1;
    padding: 4% 25px;
    background-color: #7e587c;
    color: #fff;
}
.aboutBox4::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/website_image/bg_box4.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}
.aboutBox4 .aboutBox{
    width: 100%;
    opacity: 3;
    position: relative;
}
.aboutBox4 .titleMainBox .Txt_title{
    text-align: center;
}
.aboutBox4 .titleMainBox .titleTw{
    color: #fff;
}
.aboutBox4 .titleMainBox .titleEn{
    color: #CCC;
}
ul.Txt_process{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0 70px;
    padding: 0;
}
.Txt_process li {
    width: 22%;
    margin: 0 1.5%;
    position: relative;
    border: 1px solid #ccc;
    background-color: #fff;
}
.Txt_process li:nth-child(even){
    top: 27px;
}
.Txt_process .process_img {
    padding: 20px;
    background-color: #f5f5f5;
}
.Txt_process .process_text {
    position: relative;
    padding: 13px 20px 30px;
    font-size: 16px;
    color: #454545;
    line-height: 1.5;
    letter-spacing: 0.8px;
}
.Txt_process .process_btn {
    color: #fff;
    background-color: #444;
    display: inline-block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    padding: 4px 13px;
    transform: translateX(-50%);
    font-size: 15px;
    line-height: 1.5;
}
.Txt_process .process_text .num{
    font-size: 22px;
    font-weight: bold;
    line-height: 2;
    color: #7e587c;
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}
.Txt_process .process_text .num::before {
    content: "";
    position: absolute;
    display: block;
    width: 34%;
    height: 1px;
    bottom: 0;
    left: 33%;
    background-color: #7e587c;
}
.Txt_process .process_text .num::after{
    content: "";
    position: absolute;
    display: block;
    width: 12%;
    height: 3px;
    bottom: -1px;
    left: 44%;
    border-radius: 4px;
    background-color: #7e587c;
}
.aboutBox4 .scrollDown {
  position: absolute;
  bottom: -100px;
  right: 50px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15px;
  height: 280px;
}
.aboutBox4 .scrollDown span.text {
    cursor: pointer;
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 20px;
}
.aboutBox4 .scrollDown span.line {
  width: 2px;
  height: calc(100% + 20px);
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.aboutBox4 .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: white;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.aboutBox4 .scrollDown span.decoStar {
  width: 14px;
  height: 14px;
  margin: 15px 0;
  background-image: url(../images/website_image/star.png);
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

/* aboutBox5 */
.aboutBox5{
    position: relative;
    z-index: 1;
    padding: 5% 0;
    background-image: url(../images/website_image/bg_box5.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.aboutBox5 .classBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.aboutBox5 .aboutBox .Txt{
    border: 1px solid #ededed;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    width: 65%;
    margin-right: 3%;
}
.aboutBox5 .aboutBox .Img{
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    padding: 7% 0;
    align-items: center;
    z-index: 5;
    position: relative;
}
.aboutBox5 .aboutBox .Txt .Txt_title{
    background-color: #eee;
    padding: 20px 40px;
    color: #7e587c;
    position: relative;
}
.aboutBox5 .aboutBox .Txt .Txt_title::before{
    content: "";
    display: block;
    position: absolute;
    width: 23%;
    height: 5px;
    bottom: -2px;
    right: -1px;
    background-color: #7e587c;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.aboutBox5 .aboutBox .Txt .Txt_title h2 {
    margin: 10px 0;
}
.aboutBox5 .aboutBox .Txt .Txt_main{
    padding: 50px 60px;
}
.aboutBox5 ul.Txt_process {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0 50px;
    padding: 0;
}
.aboutBox5 .Txt_process .process_text {
    color: #454545;
}
.aboutBox5 .Txt_process .process_img {
    padding: 0px;
}
.aboutBox5 .Txt_process li:nth-child(even) {
    top: 0px;
}
.aboutBox5 .Txt_process .process_btn {
    color: #fff;
    background-color: #444;
    display: inline-block;
    position: absolute;
    top: -15px;
    bottom: auto;
    left: 50%;
    padding: 5px 13px;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 1.5;
    width: 70%;
    text-align: center;
}
.aboutBox5 .Txt_process .process_text {
    padding: 13px 20px;
    text-align: center;
}

/* 關於我們 結束 */
@media (max-width: 1800px) {
.Txt_Img {
    left: 40%;
}
.aboutBox4 .scrollDown {
    right: 5px;
}
}
@media (max-width: 1300px) {
  .Txt_process li {
    width: 47%;
    margin: 10px 1.5%;
}  
.aboutBox5 ul.Txt_process {
    margin: 20px 0;
}
}
@media (max-width: 1000px) {
.titleMainBox .text_pointBox{
    flex-direction: column;
}
.titleMainBox .text_pointBox .left {
    border-right: 0px solid #d291bc;
    border-bottom: 4px solid #d291bc;
    padding-right: 0px;
    padding-bottom: 20px;
    margin-right: 0px;
    margin-bottom: 20px;
}
.s_bannerBox1 .Txt h3 {
    font-size: 30px;
    letter-spacing: 2px;
}
.s_bannerBox1 .Txt .btn2 {
    width: 120px;
    line-height: 40px;
    margin-left: 5%;
}
.Txt_process li {
    width: 47%;
    margin: 20px 1.5%;
}
ul.Txt_process {
    margin: 0 0 50px;
}
.aboutBox5 .aboutBox .Img {
    display: none;
}
.aboutBox5 .aboutBox .Txt {
    width: 94%;
    margin-right: 3%;
    margin-left: 3%;
}
}
@media (max-width: 768px) {
    /**/
    body {
        font-size: 16px;
    }
.logo {
    width: calc(100% - 60px);
    display: flex;
    align-items: center;
}
    a.logo img {
        height: 35px;
        top: -2px;
    }
    .barBTN {
        position: absolute;
        top: 50%;
        right: 0px;
        transform: translate(0%, -50%);
    }
    .logo span {
        font-size: 17px;
        line-height: 1.3;
        width: calc(100% - 48px);
        display: inline-flex;
        height: 60px;
        align-items: center;
        padding-right: 5px;
    }
    .linknav {
        position: absolute;
        top: 60px;
        left: 0;
    }
    .banner_txt > h1 {
        font-size: 20px;
        line-height: 2em;
    }
    span.banner_title {
        font-size: 24px;
    }
    .banner_txt > p {
        font-size: 16px;
    }
    .video div iframe {
        height: 45vh;
    }
    .titleBox .title {
        font-size: 21px;
        padding: 25px 0 10px;
    }
    .title > span {
        font-size: 14px;
    }
    .titleBox > .title::before {
        height: 18px;
    }
    .titleBox > .title::after {
        width: 150%;
    }
    .s_bannerBox1 .wrap {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        position: relative;
        align-items: stretch;
    }
    .s_bannerBox1 .Txt {
        flex-direction: column;
    }
    .s_bannerBox1 .Img {
        margin-left: -75px;
    }
    .s_bannerBox1 .Txt {
        flex-direction: column;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .s_bannerBox1 .Txt h3 {
        font-size: 18px;
        letter-spacing: 0px;
        margin-bottom: 5px;
    }
    .s_bannerBox1 .Txt .btn2 {
        width: 80px;
        line-height: 30px;
        margin-left: 0;
        font-size: 15px;
        bottom: -5px;
    }
    /**/
    .decoMainBox .decoTxt {
        font-size: 14px;
    }
    .aboutBox1 {
        padding: 50px 15px 50px;
    }
    .aboutBox1 .aboutBox .imgBox {
        width: 90%;
        margin: 0 auto;
    }
    .aboutBox1 .aboutBox .Txt {
        width: 100%;
        padding-top: 40px;
    }
    .titleMainBox .titleTw {
        font-size: 20px;
        letter-spacing: 0;
    }
    .titleMainBox .titleEn {
        font-size: 14px;
        margin: 10px 0 10px;
    }
    .aboutBox1::before {
        width: 100%;
        top: 85vw;
        z-index: -1;
    }
    .aboutBox1 .aboutBox .imgBox .Img {
        width: auto;
    }
    .aboutBox1 .aboutBox .Txt h3 span {
        width: 75px;
        height: 75px;
        margin-right: 30px;
    }
    .aboutBox1 .aboutBox .Txt h3 {
        font-size: 24px;
    }
    .aboutBox1 .aboutBox .Txt h3 span strong {
        font-size: 30px;
        line-height: 30px;
    }
    .aboutBox1 .aboutBox .Txt h3 span strong::before {
        width: 25px;
        height: 25px;
    }
    .imgTeacher .img_tea::before {
        top: 8px;
        left: 8px;
    }
    .titleMainBox .text {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0px;
    }
    .aboutBox2 {
        padding-top: 50px;
    }
    .aboutBox2 .aboutBox .TxtBox .Txt {
        margin: 0px 0 0;
        padding: 50px 30px;
    }
    .aboutBox2 .aboutBox .Txt > h3 {
        font-size: 18px;
        padding: 10px;
        letter-spacing: 0px;
        margin: 0px 0 37px;
    }
    .aboutBox2 .aboutBox .TxtBox {
        width: 95%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        margin: -40px 0 0 10px;
        padding-bottom: 0px;
    }
    .aboutBox2 .aboutBox .Txt > h3::before {
        bottom: -8px;
        width: 60px;
        height: 60px;
    }
    .aboutBox2 .aboutBox .Txt::before {
        width: 4px;
        left: 38px;
    }
    .aboutBox2 .aboutBox .Txt > p {
        font-size: 15px;
        margin: 10px 20px 10px 68px;
    }
    .aboutBox2::before {
        background-position: left bottom;
        background-size: 100% auto;
    }
    .aboutBox2 .nowrap .Img .img_comp {
        width: 46.5%;
        margin: 13px 0;
    }
    .aboutBox2 .nowrap .Img {
        padding: 10% 2%;
        clip-path: polygon(0% 0%, 100% 7%, 100% 95%, 0% 100%);
    }
    .Icon .item {
        margin: 30px 10px 0;
    }
    .Icon .titleTw {
        font-size: 15px;
        margin-top: 20px;
        letter-spacing: 0px;
    }
    .Icon .item:first-child::before {
        right: -10px;
    }
    .Icon .Icon_Img img {
        width: 40px;
        height: 40px;
    }
    .aboutBox2 .Txt_bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    /**/
    .aboutBox3::after {
        width: 100%;
        left: 0%;
    }
    .aboutBox3 .aboutBox .Txt .Txt_title, .aboutBox5 .aboutBox .Txt .Txt_title, .aboutBox6 .aboutBox .Txt .Txt_title {
        padding: 5px 10px;
    }
    .aboutBox3 .aboutBox .Txt, .aboutBox5 .aboutBox .Txt, .aboutBox6 .aboutBox .Txt {
        width: 100%;
        margin-right: 0%;
    }
    .aboutBox3 .aboutBox .Img, .aboutBox5 .aboutBox .Img, .aboutBox6 .aboutBox .Img {
        width: 100%;
        padding: 25px 0;
    }
    .aboutBox6 .aboutBox .Img, .aboutBox5 .aboutBox .Img{
        padding: 0 0 25px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_title h3, .aboutBox5 .aboutBox .Txt .Txt_title h3, .aboutBox6 .aboutBox .Txt .Txt_title h3 {
        font-size: 20px;
        margin: 0;
        letter-spacing: 0;
    }
    .aboutBox3 .aboutBox .Txt .Txt_title img, .aboutBox5 .aboutBox .Txt .Txt_title img, .aboutBox6 .aboutBox .Txt .Txt_title img {
        width: 32px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_main {
        padding: 40px 20px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_main h4, .aboutBox6 .aboutBox .Txt .Txt_main h4 {
        font-size: 20px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil a {
        font-size: 16px;
        overflow-wrap: break-word;
        word-break: break-all;
        white-space: pre-wrap
    }
    .aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil span {
        width: 60px;
        margin-right: 10px;
        font-size: 13px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil span:before {
        width: 66px;
    }
    .aboutBox3 .aboutBox .Txt .Txt_main .Txt_tel .Txt_stil {
        width: 100%;
        margin-bottom: 15px;
        white-space:nowrap;
    }
    .aboutBox4 {
        padding: 45px 25px;
    }
    .aboutBox5 .aboutBox .Txt .Txt_main {
        padding: 20px 20px 40px;
    }
    .aboutBox5 .aboutBox .Txt .Txt_main .TxtBox .left {
        width: 100%;
        padding: 10px 0px 20px 0;
    }
    .aboutBox5 .aboutBox .Txt .Txt_main .TxtBox .right {
        width: 100%;
    }
}
@media (max-width: 500px) {

    .banner_txt > h1 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    span.banner_title {
        font-size: 24px;
    }
    .banner_txt > p {
        font-size: 14px;
    }
    span.cross {
        width: 15px;
        height: 15px;
    }
    span.cross::before,
    span.cross::after {
        top: calc(50% + 0px);
    }
}
@media screen and (max-width:468px) {
.Txt_process li {
    width: 97%;
    margin: 20px 1.5%;
}
.Txt_process li:nth-child(even) {
    top: 0px;
}
ul.Txt_process {
    margin: 0 0 20px;
}
}
