/*--------------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.8;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Montserrat', 'Noto Sans TC', 'Poller One', 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    color: #4c4c4c;
    background: #000;
}

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;
    transition: .3s ease all;
}

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

img {
    max-width: 100%;
}

::selection {
    background: rgba(238, 223, 206, .9);
    color: #241a18;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    line-height: 1.2;
}

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

/*mibutton*/
.mibutton {
    display: none;
    position: fixed;
    top: 0;
    right: 2em;
    z-index: 50;
    cursor: pointer;
    text-align: left;
    padding: 2em;
    z-index: 110;
}

.mibutton span {
    display: block;
    text-align: center;
    width: 30px;
    height: 3px;
    position: absolute;
    top: 1.6em;
    left: 2em;
    background: #663d44;
    transition: .3s ease all;
}

.mibutton span:nth-child(2) {
    top: 2.1em;
    width: 35px;
}

.mibutton span:nth-child(3) {
    top: 2.6em;
    width: 40px;
}

.mibutton_ani span {
    opacity: 1;
    background: #3f3f3f;
}

.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) {
    width: 30px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

/*navbar*/
.navbar {
    background: #fff;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    margin: 0;
    border-radius: 0;
    min-height: auto;
    border: 0px solid transparent;
    transform: translateY(-100%);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.attop {
    transform: translateY(0);
}

.intop {
    transform: translateY(0) !important;
}

/*logo*/
.logo {
    width: 25%;
}
.logo a {
    display: inline-block;
}

/*ibutton*/
.ibutton {
    width: 70%;
    text-align: right;
}

.ibutton li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    text-align: left;
    width: 12%;

}

.ibutton .ibimg {
    display: inline-block;
    width: 20%;
    padding-top: 0.5em;
    vertical-align: top;
}

.ibutton .ibtext {
    display: inline-block;
    width: 75%;
}

.ibutton a {
    position: relative;
    padding: 1em 0;
}

.ibutton a:after {
    content: '';
    background: rgba(0, 0, 0, .5);
    width: 0;
    height: 8px;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: .6s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: .2s;
}

.ibutton a:hover:after {
    right: initial;
    left: 0;
    width: 100%;
}

.ibtext .ch {
    font-family: 'Zen Maru Gothic';
    font-size: 20px;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
}

.ibtext .en {
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 1.8;
    color: #808080;
    font-weight: 400;
}

@media (max-width:1500px) {
    .mibutton {
        display: block;
    }

    .ibutton {
        display: none;
        overflow-y: auto;
        text-align: center;
        max-height: 85vh;
        padding: 1em;
        width: 100%;
    }

    .ibutton li {
        width: 13%;
    }

    .ibutton .ch:before {
        left: -1em;
    }

    .navbar {
        display: block;
        text-align: left;
    }

    .logo a {
        display: inline-block;
        padding: .5em 0 0 2em;
    }

}

@media (max-width: 1200px) {
    .ibutton li {
        width: 18%;
    }
}

@media (max-width: 768px) {
    .ibutton li {
        width: 25%;
    }

    .mibutton {
        top: -13px;
    }
}

@media (max-width:560px) {
    .ibutton li {
        width: 48%;
    }

    .logo img {
        width: 260px;
    }
}

@media (max-width:450px) {
    .logo {
        width: 40%;
    }

    .logo a {
        padding: .5em 0 0 1em;
    }

    .logo img {
        width: 210px;
    }

    .mibutton {
        top: -8px;
        right: 1.5em;
    }

    .ibutton li {
        width: 100%;
    }

    .ibutton .ibimg {
        width: 37%;
        text-align: right;
    }

    .ibutton .ibtext {
        width: 48%;
        text-align: left;
    }
}

/***********************/
/*carousel-fade*/
.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
    z-index: 2;
}

.carousel-inner>.item>img {
    display: inline-block;
}

/***header***/
header {
    position: relative;
    height: 100vh;
    z-index: 0;
}

.dex_bg {
    background: url(../../images/dex_bg.jpg) top center no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
}

.dex_warp {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
}

.dex_left {
    margin: auto;
    text-align: left;
    padding-left: 10em;
}

.dex_left img {
    padding-bottom: 4em;
}

.dex_left h2 {
    font-size: 72px;
    font-family: 'Poller One';
    color: #dbdbd9;
    font-weight: 400;
}

.dex_left h4 {
    font-size: 30px;
    font-family: 'Zen Maru Gothic';
    color: #dbdbd9;
    font-weight: 700;
    padding-bottom: 0.5em;
}

.dex_left p {
    font-size: 18px;
    font-family: 'Noto Sans TC';
    color: #acacab;
    padding-bottom: 3em;
}

.dex_left button {
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #dbdbd9;
    background: #000;
    padding: 0.5em 2em 0.5em 1em;
    display: inline-block;
    transition: .5s all;
    border-width: 0;
    position: relative;
    width: 42%;

}

.dex_left button:hover {
    box-shadow: 0px 0px 7px 3px #282828;
}

.dex_left button:before {
    content: '';
    position: absolute;
    background: url(../../images/dexib_deco.png)center center no-repeat;
    width: 14px;
    height: 8px;
    top: 1em;
    right: 1.5em;
    transition: .5s all;
}

