/*--------------copyright by vicky start-------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
    letter-spacing: 2px;
    font-size: 10px;
    font-family: 'Noto Serif TC', 'Noto Sans TC', 'Chivo', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

td {
    vertical-align: top;
}

a {
    display: block;
    color: #303030;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #303030;
}

img {
    max-width: 100%;
}

::selection {
    background: rgba(204, 204, 204, 1);
}

/************************************************************************************************************************************************
************************************************************************************************************************************************
************************************************************************************************************************************************/

/************************/
/****head001 start****/
header {
    z-index: 90;
    position: relative;
}

/*mibutton*/
.mibutton {
    position: fixed;
    top: 2em;
    right: 2em;
    z-index: 50;
    cursor: pointer;
    width: 40px;
    height: 30px;
    text-align: left;
    display: none;
}

.mibutton span {
    display: block;
    text-align: center;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    transition: .3s ease all;
}

.mibutton span:nth-child(2) {
    top: 10px;
}

.mibutton span:nth-child(3) {
    top: 20px;
}

.mibutton_ani span {
    opacity: 1;
    background: #fff;
	top: -2px;
}

.mibutton_ani span:nth-child(1) {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

.mibutton_ani span:nth-child(2) {
    opacity: 0;
}

.mibutton_ani span:nth-child(3) {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

/*navbar*/
.navbar {
    background: #fff;
    padding: .2em 2em;
    text-align: left;
    border-radius: 0;
    min-height: auto;
    margin: 0;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.navtop,
.intop {
    position: fixed;
    z-index: 30;
    opacity: 1;
    pointer-events: auto;
    background: rgb(28 28 28 / .85);
    transition: .5s ease-in;
}

/*logo*/
.logo {
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    text-align: right;
    padding: 1rem 0;
}

.logo a {
    display: inline-block;
    transition: .3s ease all;
}

.logo a:hover {
    opacity: .7;
}

/*ibutton*/
.ibutton {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: 75%;
}

.ibutton ul {}

.ibutton li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 3.5rem;
    letter-spacing: 3px;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.ibutton li:not(:last-child):after {
    content: '/';
    color: #ffffff;
    position: absolute;
    top: 0;
    right: -1rem;

}

.ibutton a {
    position: relative;
    overflow: hidden;
    transition: .2s ease all;
    color: #ffffff;
    height: 30px;
    letter-spacing: 1px;
    font-family: 'Noto Sans TC';
    font-weight: 500;
}

p.en {
    transition: .3s ease all;
}

p.ch {
    transition: .3s ease all;
}

.ibutton a:hover p.en {
    transform: translateY(-100%);
}

.ibutton a:hover p.ch {
    transform: translateY(-100%);
}

@media (max-width:1024px) {
    .logo {
        width: 25%;
    }

    .ibutton {
        width: 70%;
    }
}

@media (max-width:1080px) {
    img.ft001_logo {
        max-width: 22vw;
    }

    .mibutton {
        display: block;
        top: 1.5em;
    }

    .logo {
        width: 100%;
        text-align: left;
        padding: 1.3em 2em;
    }

    .logo a {
        display: inline-block;
        width: 200px;
    }

    .ibutton {
        width: 100%;
        text-align: center;
        display: none;
        padding-bottom: 1em;
    }

    .ibutton li {
        display: block;
        width: 100%;
        padding: 0;
    }

    .ibutton li a {
        padding: 1em;
        transition: .2s ease all;
        height: auto;
    }

    .ibutton li a:hover {
        background: #4c4c4c;
    }

    p.ch {
        font-size: 16px;
    }

    .ibutton a:hover p.en,
    .ibutton a:hover p.ch {
        transform: translateY(0);
    }

    .navbar {
        padding: 0;
        position: fixed;
        opacity: 1;
        pointer-events: auto;
        background: rgb(28 28 28 / .85);
    }
}

@media (max-width:600px) {
    .logo a {
        width: 160px;
    }

    .mibutton {
        top: 1.3em;
    }
}

@media (max-width:500px) {
    .mibutton {
        right: 1em;
    }

    .ibutton a {
        font-size: 16px;
    }

    .logo {
        padding: .3em 1em;
    }
}

@media (max-width:350px) {
    .mibutton {
        top: 1em;
    }
}

/****head001 end****/
/***********************/
/***a001 start***/
.a001 {
    position: relative;
    background: url(../../images/dex.jpg) top center no-repeat fixed;
    background-size: cover;
    padding: 9rem 0 19rem;
    overflow-x: hidden;
}

.a001:before {
    content: '';
    background: rgba(28, 28, 28, .9);
    position: absolute;
    top: 0;
    right: 0;
    width: 37.8%;
    height: 100%;
}

/*a001_top*/
.a001_top {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

/*a01_right*/
.a01_right {
    text-align: center;
    vertical-align: middle;
    width: 30%;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(190, 102, 62, 0.5));
    filter: drop-shadow(0px 0px 10px rgba(190, 102, 62, 0.5));
}

.a01_right img {}

.a01_right p {
    font-size: 60px;
    font-style: italic;
}

/*a01_left*/
.a01_left {
    text-align: left;
    width: 67%;
    vertical-align: middle;
    padding-top: 24rem;
    padding-left: 27rem;
}

.a01_left p {
    font-size: 30px;
    font-family: 'Noto Serif TC';
    font-weight: 700;
    padding-bottom: .5em;
    margin-bottom: 1.5em;
    position: relative;

}

.a01_left p:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32rem;
    background: #f36f31;
    width: 96px;
    max-width: 100%;
    height: 3px;
}


/*a001_btm*/
.a001_btm {
    position: relative;
    z-index: 3;
    text-align: right;
    padding: 6em 2em 0 1em;    
}

.a001_btm img {
    padding-left: 1em;
    -webkit-filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, .8));
    filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, .8));
}