.dex_left button:hover:before {
    transform: translateX(10px);
}

.dex_right {
    width: 48%;
}

/***ilogo_area***/
.ilogo_area {
    position: absolute;
    top: 5em;
    left: 10em;
    width: 245px;
    text-align: center;
    z-index: 10;
}

img.dex_text {
    padding: 1em 0;
}

img.scroll {
    animation: updown 1.2s infinite alternate cubic-bezier(0.12, 0, 0.39, 0);
    -webkit-filter: drop-shadow(4px 2px 5px rgba(255, 255, 255, 0.5));
    filter: drop-shadow(4px 2px 5px rgba(255, 255, 255, 0.5));
}

@keyframes updown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(15px);
    }
}

/***dex_deco***/
img.dd1 {
    position: absolute;
    top: 3em;
    right: 10em;
    z-index: 1;
}

img.dd2 {
    position: absolute;
    bottom: 3em;
    left: 2em;
}

img.dd3 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.dex {
    text-align: right;
    position: relative;
    left: -10em;
}

.carousel-inner,
.item {
    height: 100vh;
}

.item img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 78vw;
}

@media (max-width:1200px) {
    .dex_left {
        width: 40%;
        padding-left: 1em;
    }
    .dex {
    left: -2em;
}
}

@media (max-width:991px) {}

@media (max-width:768px) {
    .dex_left {
        width: 90%;
        padding: 8em;
    }

    .dex_right {
        width: 90%;
    }

    .carousel-inner,
    .item {
        height: 68vh;
    }
}

@media (max-width:450px) {
    
    .dex_left {
        padding: 2em 1.5em 0 1em;
    }
.dex_left img {
    padding-bottom: 2em;
}
.dex_left button:before {
    right: 1em;
}
    .carousel-inner,
    .item {
        height: 43vh;
    }
    .item img {
    width: 90vw;
}
.dex {
    left: 1em;
}
}

@media (max-width:390px) {
    .dex_left {
        padding: 2em 1.5em 0 0;
    }
}

@media (max-width:350px) {
    .dex_left {
        padding: 2em 0;
    }
}

@media screen and (max-width: 320px) {
    .dex_left h2 {
        font-size: 48px;
    }

    .carousel-inner,
    .item {
        height: 30vh;
    }
}

/***main***/
.main {
    position: relative;
    z-index: 10;
}

/***about***/
.about {
    background: url(../../images/about_bg.jpg) top center repeat;
    position: relative;
    z-index: 1;

}

.about:before {
    content: '';
    background: url(../../images/about_deco01.png) top right no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 1652px;
    max-width: 100%;
    height: 1178px;
    z-index: -1;
    opacity: 0.5;

}

.about:after {
    content: '';
    background: url(../../images/about_deco02.png) bottom left no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1155px;
    max-width: 100%;
    height: 1344px;
    z-index: -1;
    opacity: 0.5;

}

.about_title {
    display: inline-block;
    margin-top: 4em;
}

.about_title img {
    padding-right: 2em;
}

.about_title h2 {
    display: inline-block;
    font-size: 45px;
    font-family: 'Poller One';
    color: #b6133a;
    position: relative;
    padding: 0 1.5em 0 0;
}

.about_title h2:after {
    content: '';
    background: url(../../images/title_deco02.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.8em;
    left: 0;
    width: 293px;
    height: 29px;
}

.about_title h3 {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Zen Maru Gothic';
    line-height: 1.5;
    color: #1a1a1a;
    position: relative;

}

.about_title h3:after {
    content: '';
    background: url(../../images/title_deco03.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    width: 125px;
    height: 10px;
}

.warp1 {
    max-width: 1368px;
    margin: 0 auto;
    margin-top: 5.2em;
}

.ab1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}

.ab1 .ab1_text {
    width: 35%;
    padding: 1em 0em 2em 0em;
    vertical-align: middle;
    margin: 0 auto;
}

.ab1 .ab1_text h5 {
    font-size: 20px;
    font-family: 'Noto Sans TC';
    color: #1a1a1a;
    line-height: 1.8;
    padding-bottom: 1.5em;
}

.ab1 .ab1_text p {
    font-size: 18px;
    font-family: 'Noto Sans TC';
    color: #4c4c4c;
    line-height: 1.8;
	text-align: justify;
}

.ab1 .ab1_img01 {
    width: 60%;
    order: -1;
}

.ab2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    position: relative;
    top: -5em;
}

.ab2 .ab2_text {
    width: 48%;
    padding: 9em 4em 4em 4em;
    vertical-align: middle;
    margin: 0 auto;
}

.ab2 .ab2_text p {
    font-size: 16px;
    font-family: 'Montserrat';
    color: #4c4c4c;
    line-height: 1.8;
}

.ab2 .ab2_img01 {
    width: 48%;
    position: relative;
    top: -2em;
    right: -5.2em;
}

@media screen and (max-width: 1400px) {
    .ab2 .ab2_text {
        padding: 8em 4em 4em 4em;
    }

    .ab2 .ab2_img01 {
        right: 0.8em;
    }
}

@media screen and (max-width: 1200px) {
    .about:before {
        background-size: 70%;
    }

    .about:after {
        opacity: 0.5;
        background-size: 70%;
    }

    .ab2 {
        top: 1em;
    }

    .ab2 .ab2_img01 {
        top: -2em;
    }
}

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

@media screen and (max-width: 991px) {
    .about_title {
        max-width: 70%;
    }

    .ab1 .ab1_text {
        width: 95%;
        padding: 2em 2em 2em 2em;
    }

    .ab1 .ab1_img01 {
        width: 95%;
    }

    .ab2 {
        top: 0;
    }

    .ab2 .ab2_text {
        width: 95%;
    }

    .ab2 .ab2_img01 {
        width: 95%;
        top: 0;
        right: 0;
        order: -1;
    }
}

@media screen and (max-width: 767px) {
    .about_title h2 {
        font-size: 37px;
        padding: 0;
        width: 65%;
    }

    .about_title h2:after {
        background-size: 100%;
        left: -2em;
    }

    .about_title h3 {
        font-size: 27px;
        width: 30%;
    }
}

@media screen and (max-width: 450px) {
    .about {
        margin-top: 4em;

}
    .about_title {
        max-width: 100%;
        margin-top: 5em;
    }    
    .about_title h2:after {}

    .about_title h2 {
        font-size: 30px;
        width: 47%;
    }

    .about_title h2:after {
        background-size: 65%;
        left: -1em;
    }
}

@media screen and (max-width: 414px) {
    .warp1 {
        margin-top: 4em;
    }

    .about_title h2 {
            width: 80%;
    padding-left: 0.5em;
    }
    .about_title h3 {
    width: 40%;
    padding: 0.5em;
}
.about_title h3:after {
    left: 0.5em;
}

    .ab1 .ab1_text {
        padding: 1em;
    }

    .ab2 .ab2_text {
       padding: 1em 1em 4em 1em;
    }

}

@media screen and (max-width: 390px) {
    .about_title h2 {
        width: 55%;
    }
}

@media screen and (max-width: 320px) {
    .about_title h2 {
        width: 71%;
    }

    .about_title h3 {
        width: 40%;
        padding-top: 0.5em;
    }
}

/***pro***/
.pro {
    background: url(../../images/pro_bg.jpg) top center repeat;
    position: relative;
    z-index: 1;
    padding-bottom: 1.5em;

}

.pro:before {
    content: '';
    background: url(../../images/pro_deco01.png) top right no-repeat;
    position: absolute;
    top: 5em;
    right: 0;
    width: 362px;
    height: 336px;
}

.pro_title {
    display: inline-block;
    margin-top: 4em;
}

.pro_title img {
    padding-right: 2em;
}

.pro_title h2 {
    display: inline-block;
    font-size: 45px;
    font-family: 'Poller One';
    color: #b6133a;
    position: relative;
    padding: 0 0.5em 0 0;
    vertical-align: top;
}

.pro_title h2:after {
    content: '';
    background: url(../../images/title_deco02.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.8em;
    left: -0.4em;
    width: 333px;
    height: 29px;
}

.pro_title h3 {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Zen Maru Gothic';
    line-height: 1.5;
    color: #1a1a1a;
    position: relative;
    padding-right: 1em;
    vertical-align: top;

}

.pro_title h3:after {
    content: '';
    background: url(../../images/title_deco03.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    width: 125px;
    height: 10px;
}

.pro_title span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Noto Sans TC';
    line-height: 1.8;
    color: #1a1a1a;
    position: relative;
    width: 36%;

}

.warp2 {
    max-width: 1225px;
    margin: 0 auto;
    margin-top: 3.2em;
}

.pro1 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}

.pro_content {
    width: 24%;
    padding: 1em 0.5em 3em;
    text-align: center;
}

.pro_text {
    text-align: left;
}

.pro_text h3 {
    font-size: 20px;
    font-family: 'Noto Sans TC';
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: 0.5px;
    padding-top: 1em;
}

.pro_text h4 {
    font-size: 13px;
    font-family: 'Montserrat';
    color: #808080;
    line-height: 1.5;
    list-style: 0.5;
    letter-spacing: 0px;
}

.pro_desc span {
    font-size: 16px;
    font-family: 'Noto Sans TC';
    color: #4c4c4c;
    display: inline-block;
    vertical-align: top;
    letter-spacing: 0px;
}

.pro_desc span:nth-of-type(1) {
    font-weight: 600;
}

.pro_desc span:nth-of-type(2) {
  
}

.pro_color span {
    font-size: 16px;
    font-family: 'Noto Sans TC';
    color: #4c4c4c;
    display: inline-block;
    vertical-align: top;
    letter-spacing: 0px;
}

.pro_color span:nth-of-type(1) {
    font-weight: 600;
}

.pro_color span:nth-of-type(2) {
    
}

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

    .pro:before {
        top: 9em;
        background-size: 50%;
    }
}

@media screen and (max-width: 1200px) {
    .warp2 {
        margin-top: 4em;
    }

    .pro_title span {
        width: 100%;
        padding-top: 3em;
    }



}

@media screen and (max-width: 1024px) {
    .pro:before {
        top: 4em;
    }

    .pro_text {
        padding: 0;
    }
}