@media (max-width:1400px) {
    .a01_left {
        padding-top: 14rem;
        padding-left: 13rem;
    }
}

@media (max-width:1200px) {

    .a001 {
        padding: 9em 0 4em;
    }

    .a001_btm img {
        width: 24vw;
    }
}

@media (max-width:990px) {


    .a001:before {
        width: 54vw;
    }

    .a001 {
        background-attachment: inherit;
        padding: 9em 0 2em;
        background-position-x: 30%;
    }

    .a01_left {
        padding-top: 15rem;
        padding-left: 1rem;
        width: 58%;
    }

}

@media (max-width:768px) {

    .a001:before {
        width: 100%;
        top: inherit;
        bottom: 0;
        height: 51%;
    }

    .a001 {
        padding: 8em 0 2em;
        background-position-x: 15%;
    }

    .a001_top {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
        max-width: 90%;
    }

    .a01_left,
    .a01_right {
        width: 100%;
    }

    .a01_left {
        padding-top: 3em;
        text-align: right;
    }

    .a01_left p:after {
        left: auto;
        right: 1rem;
    }

    .a01_right {
        text-align: right;
        padding: 3rem;
    }

    .a01_right img {
        width: 20vw;
    }

    .a001_btm {
        padding: 2em 2em 0 1em;
    }

    .a01_left p {
        margin-bottom: 1em;
    }
}

@media (max-width:600px) {

    .a01_right p {
        font-size: 45px;
    }

    .a001 {
        padding: 7em 0 3em;
        background-position-x: 12%;
    }

    .a01_left p {
        font-size: 25px;
        padding-right: 0;
    }

    .a01_left span {
        font-size: 18px;
        padding-right: 0;
    }

    .a001_btm img {
        width: 28vw;
    }

    .a01_left {
        padding-top: 2em;
    }

    .a001:before {
        height: 55%;
    }

    .a001_btm {
        padding: 2em 1em 0 1em;
    }
}

@media (max-width:450px) {
    .a01_right img {
        width: 30vw;
    }

    .a001 {
        padding: 7em 0 3em;
    }

    .a01_left p {
        font-size: 24px;
        text-align: left;
        margin-bottom: .5em;
    }

    .a01_left p:after {
        right: 4rem;
    }

    .a001_btm img {
        padding-left: .5em;
    }

    .a001:before {
        height: 100%;
        background: rgb(28 28 28 / 50%);
    }
}

@media (max-width:414px) {
    .a01_left {
        padding-left: 0;
    }

    .a01_left p:after {
        right: 2rem;
    }
}

@media (max-width:390px) {
    .a01_left p:after {
        right: 1rem;
        width: 85px;
    }
}