@media screen and (max-width: 991px) {
    .pro_text {
        padding: 0 1.7em;
    }

    .pro_title img {
        display: block;
    }

    .pro_title h2 {
        width: 45%;
        padding: 0.2em 0.5em 0 0;
    }

    .pro_title h3 {
        padding: 0.2em 0.5em 0 0;
    }

    .pro_content {
        width: 50%;
    }

    .pro_text h3 {
        padding-top: 0.5em;
    }
}

@media screen and (max-width: 767px) {
    .pro_content {
        padding: 1em 0.5em;
    }

    .pro_text {
        padding: 0;
    }

    .pro_title h2 {
        font-size: 37px;
        width: 50%;
    }

    .pro_title h2:after {
        left: -1em;
    }

    .pro_title h3 {
        font-size: 27px;
        width: 30%;
    }

}

@media screen and (max-width: 450px) {
    .pro:before {
        top: 2em;
        background-size: 30%;
    }
    .pro_title img {
    display: none;
}

    .pro_title h2 {
    font-size: 30px;
    width: 80%;
    padding-left: 0.9em;
}

    .pro_title h2:after {
        left: -0.7em;
    background-size: 72%;
    }

    .pro_title h3 {
        font-size: 27px;
        width: 30%;
    }
    .pro_title span {
    padding: 2em 1.5em 0.5em;
}
}

@media screen and (max-width: 414px) {
    .pro_title h3 {
        width: 50%;
    padding-left: 0.9em;
    }
.pro_title h3:after {
    left: 0.9em;
}
    .warp2 {
        margin-top: 2em;
    }

    .pro_content {
        width: 100%;
        padding: 0 0 3em 0;
    }

    .pro_text {
        padding: 0 3.9em;
    }
}

@media screen and (max-width: 390px) {
    .pro_title h2 {
        width: 62%;
    }

    .pro_text {
        padding: 0 3em;
    }
}

@media screen and (max-width: 320px) {
    .pro_title h2 {
        width: 72%;
    }

    .pro_title h3 {
        width: 45%;
        padding-top: 0.5em;
    }

    .pro:before {
        background-size: 20%;
    }
}

/***con***/
.con {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    background: #d9d9d9;
}

.contact {
    width: 50%;
}

.contact img {}

.contact_inner {    
    background: #d9d9d9;
}
.contact_title{
	padding-top: 2em;
}
.contact_title h2 {
    display: inline-block;
    font-size: 45px;
    font-family: 'Poller One';
    color: #b6133a;
    position: relative;
    padding: 0 0.5em 0 0.5em;
    vertical-align: top;
}

.contact_title h2:after {
    content: '';
    background: url(../../images/title_deco02.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.8em;
    left: 0;
    width: 333px;
    height: 29px;
}

.contact_title h3 {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Zen Maru Gothic';
    line-height: 1.5;
    color: #1a1a1a;
    position: relative;
    padding-right: 1em;
    vertical-align: top;

}

.contact_title h3:after {
    content: '';
    background: url(../../images/title_deco03.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    width: 125px;
    height: 10px;
}

.contact_inner .text {
    padding: 4.8em 0 5em 20em;
}

.contact_inner .text h3 {
    font-size: 20px;
    font-family: 'Noto Sans TC';
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.contact_inner .text h4 {
    font-size: 13px;
    font-family: 'Noto Sans TC';
    line-height: 1.5;
    color: #808080;
}

.contact_inner ul {
    padding-top: 0.5em;

}

.contact_inner ul li {
    font-size: 16px;
    font-family: 'Noto Sans TC';
    line-height: 1.5;
    color: #4c4c4c;
    padding: 0.2em;

}

.contact_inner ul li span {
    display: inline-block;
    vertical-align: top;
}

.contact_inner ul li span:nth-of-type(1) {
    display: inline-block;
    width: 3%;
}

.contact_inner ul li span:nth-of-type(2) {
    display: inline-block;
    width: 90%;
}

/***inq****/

.inq {
    width: 50%;
}

.inq img:nth-of-type(1) {}

.inq_inner {
    background: #dbdbdb;
}

.inq_title {
	padding-top: 2em;
	padding-left: 2em;
    text-align: left;
    position: relative;

}

.inq_deco01 {
    position: absolute;
    top: 2em;
    right: 0;
}

.inq_title h2 {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Zen Maru Gothic';
    line-height: 1.5;
    color: #1a1a1a;
    position: relative;
    padding-right: 1em;
    vertical-align: top;
    width: 31%;
    text-align: left;

}

.inq_title h2:after {
    content: '';
    background: url(../../images/title_deco02.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.8em;
    left: -0.8em;
    width: 293px;
    height: 29px;
    background-size: 82%;
}

.inq_title h3 {
    display: inline-block;
    font-size: 45px;
    font-family: 'Poller One';
    color: #b6133a;
    position: relative;
    padding: 0 0.5em 0 0;
    vertical-align: top;
}

.inq_title h3:after {
    content: '';
    background: url(../../images/title_deco03.png) bottom center no-repeat;
    position: absolute;
    bottom: -0.2em;
    left: -0.3em;
    width: 125px;
    height: 10px;
}

.inq_inner .text {
    text-align: left;
    padding: 4.8em 14em 3em 2em;
}

.contact_title2 {
    padding-bottom: 3em;
}

.contact_title2 p:nth-of-type(1) {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Noto Sans TC';
    line-height: 1.8;
    color: #1a1a1a;
    padding-bottom: 0.3em;
}

.contact_title2 p:nth-of-type(2) {
    font-size: 18px;
    font-family: 'Noto Sans TC';
    line-height: 1.8;
    color: #4c4c4c;
}

.contact_title2 b {
    letter-spacing: 0;
    font-weight: normal;
    line-height: 1;
    padding: 0 1em;
}

.contact_title2 a {
    color: #4d4d4d;
    display: inline-block;
    letter-spacing: 1px;
}

/*conatct form*/
.form-control {
    border: 1px solid #c1667c;
    border-radius: 50px;
    box-shadow: none;
}

label {
    font-weight: normal;
    display: inline-block;
    width: 16%;
    vertical-align: top;
    font-family: 'Noto Sans TC';
    font-weight: 600;
}

input[type="radio"] {
    background: #fff;
    border: solid 1px #f5a626;
}

input.type1 {
    display: inline-block;
    width: 63%;
}

.style2 {
    width: 66%;
    display: inline-block;
}

.style3 {
    width: 85%;
}

.style4 label {
    color: #4d4d4d;
    padding: 0 .5em;
    font-size: 15px;
    cursor: pointer;
}

textarea#ps {
    min-height: 120px;
    border-radius: 20px;
}

.style3 input:nth-of-type(2) {
    margin-top: .5em;
    min-height: 80px;
    border-radius: 20px;
}

.ibtn2 {
    text-align: center;
    margin: 2em 0;
}

.ibtn2 input {
    text-align: center;
    color: #fff;
    background: #000;
    position: relative;
    padding: .5em 4em;
    letter-spacing: 2px;
    transition: .3s ease all;
    border-color: transparent;
    width: 31%;
}

.ibtn2 input:hover {
    background: #c1667c;
    color: #000;
}

@media screen and (max-width: 1400px) {
    .contact_title {
        width: 86%;
    }

    .contact_title h2 {
        width: 56%;
    }

    .contact_inner .text {
        padding: 6em 0 5em 1em;
    }

    .inq_title {
        padding-top: 3em;
    }

    .inq_title h2 {
        width: 40%;
    }

    .inq_inner .text {
        padding: 6em 0em 3em 0em;
    }
}

@media screen and (max-width: 1200px) {
    .contact_title h2 {
        width: 65%;
    }

    .inq_title h2 {
        width: 44%;
    }

    input.type1 {
        width: 59%;
    }

    .style4 label {
        width: 18%;
    }
}

@media screen and (max-width: 1024px) {
    .contact_title {
        width: 100%;
    }

    .contact_title h2 {
        width: 62%;
    }

    .inq_title h3:after {
        left: 0.2em;
    }
}

@media screen and (max-width: 991px) {
    .contact {
        width: 100%;
    }

    .contact_title h2 {
        width: 36%;
        padding: 0;
    }

    .contact_title h2:after {
        left: -0.7em;
    }

    .contact_inner .text {
        padding: 4em;
    }

    .con_deco01 {
       
    }

    .inq {
        width: 100%;
    }

    .inq_title {
        padding-top: 0;
    }

    .inq_title h2 {
        width: 26%;
    }

    .inq_inner .text {
        padding: 4em;
    }
}

@media screen and (max-width: 767px) {
    .contact_title h2 {
        width: 53%;
        padding: 0 0.5em 0 0;
        font-size: 37px;
    }

    .con_deco01 {
        vertical-align: top;
    }

    .contact_title h3 {
        font-size: 27px;
    }

    .contact_title2 {
        text-align: left;
    }

    .contact_inner ul li span:nth-of-type(1) {
        width: 5%;
    }

    .inq_title {
        padding-top: 3em;
    }

    .inq_title h2 {
        width: 37%;
        font-size: 27px;
    }

    .inq_title h2:after {
        left: -2em;
        background-size: 69%;
    }

    .inq_title h3 {
        font-size: 37px;
    }

    .inq_inner .text {
        padding: 2.5em 1em 2em;
        margin: 0 auto;
        text-align: center;
    }

    label {
        width: 19%;
        text-align: left;
    }

    input.type1 {
        width: 56%;
    }

    .style4 label {
        width: 20%;
    }

    .style2 {
        text-align: left;
    }

    .form-group {
        text-align: left;
    }
}

@media screen and (max-width: 450px) {
    .contact_title {
    padding-top: 2.5em;
}
    .contact_title img:nth-of-type(1){
    	display: none;
    }
    .contact_title h2 {
        width: 66%;
    }
   .con_deco01 {
    max-width: 190%;
    position: relative;
    left: -1em;
}
    .contact_inner .text {
        padding: 2em 1em 2em;
    }
    .inq_title {
    padding-top: 2.5em;
    padding-left: 0.5em;
}

    .inq_title h2 {
        width: 46%;
    }
.inq_title h3 {
    padding-left: 0.3em;
    padding-top: 1em;
}
.inq img:nth-of-type(1) {
    display: none;
}
    label {
        width: 24%;
    }

    input.type1 {
        width: 98%;
    }

    .style4 label {
        width: 27%;
    }

    .style2 {
        width: 73%;
    }

    .style3 {
        width: 99%;
    }
    .ibtn2 input {
    width: 45%;
    padding: 0.5em 3em;
}
.inq_deco01 {
    display: none;
}
}

@media screen and (max-width: 414px) {
    .contact_title h2 {
    width: 80%;
    padding-left: 0.5em;
}

    .contact_title h2:after {
    left: -0.9em;
    background-size: 65%;
}
.contact_title h3 {
    padding: 0.7em;
}
.contact_title h3:after {
    bottom: 0.2em;
    left: 0.7em;
}

    .inq_title h2 {
    width: 80%;
    padding-left: 0.5em;
}

    .inq_title h2:after {
    left: -1.5em;
    background-size: 65%;
}
.inq_title h3:after {
    left: 0.4em;
    top: 1.7em;
}
.inq_title h3:after {
    left: 0.3em;
    top: 2.2em;
}
}

@media screen and (max-width: 390px) {
    .contact_title h2 {
        width: 60%;
    }

    

    .inq_title h2 {
        width: 40%;
    }

    .inq_title h2:after {
        left: -1.3em;
    }
}

@media screen and (max-width: 320px) {
    .contact_title h3 {
        padding-top: 0.5em;
    }

    .inq_title h2 {
        width: 48%;
    }

    .inq_title h3 {
        padding-top: 0.5em;
    }

    label {
        width: 36%;
    }

    .style2 {
        width: 99%;
    }
}





/***footer***/
footer {
    background: url(../../images/footer_bg.jpg) repeat;
    text-align: center;
    position: relative;
    z-index: 10;
}

.call {
    width: 30%;
    text-align: center;
    margin: 0 auto;
    padding: 2em 0;
    transition: .5s all;

}

.call a:hover {
    filter: grayscale(100%);
}

.call a p {
    width: 35%;
    text-align: center;
    margin: 0 auto;
    background: #b6133a;
    padding: 0.5em 2em;
    color: #fff;
    font-size: 18px;
    font-family: 'Noto Sans TC';
}

.ftwrap {
    max-width: 1248px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width:1400px) {
  .call a p {
    width: 40%;
}    
}
@media (max-width:1200px) {
    .call a p {
    width: 47%;
}

    
}

@media (max-width:991px) {
.call a p {
    width: 60%;
}
  

}

@media (max-width:768px) {
    .call a p {
    width: 100%;
}
.call {
    width: 40%;
}
}
@media (max-width:450px) {
footer img:nth-of-type(1){
	vertical-align: top;
}
}
@media (max-width:350px) {
    .call {
    width: 60%;
}
}

/*ftlist*/
.ftlist {
    display: inline-block;
    vertical-align: top;
    padding: 1em 0 1em 1em;
    font-size: 16px;
}
.ftlist:nth-of-type(1){
   width: 25%;
       padding: 0;
}
.ftlist:nth-of-type(2){
   width: 25%;
   vertical-align: top;
}
.ftlist:nth-of-type(3){
	width: 49%;
}
.ftinfo {
    text-align: left;
}

.ftinfo h6 {
    font-size: 20px;
    color: #1a1a1a;
    font-family: 'Noto Sans TC';
    line-height: 1.5;
}

.ftinfo h6 span {
    font-size: 13px;
    color: #808080;
}

.ftinfo ul {
    padding-top: .5em;
}
.ftinfo ul li span {
    position: relative;
    font-size: 16px;
    color: #4c4c4c;
    font-family: 'Noto Sans TC';
}
.ftinfo ul li span:nth-of-type(1){
	    display: inline-block;
   width: 3%;
   vertical-align: top;
   padding-right: 0.2em;
}

.ftinfo ul li span:nth-of-type(2){
	    display: inline-block;
	width: 90%;
}
/*ftlink*/
.ftlink {
    text-align: center;
}

.ftbtn li {
    display: inline-block;
    width: 31%;
    padding: 1em .5em;
}

.ftbtn li a {
    color: #000;
}

.ftbtn li img:nth-of-type(1) {
    transition: .5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ftbtn li img:nth-of-type(2) {
    -webkit-filter: drop-shadow(0px -3px 1px rgb(89, 57, 14, 1));
    filter: drop-shadow(0px -3px 1px rgb(89, 57, 14, 1));
    transition: .3s ease all;
}

.ftbtn li p {
    margin-top: -.5em;
}

.ftbtn li a:hover {
    color: #fff;
}

.ftbtn li a:hover img:nth-of-type(1) {
    transform: translateY(-10px);
    opacity: .5;
}

.ftbtn li a:hover img:nth-of-type(2) {
    -webkit-filter: drop-shadow(0px 0px 0px rgb(89, 57, 14, 1));
    filter: drop-shadow(0px 0px 0px rgb(89, 57, 14, 1));
}



.website {
	line-height: 2;
}
.website a{
	color: #4c4c4c;
}
.website a span {
    display: inline-block;
    font-size: 16px;
}

.website a span:nth-of-type(1) {    
    display: inline-block;
    position: relative;
    line-height: 1;
    padding: 0 .5em;
    width: 37%;
    font-family: 'Noto Sans TC';
}

.website a:hover {
    color: #b6133a;
}

.website a span:nth-of-type(2) {
    display: inline-block;    
    font-family: 'Montserrat';
}

/*ftbtm*/
.ftbtm {
    text-align: left;
    font-size: 16px;
    padding: 0 1em;
    position: relative;
}
.footer_bot{
	max-width: 1248px;
    text-align: center;
    margin: 0 auto;
    padding: 3em 0;
}
/*share*/
.share {
    color: #bab9b9;
    font-size: 11px;
    font-family: 'Montserrat';
    display: inline-block;
    width: 24%;
    text-align: left;
}

.share a {
    color: #e2bf8f;
    font-size: 14px;
    display: inline-block;
}

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


/*ftrt*/
.ftrt {
    color: #bab9b9;
    font-size: 14px;
    display: inline-block;
    top: 0;
    right: 0;
    width: 75%;
    text-align: right;
}

.ftrt a {
    color: #bab9b9;
    display: inline-block;
}

.ftrt a:hover {
    color: #b6133a;
}

#gotop {
    position: fixed;
    bottom: 5em;
    right: 1em;
    z-index: 50;
    cursor: pointer;
    display: none;
}

#gotop img {
    -webkit-filter: drop-shadow(5px 0px 5px rgba(17, 8, 8, .5));
    filter: drop-shadow(5px 0px 5px rgba(17, 8, 8, .5));
    transition: .3s cubic-bezier(0.25, 1, 0.5, 1);
}

#gotop:hover img {
    transform: translateY(-10px);
}

@media (max-width:1580px) {
    
    
}

@media (max-width:1440px) {
	
}

@media (max-width:1200px) {
.ftlist:nth-of-type(1) {
    width: 22%;
}
   .ftlist:nth-of-type(2) {
    width: 23%;
}
.website a span:nth-of-type(1) {
    width: 51%;
}
}

@media (max-width:991px) {
  .website a span:nth-of-type(1) {
    width: 73%;
}  
.ftbtm {
    text-align: center;
} 
.ftlist:nth-of-type(3) {
    width: 45%;
}
    #gotop {
        width: 80px;
    }
}
@media (max-width: 768px){
	.ftlist:nth-of-type(1) {
    width: 95%;
    text-align: center;
}
.ftlist:nth-of-type(2) {
    width: 71%;
}
.ftlist:nth-of-type(3) {
    width: 85%;
}
.ftbtm {
	text-align: left;
    padding: 0 2.8em;
}
.website a span:nth-of-type(1) {
    width: 36%;
}
.ftrt {
    width: 100%;
    text-align: center;
}
.ftinfo ul li span:nth-of-type(1) {
    width: 5%;
}
.share {
    width: 100%;
    text-align: center;
}
}
@media (max-width:450px) {
    .ftlist:nth-of-type(2) {
    width: 100%;
    padding: 1em 0;
}

    #gotop {
            width: 60px;
    bottom: 1em;
    }    
}
@media (max-width: 414px){
	.ftbtm {
    padding: 0 6em;
}
.website a span:nth-of-type(1) {
    width: 48%;
}
.ftlist:nth-of-type(3) {
        padding: 0 2em;
    width: 100%;
}
}
@media (max-width: 390px){
	.website a span:nth-of-type(1) {
    width: 50%;
}
.ftlist:nth-of-type(3) {
    width: 90%;
}
}
@media (max-width: 350px){
	.ftlist:nth-of-type(2) {
    width: 100%;
}
.ftbtm {
    padding: 0 1em;
}
.website a span:nth-of-type(1) {
    width: 34%;
}
.ftlist:nth-of-type(3) {
    width: 100%;
    padding: 0 0.2em;
}
}
/**/
#about, #pro {
    transform: translateY(-50px);
}
#con {
    transform: translateY(-78px);
}
#inq {
    transform: translateY(-78px);
}