@media (max-width:380px) {
    .a01_left p {
        font-size: 20px;
    }

    .a01_left p:after {
        right: 5rem;
        width: 75px;
    }
    

    .a001_btm img {
        padding-left: .2em;
    }
}

@media (max-width:360px) {
    .a01_left p:after {
        right: 4rem;
        width: 63px;
    }
}

@media (max-width:350px) {
    .a001:before {
        height: 50%;
    }

    .a001_top {
        max-width: 95%;
    }

    .a01_left {
        padding-top: 1em;
    }

    .a01_left p:after {
        right: 5rem;
    }

    .a001 {
        padding: 4em 0 1em;
    }

    .a01_right p {
        font-size: 35px;
    }

    .logo a {
        width: 110px;
    }
}

@media (max-width: 320px) {
    .a01_left p:after {
        right: 2rem;
    }
}

/***a001 end***/
/*****************************/
/***a010 start***/
.a010 {
    max-width: 1368px;
    margin: 0 auto;
    padding: 12.4rem 0 3.8rem;
    display: flex;
    justify-content: space-between
}

.a010_left {}

.a010_right {
    margin-top: 5.9rem;
    width: 47%;
}

.a010_right .txt {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 8.9rem;
}

.a010_right .txt .txt_left {
    width: 45%;
    padding-top: 2.3rem;
    padding-bottom: 12.7rem;
    position: relative;
}

.a010_right .txt .txt_left:before,
.a010_right .txt .txt_left:after {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
}

.a010_right .txt .txt_left:before {
    top: 0;
    left: 0;
}

.a010_right .txt .txt_left:after {
    bottom: 0;
    left: 0;
}

.a010_right .txt .txt_left h3 {
    font-size: 34px;
    color: #606060;
    font-weight: bold;
    font-family: 'Noto Serif TC';

}

.a010_right .txt .txt_left span {
    font-size: 45px;
    color: #f36f31;
    font-family: 'Chivo';
    text-transform: uppercase;

}

.a010_right .txt .txt_right {
    width: 54%;
    padding-top: 5rem;
}

.a010_right .txt .txt_right p {
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
    text-align: justify;
    line-height: 1.4;
}