@media (max-width:991px) {
#inq {
    transform: translateY(910px);
}
}

@media (max-width:768px) {
  #con {
    transform: translateY(-60px);
}  
#inq {
    transform: translateY(790px);
}
}

@media (max-width:450px) {
   #inq {
    transform: translateY(700px);
}
}




/***location***/
.location {
    padding: 1em 0;
    margin: 0 auto;
}

.location_list {
    position: relative;
    margin-bottom: 3em;
    text-align: center;
}

.map {
    position: relative;
    height: 400px;
    width: 90%;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #c1667c;
    border-radius: 20px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.loc_info {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 2em 3em;
    color: #f9e8d3;
}

.loc_info h6 {
    font-size: 24px;
    padding: 0 0 1em 0;
}

.loc_info h6 span {
    font-size: 14px;
}

.loc_info ul {
    font-size: 16px;
    padding: 1em 0 0;
    position: relative;
}

.loc_info ul:before {
    content: '';
    width: 27px;
    height: 1px;
    background: #59493f;
    position: absolute;
    top: 0;
    left: 0;
}

.loc_info li {
    padding: .5em 0;
}

.loc_info li p {
    display: inline-block;
    vertical-align: top;
    width: 90%;
    padding-left: .5em;
}

.loc_info li img {
    opacity: .3;
}

.loc_info li:nth-of-type(1) p {
    font-size: 20px;
}

.loc_info li:nth-of-type(1) img {
    opacity: 1;
}

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

    .intitle {
        top: 9em;
    }

    .location {
        padding: 5em 0;
    }
}

@media (max-width:991px) {
    .map {
        width: 100%;
    }

    .loc_info {
        width: 100%;
        padding: 2em 1em;
    }

    .inbanner {
        min-height: 430px;
    }

    .intitle {
        top: 8em;
    }
}

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

    .intitle {
        top: 7em;
        width: 100%;
        left: 0;
        transform: none;
        text-align: center;
    }

    .intitle img {
        max-width: 80%;
    }

    .location {
        padding: 4em 0;
    }

    .map {
        height: 300px;
    }

    .location_list {
        margin-bottom: 2em;
    }
}

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

    .intitle {
        top: 6em;
    }

    .intitle img {
        max-width: 70%;
    }

    .map {
        height: 250px;
    }

    .loc_info h6 {
        font-size: 22px;
    }
}

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

    .intitle img {
        max-width: 80%;
    }

    .intitle {
        top: 5em;
    }

    .location {
        padding: 2em 0;
    }

    .location_list {
        margin-bottom: 1em;
    }

    .loc_info ul {
        font-size: 15px;
    }

    .loc_info li:nth-of-type(1) p {
        font-size: 18px;
    }

    .loc_info {
        padding: 1.5em 1em 1em;
    }
}

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

    .intitle img {
        max-width: 85%;
    }

    .map {
        height: 200px;
    }

    .loc_info {
        padding: 1.5em 0em 1em;
    }

    .loc_info h6 {
        font-size: 20px;
    }

    .loc_info h6 span {
        font-size: 12px;
    }
}