@media screen and (max-width: 1400px) {
    .a010 {
        padding: 12.4rem 2rem 3.8rem;
    }

    .a010_left {
        padding-right: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .a010_right .txt {
        flex-wrap: wrap;
        margin-bottom: 2.9rem;
    }

    .a010_right .txt .txt_left {
        width: 80%;
        padding-bottom: 4.3rem;
    }

    .a010_right .txt .txt_right {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .a010_right {
        margin-top: 0;
    }
}

@media screen and (max-width: 850px) {
    .a010_right {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .a010 {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
        padding: 6.4rem 2rem 3.8rem;
    }

    .a010_left {
        padding-right: 0;
        width: 95%;
    }

    .a010_right {
        width: 95%;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 350px) {
    .a010_right .txt .txt_left span {
        font-size: 40px;
    }

    .a010_right .txt .txt_left h3 {
        font-size: 30px;
    }
}

/***a010 end***/
/*****************************/
/***a008 start***/
.a008 {
    background: #f2f2f2;
    width: 100%;
    padding: 7.5rem 0 8rem;
    margin: 0 auto;
    overflow-x: hidden;
}

.a008 .a008_top {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 13.8rem;
}

.a008 .a008_top h2 {
    display: inline-block;
    width: 53%;
    font-size: 36px;
    color: #f36f31;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    line-height: 1.7;
    margin-right: 10rem;
}

.a008 .a008_top p {
    display: inline-block;
    width: 34%;
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
}

.a008 .a008_bot {
    position: relative;
    text-align: right;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.a008 .a008_bot:before {
    content: '';
    background: #d0cecd;
    width: 1291px;
    max-width: 100%;
    min-height: 252px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.a008 .a008_bot .a008_txt {
    vertical-align: top;
    text-align: right;
    position: relative;
    padding: 8.5rem 1rem 0 2rem;
    width: 20%;
    margin-left: 5rem;
}

.a008 .a008_bot .a008_txt p {
    font-size: 12px;
    font-family: 'Chivo';
    color: #f0eae7;
    line-height: 2;
    text-align: left;
}

.a008 .a008_bot .a008_img {
    display: flex;
    justify-content: flex-end;
    margin-left: 2rem;
    width: 70%;    

}

.a008 .a008_bot .a008_img img {
    padding-top: 5.7rem;
    padding-right: 2rem;
    -webkit-filter: drop-shadow(6px 8px 7px rgba(131, 91, 72, 0.35));
    filter: drop-shadow(6px 8px 7px rgba(131, 91, 72, 0.35));
    max-width: 40%;
}

.a008 .a008_bot .a008_img img:last-child {
    padding-right: 0;
}

@media screen and (max-width: 1600px) {
    .a008 .a008_bot .a008_txt {
        width: 40%;
    }
}

@media screen and (max-width: 1400px) {
    .a008 .a008_bot .a008_txt {
        width: 50%;
    }
}

@media screen and (max-width: 1200px) {
    .a008 .a008_bot .a008_txt {
        width: 60%;
    }
}

@media screen and (max-width: 991px) {
    .a008 .a008_top {
        margin-bottom: 5.8rem;
        padding: 0 2rem;
    }

    .a008 .a008_top h2 {
        font-size: 30px;
        margin-right: 4rem;
    }

    .a008 .a008_top p {
        width: 35%;
        font-size: 16px;
    }

    .a008 .a008_bot {
        flex-wrap: wrap;
    }

    .a008 .a008_bot .a008_txt {
        width: 90%;
        padding: 3.5rem 1rem 0 2rem;
    }

    .a008 .a008_bot .a008_img {
        margin: 0 auto;
        width: 85%;
        padding: 0 2rem;
        justify-content: center;
    }

    .a008 .a008_bot .a008_img img {
        padding-top: 2.7rem;
    }
}

@media screen and (max-width: 768px) {
    .a008 {
        padding: 3.5rem 0 8rem;
    }

    .a008 .a008_top {
        max-width: 80%;
    }

    .a008 .a008_top h2 {
        width: auto;
        margin-right: 0;
        padding-bottom: 2rem;
    }

    .a008 .a008_top p {
        width: auto;
    }
}

@media screen and (max-width: 576px) {
    .a008 .a008_top {
        max-width: 95%;
    }

    .a008 .a008_bot .a008_img {
        flex-wrap: wrap;
        width: 95%;
    }

    .a008 .a008_bot .a008_img img {
        max-width: 100%;
        padding-right: 0;
    }
}

@media screen and (max-width: 450px) {
    .a008 .a008_top {
        margin-bottom: 3.8rem;
        max-width: 100%;
    }

    .a008 .a008_top h2 {
        font-size: 20px;
    }

    .a008 .a008_top p {
        font-size: 15px;
    }

    .a008 .a008_bot .a008_txt {
        padding: 3.5rem 1rem 0 0rem;
        margin-left: 3rem;
    }
}

@media screen and (max-width: 360px) {
    .a008 .a008_top h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 340px) {
    .a008 .a008_top h2 {
        font-size: 16px;
    }
}

/***a008 end***/
/***********************/
/***f_text02 start***/
.f_text02 {
    background: url(../../images/f_text02_bg.jpg) top center no-repeat;
    width: 100%;
    min-height: 1080px;
    background-size: cover;
}

.f_text02_inner {
    background: url(../../images/f_text02_mask.png) top center no-repeat;
    width: 1197px;
    max-width: 100%;
    min-height: 1080px;
    margin: 0 auto;
    padding: 33rem 0 0;
    text-align: center;
}

.f_text02_inner .f_text02_title {
    position: relative;
    padding: 2.4rem 0 6.7rem;
}

.f_text02_inner .f_text02_title:before {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.f_text02_inner .f_text02_title:after {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 42px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.f_text02_inner .f_text02_title span {
    font-size: calc(21px + 24 * (100vw - 320px)/1600);
    color: #f36f31;
    font-family: 'Chivo';
    text-transform: uppercase;
}

.f_text02_inner .f_text02_title h3 {
    font-size: 34px;
    color: #82736f;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    padding-top: 2rem;
}

.f_text02_inner p {
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
    line-height: 3;
    padding: 2.5rem 0 9rem;
}

.f_text02_inner h5 {
    font-size: calc(15px + 21 * (100vw - 320px)/1600);
    color: #606060;
    font-family: 'Noto Serif TC';
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .f_text02_inner {
        padding: 33rem 2rem 0;
    }
}

@media screen and (max-width: 500px) {
    .f_text02 {
        min-height: 820px;
    }

    .f_text02_inner {
        min-height: 820px;
        padding: 21rem 2rem 0;
    }

    .f_text02_inner p {
        font-size: 14px;
        padding: 2.5rem 0 6rem;
    }
}

@media screen and (max-width: 450px) {
    .f_text02 {
        min-height: 560px;
    }

    .f_text02_inner {
        min-height: 560px;
        padding: 10rem 2rem 10rem;
        background: rgba(255, 255, 255, .8);
    }

    .f_text02_inner p br {
        display: none;
    }
}

/***f_text02 end***/
/***********************/
/***d005 start***/
.d005 {
    background: url(../../images/d005_deco01.png) top center no-repeat, url(../../images/d005_bg.png) top center repeat;
    width: 100%;
    background-size: contain;
    padding: 13.5rem 0 6rem;
    margin: 2.5rem auto 0;

}

.d005_inner {
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
}

.d005_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    padding-left: 4rem;
    margin-bottom: 10rem;
}

.d005_top .d005_title {
    padding: 6.3rem 0;
    position: relative;
}

.d005_top .d005_title:after {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
}

.d005_top .d005_title:before {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.d005_top .d005_title span {
    font-size: calc(21px + 24 * (100vw - 320px)/1600);
    color: #f36f31;
    font-family: 'Chivo';
    text-transform: uppercase;
}

.d005_top .d005_title h3 {
    font-size: 34px;
    color: #82736f;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    padding-top: 2rem;
}

.d005_top .d005_txt {
    text-align: left;

}

.d005_top .d005_txt h5 {
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
    font-weight: 400;
    padding-top: 4rem;
    padding-bottom: 3rem;
    line-height: 1.8;
}

.d005_top .d005_txt h6 {
    font-size: 36px;
    color: #606060;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    position: relative;
    left: -2rem;
}

.d005_bot {}

.d005_bot .d005_ser {
    display: flex;
    align-items: center;
}

.d005_bot .d005_ser:nth-child(even) {
    flex-direction: row-reverse;
}

.d005_bot .d005_ser .d005_left {
    width: 50%;
    margin: 0 auto;
    padding: 0 13rem;
}

.d005_bot .d005_ser .d005_left h4 {
    font-size: 30px;
    color: #745242;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.d005_bot .d005_ser .d005_left h4:after {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.d005_bot .d005_ser .d005_left p {
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
    text-align: justify;
}

.d005_bot .d005_ser .d005_right {
    width: 50%;
}

.d005_inner .d005_info {
    width: 74%;
    margin: 6rem auto 0;
}

.d005_inner .d005_info h4 {
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
    padding-bottom: 5rem;
    font-weight: 400;
}

.d005_inner .d005_info p {
    font-size: 16px;
    color: #606060;
    font-family: 'Noto Sans TC';
    text-align: justify;
}

@media screen and (max-width: 1250px) {
    .d005_top {
        padding: 0 2rem;
    }

    .d005_bot {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 1050px) {
    .d005_top .d005_title {
        padding: 6.3rem 2rem 6.3rem 0;
    }

    .d005_top .d005_txt h6 {
        font-size: 30px;
    }
}

@media screen and (max-width: 900px) {
    .d005_top .d005_txt h6 {
        font-size: 25px;
    }

    .d005_bot .d005_ser .d005_left {
        padding: 0 9rem;
    }
}

@media screen and (max-width: 768px) {
    .d005_top {
        flex-wrap: wrap;
    }

    .d005_top .d005_title {
        width: 80%;
    }

    .d005_top .d005_txt {
        width: 100%;
    }

    .d005_top .d005_txt h6 {
        font-size: 26px;
        line-height: 1.8;
        left: -1rem;
        letter-spacing: 1px;
    }

    .d005_bot .d005_ser .d005_left {
        padding: 0 4rem;
    }
}

@media screen and (max-width: 576px) {
    .d005_top .d005_txt h6 {
        font-size: 20px;
    }

    .d005_bot .d005_ser {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-bottom: 5rem;
    }

    .d005_bot .d005_ser .d005_left {
        padding: 0;
        width: 100%;
        margin: 2rem 0;
    }

    .d005_bot .d005_ser .d005_right {
        width: 100%;
    }

    .d005_bot .d005_ser:nth-child(even) {
        flex-direction: initial;
    }

    .d005_inner .d005_info {
        width: 100%;
        padding: 0 2rem;
    }
}

@media screen and (max-width: 500px) {
    .d005_top .d005_txt h5 br {
        display: none;
    }

    .d005_top .d005_txt h6 {
        font-size: 18px;
    }
}

@media screen and (max-width: 450px) {
    .d005 {
        padding: 2.5rem 0 6rem;
    }

    .d005_top .d005_title {
        padding: 3.3rem 2rem 3.3rem 0;
    }

    .d005_top .d005_txt h6 {
        font-size: 15px;
        letter-spacing: 0px;
    }
}

@media screen and (max-width: 360px) {
    .d005_top .d005_txt h6 {
        letter-spacing: -1px;
    }
}

@media screen and (max-width: 350px) {}

/***d005 end***/
/*****************************/
/***inews start***/
.inews {
    background: #f0eae7;
    text-align: center;
    padding: 6.6rem 0;
}

.inews .inews_title {
    position: relative;
    padding: 2.4rem 0 6.7rem;
    margin-bottom: 2.8rem;
}

.inews .inews_title:before {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.inews .inews_title:after {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 42px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.inews .inews_title span {
    font-size: calc(21px + 24 * (100vw - 320px)/1600);
    color: #f36f31;
    font-family: 'Chivo';
    text-transform: uppercase;
}

.inews .inews_title h3 {
    font-size: 34px;
    color: #82736f;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    padding-top: 2rem;
}

.inews_list {
    width: 1200px;
    margin: 0 auto;
    max-width: 90%;
    min-height: 300px;
}

.inews_list a {
    color: #fff;
}

.more {
    padding: 2em 1em;
}

.more a {
    display: inline-block;
    color: #000;
    position: relative;
    letter-spacing: 1px;
    padding: 0 .5em;
}

.more a:before {
    content: '';
    background: #000;
    width: 20px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s ease all;
}

.more a:hover:before {
    width: 100%;
}

@media (max-width:768px) {
    .inews_title {
        padding: .5em 1em .5em;
    }

}

@media (max-width:530px) {
    .inews_title {
    }

}

@media (max-width:450px) {
    .inews_title {
    }

    .more {
        padding: 1em 1em;
    }
}

/***inews end***/
/*****************************/
/***footer002 start***/
.ft002 {
    background: url(../../images/ft002_bg.jpg) top center no-repeat;
    position: relative;
    z-index: 3;
    text-align: left;
    margin-top: 2rem;
}

.ft002_wrap {
    width: 1084px;
    margin: 0 auto;
    max-width: 100%;
    padding: 4em 0 0;
    text-align: center;
}

/*ft002_list*/
.ft002_list {
    display: inline-block;
    vertical-align: top;
    color: #000;
    padding: 0 1em;
}

/*ft_btn*/
.ft_btn {}

.ft_btn a {
    display: inline-block;
    vertical-align: top;
    padding: 0.5rem 2rem;
    -webkit-filter: drop-shadow(0px 0px 0px rgb(51 51 51 / 44%));
    filter: drop-shadow(0px 0px 0px rgb(51 51 51 / 44%));
    transition: .1s linear;
}

.ft_btn a:hover {
    -webkit-filter: drop-shadow(0px 3px 1px rgb(51 51 51 / 44%));
    filter: drop-shadow(0px 3px 1px rgb(51 51 51 / 44%));
    transform: translateY(-3px);
}

/*ft_info*/
.ft002_info {
    font-size: 16px;
    text-align: left;
    color: #f0eae7;
    margin: 0 auto;
    font-family: 'Noto Sans TC';

}

.ft002_info ul {
    width: 41%;
    margin: 0 auto;
    padding-top: 3rem;
}

.ft002_info li {}

.ft002_info li p:nth-of-type(1) {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    width: 26%;
}

.ft002_info li p:nth-of-type(2) {
    display: inline-block;
    vertical-align: top;
    word-wrap: break-word;
    word-break: break-all;
}

/***ft002_btm***/
.ft002_btm {
    text-align: center;
    position: relative;
    padding: 3rem 0;
}

.ft002_btm ul li {
    display: inline-block;
    vertical-align: bottom;
    padding: 0 2rem;
    position: relative;
}

.ft002_btm ul li:not(:last-child):after {
    content: '／';
    color: #f0eae7;
    position: absolute;
    top: 4px;
    right: -8px;
}

.ft002_btm ul li a {
    color: #f0eae7;
    font-size: 16px;
    font-family: 'Noto Sans TC';
    transition: .1s all;

}

.ft002_btm ul li a:hover {
    color: #f36f31;
}


/***ft002_bot***/

.ft002_bot {
    width: 1400px;
    max-width: 100%;
    padding: 2rem 0;
    margin: 0 auto;
}

.ft002_share {
    display: inline-block;
    text-align: left;
    width: 30%;
    color: #f0eae7;
    vertical-align: top;
}

.ft002_share a {
    transition: .2s linear;
    vertical-align: bottom;
    line-height: 1;
    opacity: .6;
    display: inline-block;
}

.ft002_share a:hover {
    opacity: .5;
}

.ft002_copy {
    display: inline-block;
    color: #f0eae7;
    font-size: 16px;
    width: 69%;
    text-align: right;
}


.ft002_copy a, .ft002_copy a h1 {
    transition: .2s linear;
    color: #f0eae7;
    display: inline-block;
	font-size: 16px;
}

.ft002_copy a:hover, .ft002_copy a h1:hover {
    opacity: .7;
}

@media screen and (max-width: 1380px) {
    .ft002_bot {
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .ft002_info ul {
        width: 57%;
    }
}

@media screen and (max-width: 650px) {
    .ft002_share {
        display: block;
        width: 100%;
        padding-bottom: 2rem;
    }

    .ft002_copy {
        display: block;
        width: 100%;
        text-align: left;
    }
}

@media screen and (max-width: 450px) {
    .ft002_info ul {
        width: 100%;
        padding: 3rem 2rem 0;
    }

    .ft002_btm ul li {
        padding: 0 1rem;
        letter-spacing: 1px;
    }

    .ft002_btm ul li:not(:last-child):after {
        right: -9px;
        top: 4px;
    }
	.ft002_list{
		width:80%;
	}
	.ft_btn a {
    padding: 0.5rem 1rem;
}
}

@media screen and (max-width: 390px) {
    .ft002_info li p:nth-of-type(1) {
        width: 30%;
    }
}

@media screen and (max-width: 360px) {
    .ft002_btm ul li {
        padding: 0 .5rem;
    }
}

@media screen and (max-width: 320px) {
    .ft002_btm ul li {
        letter-spacing: -0.5px;
    }
}

/***footer006 end***/
/***********************/
/***top***/
#gotop {
    position: fixed;
    bottom: 3em;
    right: 1em;
    z-index: 10;
    cursor: pointer;
    display: none;
}

#gotop i {
    font-size: 40px;
    color: #191818;
    transition: .2s linear;
}

#gotop:hover i {
    transform: translateY(-5px);
}

.back {
    position: fixed;
    bottom: 6em;
    right: 1.2em;
    z-index: 10;
    text-align: center;
    display: none;
    line-height: 1;
}

.back a {
    color: #F44336;
}

.back a i {
    font-size: 35px;
    transition: .2s linear;
}

.back a p {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0px;
}

.back:hover i {
    transform: translateY(-5px);
}

@media (max-width:768px) {
    #gotop {
        bottom: 4em;
    }

    .back {
        bottom: 6.5em;
    }
}

/***********************/
.space {
    transform: translateY(-82px);
}

@media (max-width:840px) {
    .space {}
}

/***********************/
button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    background: #cabaaa;
    border: solid 1px #303030;
    color: #303030;
    border-radius: 2px;
    font-weight: 400;
    transition: .2s linear;
    padding: 0em 1em;
    height: auto;
    line-height: 2;
    font-size: 16px;
    margin: 5px;
}

button:hover,
html input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
    background: #655749;
    color: #ffffff;
}

.table-responsive {
    border: 0;
    margin: 10px 0;
}

/***news*************************************************************************************************/
.news {
    width: 1200px;
    margin: 0 auto;
    max-width: 90%;
    padding: 6em 0 3em;
    color: #000;
    font-size: 16px;
}

.newslist {
    min-height: 300px;
    text-align: center;
}

.newslist table .h1,
.newslist table .h2,
.newslist table .h3,
.newslist table .h4,
.newslist table .h5,
.newslist table .h6,
.newslist table h1,
.newslist table h2,
.newslist table h3,
.newslist table h4,
.newslist table h5,
.newslist table h6 {
    line-height: normal;
}

/***newslist_rwd***/
.newslist_rwd {
    padding-bottom: 1em;
    text-align: left;
    padding: 0em 1em 1em;
}

.newslist_rwd a {
    position: relative;
    transition: .3s ease all;
    line-height: 1.5;
    color: #000;
    text-align: center;
}

/*npic*/
.npic {
    position: relative;
    width: 300px;
    min-height: 300px;
    transition: .3s ease all;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
}

.npicimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
}

.newslist_rwd a:hover .npic {
    transform: translateY(-5px);
}

/*ntitle*/
.ntitle {
    text-align: center;
    position: relative;
    margin: 1em 0 .5em 0;
    width: 100%;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}

.inews .ntitle p {
    font-size: 24px;
    color: #606060;
    font-family: 'Noto Sans TC';
    font-weight: bold;
}

.ntitle p {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #000;
    font-size: 24px;
    color: #606060;
    font-family: 'Noto Sans TC';
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
}

.ntitle p a {
    display: inline-block;
}

.ntitle p a:nth-of-type(1) {
    display: block;
    overflow: hidden;
}

.ntitle span {
    text-align: left;
    padding: 0 3px;
    font-size: 16px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: .2s ease all;
}

.ntitle b {
    color: #adadad;
    font-weight: 500;
    font-size: 12px;
    padding: 0;
}

.newslist_rwd a:hover .ntitle span {
    color: #d0771c;
}

/*page_num*/
.page_num {
    padding: 1em 0;
}

.page_num a {
    display: inline-block;
}

.inews .page_num {
    display: none;
}

@media(max-width:1080px) {
    .npic {
        min-height: 250px;
        width: 250px;
    }
}

@media(max-width:600px) {
    .npic {
        min-height: 200px;
        width: 200px;
    }

    .newslist_rwd {
        text-align: left;
        padding: 0em .5em 1em;
    }

    .news {
        padding: 3em 0 1em;
    }
}

@media(max-width:500px) {
    .npic {
        min-height: 160px;
        width: 160px;
    }

    .ntitle p {
        font-size: 16px;
    }

    .ntitle {
        margin: .2em 0;
    }

    .news {
        padding: 2em 0 1em;
    }
}

@media(max-width:380px) {
    .npic {
        min-height: 140px;
        width: 140px;
    }
}

@media(max-width:350px) {
    .npic {
        min-height: 120px;
        width: 120px;
    }
}

/***scroll***/
.scroll {
    position: absolute;
    text-align: center;
    left: 27%;
    bottom: 16em;
    z-index: 5;
}

.scroll img {
    animation: enter 1s infinite alternate;
}

@keyframes enter {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(15px);
    }
}

@media(max-width:1260px) {
    .scroll {
        left: 6%;
    }

}

@media(max-width:990px) {
    .scroll {
        display: none;
    }
}

/***inbanner***/
.inbanner {
    background: url(../../images/inbanner.jpg) top center no-repeat;
    background-size: cover;
    min-height: 598px;
    position: relative;
}

.intitle {
    position: absolute;
    padding: 2.4rem 0 6.7rem;
    text-align: center;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.intitle:before {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.intitle:after {
    content: '';
    background: #f36f31;
    width: 62px;
    height: 42px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.intitle span {
    font-size: 45PX;
    color: #f36f31;
    font-family: 'Chivo';
    text-transform: uppercase;
}

.intitle h3 {
    font-size: 34px;
    color: #fff;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    padding-top: 2rem;
}



@media(max-width:1200px) {
    .inbanner {
        min-height: 475px;
    }
}

@media(max-width:900px) {

    .intitle {
        top: 60%;
    }

    .inbanner {
        min-height: 350px;
    }
}

@media(max-width:600px) {

    .inbanner {
        min-height: 300px;
    }
}

@media(max-width:450px) {
	.intitle {
        top: 22%;
    }
	}