@media (max-width:350px) {
    .intitle img {
        max-width: 90%;
    }

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

/*---apply-------------------------------------------------------------------------------------------------------------------------------*/
.ui-widget {
    font-family: inherit !important;
    font-size: 1.1em;
}
/*apply*/
.apply {
    width:1000px;
    margin:0 auto;
    max-width:90%;
    padding-bottom:7em;
    position:relative;
}
.apply iframe {
    width: 100%;
    height: 600px;
}
.apply label {
    width:48%;
    text-align:left;
    padding:0 1em;
    font-weight:normal;
}
.apply td {
    padding-bottom:1em;
}

table.tb1 input[type=text], textarea,table.tb1 input[type=date] {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 90%;
    background: rgb(255, 255, 255);
    border: solid 1px #dadada;
    border-radius: 5px;
    height: 40px;
    box-shadow: 1px 1px 1px rgb(158, 170, 175,.5);
}
.apply .s {
    display:inline-block;
    width:25%;
}
.apply .s input[type=text] {
    width:60px;
}
.apply input[type=submit],.apply input[type=reset] {
    background: #fff;
    border: solid 1px #a7a7a7;
    border-radius: 5px;
    padding: 10px 13px;
    letter-spacing: 1px;
    box-shadow: 2px 2px 1px rgba(0,0,0,.3);
    transition: .2s ease all;
    width: 150px;
    margin: 0 1%;
    color: #000;
}
.apply input[type=button]:hover,.apply input[type=reset]:hover,.apply input[type=submit]:hover {
    background: rgba(0,0,0,.8);
    box-shadow: 0px 0px 1px rgba(0,0,0,.3);
    color: #fff;
}
.apply input[type=reset] {
    background: rgb(173, 176, 176);
}
/*remark*/
.remark {
    text-align:center;
    color:#e64c2e;
    font-size:20px;
    margin-top:1em;
}
table.tb2 input[type=text],table.tb2 input[type=date] {
    box-shadow:none;
    width:80%;
    background: rgb(255, 255, 255);
    border: solid 1px #dadada;
    border-radius: 5px;
    height: 40px;
}
.table-condensed>tbody>tr>td {
    padding:10px;
}
.side {
    text-align:right;
}
    @media screen and (max-width:800px) {
        .apply label {
            width:100%;
        }
        .apply .s {
            width:30%;
            margin:.2em 0;
        }
        .apply iframe {
            width: 100%;
            height:800px;
        }
    }
    @media screen and (max-width:660px) {
        .apply .s {
            width:45%;
        }
    }
    @media screen and (max-width:480px) {
        table.tb1 tr {
            border-bottom: dashed 1px #dedede;
            display:block;
            padding:.5em 0;
        }
        table.tb1 td {
            padding-bottom: .5em;
            display: block;
            text-align: left !important;
            width: 100% !important;
        }
        .side {
            text-align:left;
        }
        .apply label {
            padding:0 1em 0 0;
        }
        table.tb1 input[type=text], textarea,table.tb1 input[type=date] {
            width:100%;
        }
        .apply table.tb2 tr {
            border-bottom: dashed 0px #dedede;
            padding: .5em 0;
        }
        .apply .s {
            width:40%;
        }
        .apply {
            padding-bottom:2em;
        }
        table.tb2 input[type=text], table.tb2 input[type=date] {
            width:100%;
        }
        .table-condensed>tbody>tr>td {
            padding: 5px;
        }
    }
    @media screen and (max-width:350px) {
        .apply .s {
            width: 48%;
        }
        .apply input[type=submit], .apply input[type=reset] {
            width: 100%;
            margin: .5em 0;
        }
        .apply {
            padding-bottom:6em;
        }
    }
