@charset "utf-8";
/* CSS Document */

/* -----------------cssreset----------------- */
a{
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

body {
    background: #eee;
    font-family: Arial, Helvetica, "Microsoft JhengHei", Sans-Serif;
    background: #fff;
    position: relative;
}

@media (hover: hover) {
    body * a:hover {
        transition: all 0.2s;
        -moz-transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
}

label[for*='select'] {
    vertical-align: bottom;
}

select, input[type*="text"], input[type*="password"], input[type*="date"], textarea {
    border: 1px solid #cecece;
    box-shadow: inset 0 1px 0.25rem rgba(0, 0, 0, 0.1);
    min-height: 30px;
    min-width: 140px;
}

body, div, dl, dt, dd, ul, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, label {
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
}

iframe {
    width: 100%;
}

iframe, img {
    border: 0;
}

ul {
    list-style: none;
}

legend {
    border-bottom: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clean {
    clear: both;
}

@font-face {
    font-family: 'NotoSerifTC-SemiBold';
    src: url(../../fonts/NotoSerifTC-SemiBold.otf)
}

/* -----------------cssreset----------------- */

input[type*="text"]:focus, textarea:focus, input[type*="password"]:focus {
    background-color: #e6e6e6!important
}


input[type="radio"], input[type="checkbox"] {
    margin: 0 4px;
}

input, select, textarea {
    border-radius: 20.5px;
    font-weight: normal;
    -webkit-border-radius: 20.5px;
    -moz-border-radius: 20.5px;
    -ms-border-radius: 20.5px;
    -o-border-radius: 20.5px;
}

#FontSizeArea {
    background: #ffffff;
}

#FontSizeArea .bg_top {
	position: absolute;
	top: 85px;
	right: 0;
	z-index: 0;
}

.block-text{
    display:block;
}

/* menu*/

.menu2 {
    display: none;
}

#menu_bth {
    display: none;
}


#main_menu .menu2 li a {
    padding-right: 2rem;
    word-break: break-word;
}

#menu_bth {
    cursor: pointer;
    height: 40px;
    background-color: #b7b7b7
}

.top_menu {
    width: 100%;
    max-width: 1600px;
    padding: 0px 0px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
}


.top_menu>li{
    position: relative;
}

.top_menu>li>a {
    color: #3e3a3a;
    display: block;
    min-width: 160px;
    padding: 10px 30px;
    font-size: 1.25em;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
    border-radius: 15px 15px 0 0;
}

.top_menu>li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
        background-color: #2f2725;
     mask: url(../../images/top_icon.png) no-repeat center center;
    mask-size: contain;
    -webkit-mask: url(../../images/top_icon.png) no-repeat center center;
    -webkit-mask-size: contain;
}

.top_menu>li>a:hover:before, .top_menu>li>a.top_menu_fixed::before {
    background: #fff;
}

.top_menu>li>a:hover, .top_menu>li>a.top_menu_fixed {

    background: #2f2725;
    color: #fff;
}

/* 二級選單顯示於一級選單的正下方 */

.top_menu>li>ul {
    width: 100%;
    position: absolute;
    z-index: 9999;
    list-style: none;
    text-align: left;
    background: rgba(242, 242, 243, 0.97);
    box-shadow: 0.868px 4.924px 20px 0px rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: 5px solid #2f2725;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
    top: calc(100% + 7px);
}



.top_menu>li>ul>li {
    height: auto;
    background-image: none;
    display: inline-block;
    vertical-align: top;
    display: block;
}

.top_menu>li>ul>li>a {
    height: auto;
    padding: 9px 14px 9px 18px;
    color: #3e3a39;
    display: block;
    font-size: 1.125rem;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    line-height: normal;
}

.top_menu>li>ul>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2f2725;
    transition: all 0.3s ease;
    z-index: -1;
}

.top_menu>li>ul>li>a:hover {
    color: #fff;
}

.top_menu>li>ul>li>a:hover::before {
    left: 0;
}


/* 第三層選單 */

.sub2 {
    padding-left: 20px;
    margin: 10px 0px;
    list-style:none ;

}

.sub2 li {
    padding: 3px 0px;
}

.sub2 a {
    color: #3e3a39;
    font-size: 1.125em;
}

.sub2 a:before {
    content: "–";
    top: 0px;
    left: -8px;
    position: relative;
}


.sub2 a:hover {
    color: #767676;
}

/* 選單卷軸 */

.sub2::-webkit-scrollbar {
    width: 5px;
    border-radius: 50px;
}

.sub2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #7e7e7e;
    background: #454545;
    border-radius: 50px;
}

.sub2::-webkit-scrollbar-thumb {
    background-color: rgb(0, 0, 0);
    border-radius: 50px;
}

/* page*/

.content_all {
    padding: 36px 114px;
    margin-bottom: 7em;
}

h2 {
    padding: 10px 10px 16px 0;
    font-size: 1.5em;
    display: inline-block;
    color: #2f2725;
    position: relative;
    bottom: -3px;
}

.fsize_20 {
    font-size: 1.25em;
}

.fsize_18 {
    font-size: 1.125em;
}

.ace {
    color: #424242;
    font-size: 100%;
}

.bg01 .ace{
    position: absolute;
}

main{
   background: 
  url(../../in_images/top_bg.png) no-repeat  top  center,
  url(../../in_images/footer_botoom.png) no-repeat right bottom; 
}


.con {
    max-width: 1500px;
    
}


#header {
    position: relative
}

#header .top {
    max-width: 1795px;
    margin: auto;
    position: relative;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px 10px 7px 10px;
}



#logo a {
    line-height: 0;
    display: inline-block;
    padding: 16px;
}

#logo a img{
    height: 4.7rem;
}

.web_tool {
    background: #ccc;
}

.content_nav {
    position: relative;
    z-index: 51;
    padding-left: 100px;
}

.place li {
    display: inline-block
}

.place a {
    display: inline-block;
    font-size: 1.125em;
}

.place .on:hover,.place a:hover{
    color: #51792c;
}

.place .fa-home{
    color: #d4d4d4;
}


.title_box {
    margin: 5px 0px 20px 0px;
    position: relative;
    text-align: left;
    font-size: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.title_box  h2{
font-size: 2.25em;
border-bottom:0px;
padding: 10px 0px ;
bottom: 0px;
}

.content_txt{
    word-break: break-all;
    font-size: 1.125em;
}

.content_txt a:hover {
    color: #51792c !important;
}

.main_bn {
    position: absolute;
    right: 0;
    top: 13px;
}

.main_bn li {
    display: inline-block;
    position: relative;
}

.main_bn li:hover ul {
    display: block
}

.main_bn>li>a {
    line-height: 36px;
    background: #000;
    color: #fff;
    display: inline-block;
    text-align: center;
    position: relative;
    padding: 0 10px 0 30px;
}

.main_bn>li>a:before {
    content: "\f02f";
    position: absolute;
    top: 1px;
    left: 10px;
    font-family: FontAwesome;
    font-size: smaller;
    transition: all 0.3s;
}

.main_bn .main_bn_share:before {
    content: "\f1e0";
}



.main_bn .main_bn_share:hover {
    background: #000;
}

.main_bn2 {
    display: flex;
}

.main_bn2 li {
    display: inline-block;
    position: relative;
    margin-right: 1px;
}

.main_bn2 li:hover ul {
    display: block
}

.main_bn2>li>a:hover, .main_bn2>li>a:focus {
    background-position: 34px -27px !important;
    border: 1px solid transparent;
}

.main_bn2>li>a {
    font-size: 0.75em;
    display: flex;
    text-indent: -20vw;
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: 33px 4px !important;
    border: 1px solid #d8d8d8;
    border-radius: 100%;
    margin: 0px 3px;
}

.main_bn2>li>a.ISL-facebook {
    background: url(../../images/icon-fb.png);
}

.main_bn2>li>a.ISL-facebook:hover, .main_bn2>li>a.ISL-facebook:focus {
    background-color: #2c5194;
}

.main_bn2>li>a.ISL-line {
    background: url(../../images/icon-line.png);
}

.main_bn2>li>a.ISL-line:hover, .main_bn2>li>a.ISL-line:focus {
    background-color: #10bc10;
}

.main_bn2>li>a.ISL-twitter {
    background: url(../../images/icon-x.png);
}

.main_bn2>li>a.ISL-twitter:hover, .main_bn2>li>a.ISL-twitter:focus {
    background-color: #000000;
}
.main_bn2>li>a.ISL-instagram {
    background: url(../../images/icon-instagram.png);
}

.main_bn2>li>a.ISL-instagram:hover, .main_bn2>li>a.ISL-instagram:focus {
    background-color: #c941e1;
}


.main_bn2>li>a.ISL-print {
    background: url(../../images/icon-print.png);
}

.main_bn2>li>a.ISL-print:hover, .main_bn2>li>a.ISL-print:focus {
    background-color: #51792c;
}

.main_bn2>li>a.ISL-youtube {
    background: url(../../images/icon-youtube.png);
}

.main_bn2>li>a.ISL-youtube:hover, .main_bn2>li>a.ISL-youtube:focus {
    background-color: #fe0000;
}

.main_bn2>li>a.ISL-flickr {
    background: url(../../images/icon-flickr.png);
}

.main_bn2>li>a.ISL-flickr:hover, .main_bn2>li>a.ISL-flickr:focus {
    background-color: #c5c5c5;
}

.main_bn2>li>a.ISL-mouse {
    background: url(../../images/icon-mouse.png);
    text-indent: 0;
    display: flex;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    padding-top: 0px;
}

.main_bn2>li>a.ISL-mouse p {
    position: relative;
    top: 43px;
    left: 0px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.main_bn2>li>a.ISL-mouse:hover, .main_bn2>li>a.ISL-mouse:focus {
    background-color: #ea5e10;
}

.main_bn2>li>a.ISL-mouse:hover p, .main_bn2>li>a.ISL-mouse:focus p {
    top: 6px;
}



.gallery_list .float_f, .content_txt .float_f, .faq .float_f {
    float: left;
    clear: both;
    text-align: center;
    margin-bottom: 10px;
    display: block;
    z-index: 1
}
.imgbox figure div,.imgbox .video_box,
.content_txt .imgbox a, .faq .imgbox a, .imgbox a, .imgbox2 a, .imgbox .piclist_box {
    background: #ececec;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
}

.gallery_list .imgbox img, .gallery_list .imgbox2 img, .content_txt .imgbox img, .faq .imgbox img, .pic img, .gallery_list .pic {
    max-height: 220px !important;
    transition: all 0.4s;
}

.imgbox:hover img {
    opacity: 1;
    transform: scale(1.1);
}


.imgbox:hover figure div img{
    transform: scale(1);
}


#content iframe {
    width: 100%;
}

.content_link {
    color: #c60000;
    display: inline-block;
    vertical-align: top
}

.content_link:hover {
    color: #093;
}

.menu_navigation {
    text-align: right;
    font-size: 1em;
    color: #454545;
    display: flex;
}

.top_bottom {
	display: flex;
	justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}


.fontsize_main {
    display: inline-block;
}

.menu_nav {
    color: #ffffff;
    display: inline-block;
    max-width: 1200px;
    margin: auto;
    padding: 0px 15px;
    background: #2f2725;
    text-align: right;
    border-radius: 23px 0px 0px 23px;
    margin-right: 0px;
}

.menu_nav li {
    display: inline-block;
    color: #3e3a39 !important;
    position: relative;
}

.menu_nav>li>a {
    color: #ffffff;
    display: inline-block;
    padding: 11px 5px;
}

.menu_nav a:hover {
    background: #666464;
}

.menu_nav li.nav_parent .nav_focus {
    position: absolute;
    top: 46px;
    right: -9px;
    z-index: 99;
    display: table;
    text-align: right;
    display: none;
}

.nav_search .text {
    color: #3e3a39;
    width: 223px;
    padding: 3px 32px 3px 3px;
}
.menu_nav li.nav_parent .fontsize{
    top: 29px;
    right: -8px;
}
.menu_nav li.nav_parent .nav_focus.active {
    display: block
}

.menu_nav01 {
    border-radius: 0 23px 23px 0;
    display: inline-block;
    max-width: 1200px;
    padding: 3px 15px;
    background: #dfdddc url(../../images/google_lgicon.png) top 14px left 19px no-repeat;
}

.nav_search {
    position: relative;
}

.search_box {
    margin-top: 5px;
    text-align: right
}

.search_main {
    padding: 8px;
    background: #393939;
}

.search_box .icon {
    border: 1px solid #000;
    background-color: #000;
    color: #FFF;
    padding: 2px;
}

.top_search {
    position: relative;
    vertical-align: middle;
    text-align: right;
    display: inline-block;
}

.top_search .text {
    width: 200px;
    height: 30px;
    padding: 0 32px 0 5px;
    background-color: #fff;
}

.nav_search .text2, .top_search .text2 {
    width: 22px;
    height: 22px;
    background: url(../../images/icon_nav_search.png) no-repeat center;
    border: 0px;
    vertical-align: middle;
    position: absolute;
    top: 6px;
    right: 6px;
}

.top_search .text2 {
    top: 7px;
}
.hotkeyword,.hotkeyword a{
    color: #fff;
}
.pic {
    clear: both;
    text-align: center;
    margin-top: 15px;
}

.pic .imgbox {
    display: inline-block;
    margin: 5px 0;
    vertical-align: top
}

.imgbox dt, .imgbox2 dt, .imgbox figure, .imgbox2 figure {
    width: 100%;
    height: 240px;
    display: table;
    table-layout: fixed;
}

#main_type {
    text-align: right;
    margin-bottom: 10px;
    font-size: 1.125em;
}

#main_type * {
    margin-bottom: 5px;
}

.type_word a {
    display: inline-block;
    background: #cccccc;
    border-radius: 5px;
    padding: 3px 14px;
}

#main_type * {
    vertical-align: middle;
}

#main_type input, #main_type select {
    height: 36px;
    padding: 0px 7px;
}

#main_type input[type*="submit"] {
    background: #2f2725;
    border: 1px solid #2f2725;
    color: #fff;
    border: 0;
    padding: 0px 26px;
    margin-left: 5px;
}

#main_type input[type*="submit"]:hover {
    opacity: 0.8;
}

#main_type .white_space input.bn_search {
    vertical-align: top;
    background: #454545;
}

.white_space {
    white-space: nowrap;
}

.type_word {
    color: #313131;
    vertical-align: middle;
}

label {
    vertical-align: middle;
}



#main_type .type_word a.active, .type_word a:hover, .type_word a:hover {
    background: #393939;
    color: #FFF;
}

.search_table {
    border: 1px solid #CCC;
    letter-spacing: 1px;
}

.search_bn {
    border: 0px;
    margin-bottom: -6px;
    margin-bottom: -5px;
}

.icon_go, .bn_search {
    border: 0px;
    background-image: url(images/icon_go.png);
    width: 32px;
    height: 32px;
    vertical-align: middle;
    text-indent: -9999px;
}

.bn_search {
    background-image: url(images/icon_bn_search.png);
    text-indent: -32px;
    font-size: 0;
}

.icon_go:hover, .bn_search:hover {
    opacity: 0.7
}

/*按鈕選單*/

.b_main {
    position: absolute;
    right: 0;
    top: 20px;
    display: none;
}

.b {
    width: 30px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 10px;
    transition: .2s;
    cursor: pointer;
}

.b i {
    width: 30px;
    height: 20px;
    position: absolute;
    display: block;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: .2s;
}

.b1 {
    width: 25px;
    top: 0;
    left: 0;
}

.b2 {
    width: 25px;
    top: 8px;
    left: 0;
}

.b3 {
    width: 25px;
    top: 16px;
    left: 0;
}

.b.on .b1 {
    top: 0;
    left: 0;
    width: 25px;
    transform: translateY(10px) rotate(45deg);
}

.b.on .b3 {
    width: 25px;
    transform: translateY(-6px) rotate(-45deg);
}

.b.on .b2 {
    width: 0;
}

.menu2 .nav_search {
    position: relative;
}

.menu2 .nav_sub:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 9.5px 0 9.5px;
    border-color: #2f2725 transparent transparent transparent;
    position: absolute;
    top: 0;
    right: 20px;
}

.menu2 .nav_search .text {
    border: 1px solid #000;
    width: calc(100% - 60px);
    height: 36px;
    padding-left: 15px;
    background-color: #fff;
    border-radius: 0;
    vertical-align: top;
    float: left;
}

.menu2 .nav_search .text2 {
    border: 0px;
    width: 60px;
    line-height: 30px;
    height: 36px;
    border-radius: 0 15px 15px 0;
    background: #2f2725;
    color: #fff;
    cursor: pointer;
    vertical-align: top;
    position: static;
    float: left;
}

.left_menu {
    position: relative;
    padding:  25px  0px;
}

.left_menu .ace {
    position: absolute
}

.menu_icon {
    position: absolute;
    top: 15px;
    right: 10px;
}

.menu_icon:before {
    content: "\f067";
    font-family: FontAwesome;
    font-size: smaller;
}

.menu_icon-:before {
    content: "\f068";
}




.menu2 {
    padding: 19px 40px;
    background: #ececec;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
     box-shadow: 0px 12px 0px 0px rgba(0, 0, 0, 0.18);
     margin-top: 2em;

}

.menu2 li {
    position: relative;
}



.menu2 li>a {
    display: block;
    color: #3e3a39;
    padding: 8px 5px 8px 12px;
    font-size: 1.375em;
    position: relative;
    font-weight: bold;
    z-index: 1;
    overflow: visible;
}


.menu2 .sub_menu>a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    right: -78px;
    background-color: transparent;
    z-index: -1;
    transition: background-color 0.3s ease;
    border-radius: 0 24.5px 24.5px 0;
}

.menu2 .sub_menu>a:hover::before ,.menu2 .sub_menu->a::before{
    background-color: #000000;
}




.menu2 .sub_menu>a:hover,.menu2 .sub_menu->a ,.menu2 li>a:hover{
    color: #fff;
}



.menu2>li>a {
    border-bottom: 1px dashed #c7c7c7;
}

.menu2 li:last-child a {
    border-bottom: 0;
}



/* .menu2 .sub_menu->a, .menu2>li>a:hover {
    color: #fff;
    background-color: #6e6e6e;
} */

.menu2 span {
    font-size: 30%;
}

.menu2 ul {
    display: none;
    margin-top: 1px;
    padding: 0;
}



.menu2 .sub_sub2>li:last-of-type, .menu2 .sub_sub>li:last-of-type {
    border-bottom: 0;
}

.sub_menu2 {
    position: relative;
}

.menu2 .sub_sub a {
    font-size: 1.125em;
    color: #353535;
    padding: 5px 5px 5px 35px;
    font-weight: normal;
    text-indent: -10px;
}

.menu2 .sub_sub a:before {
    content: "–";
    top: 0px;
    left: -8px;
    position: relative;
}

.menu2 .sub_menu2->a, .menu2 .sub_sub a:hover {
    color: #51752f;
}

.menu2 .sub_sub2 {
    display: none;
}

.sub_menu3 {
    position: relative
}

.menu2 .sub_sub2 a {
    color: #3e3a39;
    padding: 5px 5px 5px 50px;
    margin: 5px 0px;
}

.menu2 .sub_sub2 a:before {
    content: "●";
    top: -1px;
    left: -3px;
    color: black;
    position: relative;
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}

.menu2 .sub_menu3->a, .menu2 .sub_sub2 a:hover {
    background-color: #6e6e6e;
    color: #fff;
    border-radius: 20.5px;
    -webkit-border-radius: 20.5px;
    -moz-border-radius: 20.5px;
    -ms-border-radius: 20.5px;
    -o-border-radius: 20.5px;
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}

.menu2 .sub_menu3->a::before, .menu2 .sub_sub2 a:hover::before{
    color: #fff;
}



.menu2 .sub_sub3 {
    display: none;
}

.menu2 .sub_sub3 a {
    color: #3e3a39;
    padding-left: 82px;
}

.menu2 .sub_sub3 a:before {
    top: 7px;
    left: 70px;
}

.menu2 .sub_menu4->a, .menu2 .sub_sub3 a:hover {
    background-color: #6e6e6e;
    color: #fff;
}

.menu2 .sub_sub4 {
    display: none;
}

.menu2 .sub_sub4 a {
    color: #a1a1a1;
    padding-left: 99px;
}

.menu2 .sub_sub4 a:before {
    top: 7px;
    left: 87px;
}

.menu2 .sub_sub4 a:hover {
    color: #4cbed3;
    padding-left: 75px;
}

.menu2 dl {
    border-top: 1px #ccc dotted;
}

.menu2 dl a {
    color: #313131;
    padding: 10px 0 10px 25px
}

.menu2 dt {
    font-weight: 500
}

.menu2 dt a {
    color: #3c3c3c;
    padding: 5px 0 5px 35px
}

.menu2 dt a:hover {
    background-color: transparent;
    color: #d20000
}

.left_title {
    font-size: 3.750em;
    text-align: right;
    letter-spacing: 2px;
    padding: 0px 114px;
   color: #2f2725;
    font-family: NotoSerifTC-SemiBold, Microsoft JhengHei, 微軟正黑體;
    z-index: 50;
    margin-top: -31px;
}

.content_title {
    font-weight: bold;
    padding: 5px 5px 5px 0;
    position: relative;
}

.imgbox a:hover, .imgbox2 a:hover {
    color: #ee7610;
}

.imgbox span {
    display: block;
    padding: 5px 0;
}

.download li:nth-child(odd) {
    /*單數隔行換色*/
    background-color: #EEE;
}

.download li:nth-child(1) {
    /*首行th設定*/
    width: 100%;
    background-color: #CCC;
    display: table;
    padding: 10px 5px;
}

.download {
    margin: 20px 0;
}

.download_tt {
    color: #000;
    background-color: #CCC;
    padding: 10px 5px;
    font-weight: bold;
}

.download li {
    border-bottom: 1px #ccc solid;
    width: 100%;
    display: table;
    padding: 10px 5px;
}

.download .word {
    background: url(../../images/icon02.png) no-repeat 5px 6px;
    width: 80%;
    color: #000;
    display: table-cell;
    padding-left: 20px;
}

.download a {
    color: #000;
}

.download a:hover {
    color: #093;
}

.download .file {
    width: 20%;
    display: table-cell;
    text-align: center;
}

.download dd {
    display: inline-block;
}

.download .file a {
    width: 16px;
    display: inline-block;
    margin: 2px;
}

#fat_footer {
    padding: 3.5em 0;
    width: 100%;
    margin: auto;
    position: relative;
    background: #ffffff;
}

#fat_footer>ul {
    max-width: 1537px;
    margin: auto;
    padding: 0px 15px;
}

#fat_footer {
    display: none;
}

#fat_footer ul li {
     width: calc(25% - 1.5%); 
    margin-right: 2%;
    float: left;
    color: #3e3a39;
    letter-spacing: 1px;
    text-align: left;
    font-size: 1.125em;
}

#fat_footer ul li:nth-child(4n) {
    margin-right: 0;
}

#fat_footer>ul>li>a {
    color: #3e3a39;
    text-decoration: none;
    font-weight: bold;
}

#fat_footer ul li a:hover {
    color: #767676;
}

#fat_footer ul li ul {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #a5a5a5;
    padding-top: 5px;
    margin-top: 5px;
}

#fat_footer ul li ul li {
    width: 100%;
    font-size: 1rem;
    line-height: 150%;
    color: #313131;
    float: none;
    padding: 2px 5px;
    margin-left: -2px;
}

#fat_footer ul li ul li a {
    color: #3e3a39;
    text-decoration: none;
}

#fat_footer ul li ul li a:hover {
    color: #767676;
}

#ff_btn {
    width: 122px;
    position: absolute;
    top: -59px;
    right: 200px;
    z-index: 1;
}

#ff_btn .btn_open, #ff_btn .btn_close {
    border: 0;
    width: 122px;
    height: 59px;
    background: url(../../images/ff_close.png);
    font-size: 0;
}

#ff_btn .btn_open {
    background: url(../../images/ff_open.png);
}

#ff_btn .btn_close {
    display: none;
}

#ff_btn.active .btn_close {
    display: block;
}

#ff_btn.active .btn_open {
    display: none;
}
#footer {
    background-color: #ffffff;
    color: #3e3a39;
    padding: 0;
    position: relative;
    border-top: 2px solid #efefef;
}

.other_logo{
    justify-content: flex-end;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: 260px;
    gap: 28px 0;
}
.other_logo a{
    display: inline-block;
}

.other_logo a:hover,
.footer_word a:hover, .footer_copyright a:hover {
    opacity: 0.7;
}


.footer_main {
    margin: auto;
    text-align: center;
    padding: 3em 0px 2.5em 0px;
    letter-spacing: 1px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 1500px;
    align-items: center;
}


.f_logo {
    margin-bottom: 25px;
}

.footer_word {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    color: #3e3a39;
    padding: 0px 45px;
    border-left: 1px solid #3e3a39;
    width: calc(100% - 530px);
}

.footer_word a {
    color: #ffbc42;
}

.footer_word strong {
    font-weight: normal;
    margin: 0px 5px;
}

.footer_copyright {
    display: flex;
    align-items: center;
    padding: 0px 45px 0px 45px;
    width: 270px;
    gap: 4rem;
}

.footer_copyright a{
    gap: 20px;
}
.copy_img img {
    margin-right: 10px;
}


.copy_word {
    background: #2f2725;
    color: #fff;
    padding: 0.5em;
}

.copy_word a {
    display: inline-block;
    color: #fff;
}

.bottom_width {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: center;
}

.bottom_width div {
    display: inline-block;
    padding-left: 45px;
}

.bottom_width a{
    display: inline-block;
    padding: 0 6px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.bottom_width a:hover {
    background: #666464;
    
}

.footer_copyright a {
    color: #3e3a39;
}

a.footer_bth {
    margin: 5px;
    border-radius: 17px;
    background: #efefef;
    padding: 2px 12px;
    color: #3e3a39;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
}

a.footer_bth:hover {
    background: #2f2725;
    color: #ffffff;
    opacity: 1;
}
.footer_img{
     margin: 5px;
}

.location_icon_bth {
      margin: 0px 5px;
}


.location_icon_bth {
   background: url(../../images/location_icon.png) no-repeat center center;
   width: 20px;
   height: 25px;
   vertical-align: middle;  
     display: inline-block;
}

.location_icon_bth:hover{
    background: url(../../images/location_icon_h.png) no-repeat center center;
}


.footer_img a {
    padding: 0 10px;
}



a.tel{
    pointer-events: none;
    color:#fff;
}


#table li:nth-child(odd) {
    /*單數隔行換色*/
    background-color: #EEE;
}

#table li:nth-child(1) {
    /*首行th設定*/
    width: 100%;
    background-color: #CCC;
    display: table;
    padding: 10px 5px;
}

#table {
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    padding: 0px;
}

#table li {
    border-bottom: 1px #ccc solid;
    width: 100%;
    display: table;
    padding: 10px 5px;
    ;
}

.table_title {
    width: 25%;
    color: #3e3a39;
    display: table-cell;
    padding: 0 10px 0 0;
}

.table_txt {
    background: url(../../images/icon02.png) no-repeat 5px 6px;
    width: 25%;
    line-height: 150%;
    padding: 0 10px 0 20px;
    display: table-cell;
}

.table_txt a {
    color: #063;
}

.table_txt a:hover, .table_txt a:focus {
    color: #c60000;
}

.no_txt {
    /*<noscript>標籤用*/
    font-weight: bold;
    color: #c60000;
}

.page {
    margin: 10px 0;
    text-align: center;
    font-size: 95%;
}


.page-item select{
    border-radius: 0;
    min-width: auto;
    box-shadow: none;
    border:0px;
    padding: 0px 25px;
}
.page-link{
    color: #333;
    border: 0px;
    padding: .375rem 1.35rem;
    font-size: 1.125em;
    transition: 0s;
}
.page-link:focus,
.page-link:active,
.page-link:hover{
    color: #fff;
    background-color: #2f2725;
    box-shadow:none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}
.page-item{
    display: flex;
    border-right: 1px solid #b9b4ba;
    padding: 0px 0px;
}


.page-item:last-child{
    border-right: 0px;
}

.page-link i{
    display: none;
}

.page-item:first-child .page-link,.page-item:last-child .page-link{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0px;
}

select.page-link:focus,
select.page-link:active,
select.page-link:hover{
    background: #fff;
    color: #333;
    box-shadow:none;
}

.input01 {
    width: 70%
}

.input02 {
    width: 90%
}

.input03 {
    max-width: 80px;
}

.input04 {
    max-width: 175px;
}

.max-width {
    width: 50px;
}

.input06 {
    max-width: 200px;
    padding: 0px;
    background-color: #FFF;
}

.icon a, .enter_bn {
    border-radius: 20.5px;
    background: #2f2725;
    color: #FFF;
    padding: 5px 12px;
    display: inline-block;

}

.icon a i {
    display: inline-block;
    margin-right: 5px;
}

.enter_bn {
    border: 0px;
    border-radius: 5px;
    color: #fff;
    padding: 7px 13px;
    display: inline-block;
    letter-spacing: 2px;
}

.main_bn a:hover, .icon a:hover, .enter_bn:hover {
    opacity: 0.7;
    color: #fff;
}

#center_btn {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
}

#top_btn {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: right;
}

.list {
    text-align: center;
    margin: 20px 0px;
    padding: 0;
    border-bottom: 3px solid #ededed;
}

.list li {
    border-bottom: 1px #b9b9ba dashed;
    width: 100%;
    display: table;
    font-size: 1.125em;
}

.list li:last-of-type {
    border-bottom: 0;
}

.list li:nth-child(1) {
    background: #2f2725;
    font-size: 1.125em;
    font-weight: bolder;
    min-height: initial;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.list .list_head {
    border-bottom: 0px;
}

.list li>span {
    display: table-cell;
    vertical-align: top;
    padding: 8px 15px;
    vertical-align: top;
}

.list .list_head span {
    padding: 10px 15px;
    color: #fff !important;
}

.list span dl {
    display: inline-block;
    padding-left: 5px;
}

.list span dt, .list span dd {
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
}

.table_head span {
    border-bottom: 0px
}

.list .list_title {
    text-align: left
}

.list .list_word {
    text-align: left;
    padding-left: 15px;
    display: block;
    display: table-cell;
}
.list .list_word img{
    margin:0px 2px
}

.list a{
    color: #3e3a39;
}

.list a:hover{
    color: #767676 !important;
}

.list .list_word>a{
    display: block;
    color: #3e3a39;
    /* font-size: 1.125em; */
}

.list .list_word>a.file{
    display: inline-block;
}

.type_box{
    display: inline-block;
    padding: 2px 4px;
    min-width: 100px;
    color: #fff;
    text-align: center;
    margin-right: 4px;
    background: #393939;
}


.Gotop a {
    display: none;
}



#readchk {
    height: 17px;
    width: 17px;
}

.list .icon.mail_bth, .tabulation_word a, .search li strong a, .content_txt a, .gallery_list .txt a, .faq_txt a, .piclist a,  #footer a, .menu_nav>li>a {
    display: inline-block;
}

.tabulation_word a{
    color:#fff;
}




#div_content, .search1 li, .search, .search1_title, .footer_main {
    line-height: 1.9em;
}

.download_li a, .type_word a, .update, .list li>span, body, input, button, select, textarea, #mail_word, .tabulation2, .search_title, .tabulation_tt, .place, .list .list_head, .search_table, .table_txt, .content_title, .gallery_list .title, #sitemap_txt, #sitemap_txt ul li, .guest_list li, .search li strong, .search_txt, .search_result, .search_result .search_bth a, .search_result2, .search_btn li a, .calendar_type a, .calendar ul li span strong, .calendar ul li span strong:nth-child(1), .calendar2_week, .calendar2_week a, .calendar_title, .calendar_type, .calendar ul .date span, .calendar2_unit, .calendar2_date2, .calendar2_doom2.faq_txt, .ebook .list .list_head span a, .ebook .list_head span a {
     color: #3e3a39;
}

.guest_list li a,.search1_title a {
    color: #3e3a39;
}

.video_txt a, .list .icon.mail_bth,  .search li strong a, .content_txt a, .gallery_list .txt a, .faq_txt a, .piclist a, .sitemap_table li a, .sitemap_table li ul li a, .sitemap_table li ul li ul li a, .piclist_txt li a, .piclist_txt li i, .search_result2 a, .search1 li ul li a, .search1 li a,.calendar ul li span a, .calendar2_doom2 dt a {
    color: #3e3a39;
}

.place a, .place, .example {
    color: #3e3a39;
}

.video_txt a:hover, .guest_list li a:hover, .list .icon.mail_bth:hover,  .search li strong a:hover, .content_txt a:hover, .piclist a:hover, .list a:hover, .sitemap_table li a:hover, .sitemap_table li a:focus, .sitemap_table li ul li a:hover, .sitemap_table li ul li a:focus, .sitemap_table li ul li ul li a:hover, .sitemap_table li ul li ul li a:focus, .guest_list li a:hover, .guest_list li a:focus, .piclist_txt li a:hover, .piclist_txt li a:hover i, .search1 li ul li a:hover, .search1 li ul li a:focus, .search1 li a:hover, .search1 li a:focus, .search1_title a:hover, .search1_title a.on, .calendar ul li span a:hover, .calendar .select:hover, .calendar2_doom2 dt a:hover, .ebook .list_head span a:hover {
    color: #767676;
}

.content_txt a, .gallery_list .txt a {
    display: inline;
    word-break: break-word;
    color: #3e3a39;
}

a.link_target[target="_blank"]:after, .list .list_word a[target="_blank"]:after, .content_txt p a[target="_blank"]:after ,.faq a[target="_blank"]:after{
    content: "\f0c1";
    font-family: FontAwesome;
    display: inline-block;
    padding-left: 5px;
}


a.file_icon:after,.links .list_word a[target="_blank"]:after,.list .list_word dl a:after, .list .list_word a.file:after, .content_txt .imgbox a:after, .owl-carousel .owl-item>a:after {
    display: none !important;
}

.list .icon {
    padding: 5px;
    color: #fff;
}



.list .icon a {
    color: #fff;
}

.table {
    text-align: left;
}

.table.list span {
    display: block;
    float: left;
    word-break: break-word
}

.table>:not(:first-child){
   border-top:unset;
}

.text_le {
    text-align: left
}

abbr[title].must {
    color: #c60000;
    margin: 0px 0px 0 0;
    border-bottom: 0;
    display: inline-block;
    text-decoration: none;
}

.example {
    display: inline-block;
    margin-left: 2px;
}

.tabulation_list span, .tabulation_word span {
    display: inline-block;
}


.w100 {
    width: 100%
}

.w95 {
    width: 95%;
}

.w90 {
    width: 90%
}

.w85 {
    width: 85%;
}

.w80 {
    width: 80%
}

.w75 {
    width: 75%;
}

.w70 {
    width: 70%
}

.w65 {
    width: 65%;
}

.w60 {
    width: 60%
}

.w55 {
    width: 55%
}

.w50 {
    width: 50%;
}

.w45 {
    width: 45%;
}

.w40 {
    width: 40%
}

.w35 {
    width: 35%;
}

.w30 {
    width: 30%
}

.w25 {
    width: 25%
}

.w20 {
    width: 20%
}

.w15 {
    width: 15%
}

.w10 {
    width: 10%
}

.w9 {
    width: 9%
}

.w8 {
    width: 8%
}

.w7 {
    width: 7%
}

.w6 {
    width: 6%
}

.w5 {
    width: 5%
}

.w4 {
    width: 4%
}

.inputXS {
    width: 25%
}

.inputS {
    width: 25%
}

.inputM {
    width: 50%
}

.inputL {
    width: 80%
}

.inputXL {
    width: 100%
}

.h200 {
    height: 200px;
    vertical-align: middle;
}

.m_auto {
    margin: 20px auto 0 auto;
}

.h100 {
    height: 100px;
    vertical-align: middle;
}

.yellow {
    background-color: #FFFFCC;
}

.tabulation_word input, .tabulation_list input,
.tabulation_list textarea,.tabulation_word textarea {
    padding: 5px 7px;
    margin-right: 5px;
    vertical-align: middle;
}


.d_no {
    display: none
}

.article .owl-carousel img{
    max-height: 600px;
}

.article .box {
    text-align: center;
}

.piclist2_imgBox, .article .box {
    margin: 20px 0;
    background: #efefef;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.article .box .owl-next:hover, .article .box .owl-prev:hover {
    background-color: #e05555;
}

.content_bottom {
    text-align: right;
}

.update {
    padding: 0 15px;
    margin: 15px 0;
    letter-spacing: 1px;
    color: #717171;
}

.update strong i {
    padding-right: 5px;
}

/*font-size bg*/

.fontsize {
    border-radius: 5px;
    color: #3d3d3d;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    text-align: right;
    margin-bottom: 5px;
}

.fontsize li {
    float: left;
    margin-right: 1px;
}

.fontsize li.type a {
    color: #020202;
    width: 32px;
    height: 32px;
    text-align: center;
    display: inline-block;
    line-height: 31px;
    border-radius: 100%;
    background: #fff;
    margin: 0px 2px;
}

.fontsize li.font_size_btn- a, .font_size_btn- a:hover {
    color: #fff;
    background: #393939;
}

.share_mob {
    display: none
}

.share {
    font-size: 0;
    position: absolute;
    top: -41px;
    right: 0;
    z-index: 9999;
    padding-bottom: 10px;
    text-align: right;
    display: none;
}

.share.active {
    display: block
}

.share li {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    position: relative;
    box-sizing: border-box;
    transition: all 500ms ease;
    display: block;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    80% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

.share .type1 {
    background-image: url(../../images/icon_fb.png);
    background-color: #2c5194;
}

.share .type2 {
    background-image: url(../../images/icon_youtb.png);
    background-color: #fe0000;
}

.share .type3 {
    background-image: url(../../images/icon_line.png);
    background-color: #10bc10;
}

.share .type4 {
    background-image: url(../../images/icon_x.png);
    background-color: #000;
}

.share .type5 {
    background-image: url(../../images/icon_instagram.png);
    background-color: #454545;
    background-position: center left -87px;
}

.share .type6 {
    background-image: url(../../images/icon_flickr.png);
    background-color: #F3F3F2;
}

.share .type1:hover {
    background-color: #071c44;
}

.share .type2:hover {
    background-color: #9f0101;
}

.share .type3:hover {
    background-color: #008c00;
}

.share .type4:hover {
    background-color: #444;
}

.share .type5:hover {
    background-image: url(../../images/icon_instagram-.png);
}

.share .type6:hover {
    background-color: #d6d6d6;
}

.share2 li a {
    background-image: none;
    padding: 0 !important;
    display: block;
    height: 100%;
}

.share .Gotop {
    width: 62px;
    height: 62px;
    background: url(../../images/icon_top.png);
    transition: all 0.2s;
    display: none;
}

.share a {
    display: block;
    height: 100%;
}

.share a:hover {
    background-color: transparent !important;
    background-image: none !important;
}

.ml_10 {
    margin-left: 10px;
}

.mb_10 {
    margin-bottom: 10px
}

.mb_20 {
    margin-bottom: 20px
}

.mb_30 {
    margin-bottom: 30px
}

.mb_40 {
    margin-bottom: 40px
}

.mb_50 {
    margin-bottom: 50px
}

.mb_60 {
    margin-bottom: 60px
}

.mb_70 {
    margin-bottom: 70px
}

.mb_80 {
    margin-bottom: 80px
}

.mb_90 {
    margin-bottom: 90px
}

.mt_10 {
    margin-top: 10px
}

.mt_20 {
    margin-top: 20px
}

.mt_30 {
    margin-top: 30px
}

.mt_40 {
    margin-top: 40px
}

.mt_50 {
    margin-top: 50px
}

.mt_60 {
    margin-top: 60px
}

.mt_70 {
    margin-top: 70px
}

.mt_80 {
    margin-top: 80px
}

.mt_90 {
    margin-top: 90px
}

.mt_120 {
    margin-top: 120px
}

.pb_10 {
    padding-bottom: 10px;
}

.pb_20 {
    padding-bottom: 20px;
}

.pb_30 {
    padding-bottom: 30px;
}

.pb_40 {
    padding-bottom: 40px;
}

.pb_50 {
    padding-bottom: 50px;
}

.pb_60 {
    padding-bottom: 60px;
}

.pb_70 {
    padding-bottom: 70px;
}

.pb_80 {
    padding-bottom: 80px;
}

.pb_90 {
    padding-bottom: 90px;
}

.pt_10 {
    padding-top: 10px;
}

.pt_20 {
    padding-top: 20px;
}

.pt_30 {
    padding-top: 30px;
}

.pt_40 {
    padding-top: 40px;
}

.pt_50 {
    padding-top: 50px;
}

.pt_60 {
    padding-top: 60px;
}

.pt_70 {
    padding-top: 70px;
}

.pt_80 {
    padding-top: 80px;
}

.pt_90 {
    padding-top: 90px;
}

.red {
    color: #c60000;
}

.blue {
    color: #0366bb;
}

.green {
    color: green;
}

.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}





.download_list {
    display: flex;
    flex-wrap: wrap;
}

.download_li {
    background: #ccc;
    padding: 7px;
    margin-right: 10px;
    width: calc(50% - 10px);
    margin-bottom: 10px;
    box-shadow: 3px 3px 3px 0px #b3b3b3;
}

.download_li img {
    max-width: 50px;
    padding: 2px;
    margin-right: 5px;
}

.download_li span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: calc(100% - 65px);
    vertical-align: middle;
}

.download_title {
    width: 100%;
    font-size: 1.25em;
    padding-left: 3px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 20px;
}

.download_title::before {
    content: "\f019";
    top: 10px;
    left: 16px;
    font-family: FontAwesome;
    transition: all 0.3s;
    margin-right: 10px;
}

.book {
    background: url(../../images/img3.jpg) no-repeat center;
    background-size: cover;
    height: 256px;
    width: 100%;
    position: relative;
    max-width: 194px;
    margin: 0 auto;
    display: block;
    color: #3e3a39;
    transition: 0.5s;
}

.book:hover {
    transition: 0.5s;
    transform: scale(1.03);
}

.book_bottom {
    background: #ebe9e9;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 7px 0;
    font-size: 1.125em;
    opacity: 0.9;
}

.book_area {
    text-align: center;
    margin-bottom: 32px;
}

.book_download {
    font-size: 1.125em;
    display: inline-block;
    margin: 8px auto;
    background: #000;
    color: #fff;
    padding: 4px 26px 4px 49px;
    border-radius: 20px;
    position: relative;
    margin-top: 11px;
}

.book_download:hover {
    background: #a17533;
}

.book_download::before {
    content: "\f02d";
    position: absolute;
    left: 17px;
    font-family: FontAwesome;
    font-size: 1.125em;
    transition: all 0.3s;
}

.list_word img[src*='/Content/img'] {
    max-height: 50px;
    margin: 0 4px;
    height: 50px;
    width: auto;
}

/*日歷選擇輸入框 */

.hasDatepicker {
    width: 150px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #fff;
    background: #fff;
    font-weight: normal;
    color: #454545;
}

/* 當日 */

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #ffabab;
    background: #ffd2d2;
    color: #000000;
}

/* 滑入 */

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid rgb(116, 116, 116);
    background: #ccc;
    font-weight: normal;
    color: #2b2b2b;
}

/* 選擇 */

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #ffa54b;
    background: #ffdbb8;
    font-weight: normal;
    color: #2b2b2b;
}

/* 驗證碼 */

.ch_play_audio{
    border-radius: 5px;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    background: #888888;
    color: #fff !important;
}
.ReLoadChkCode_btn{
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    text-align: center;
    line-height: 32px;
    background: #888888;
    color: #Fff !important;
}
.ch_play_audio:hover{
    background: #393939;
}
.ReLoadChkCode_btn:hover{
    background: #393939;
    color: #fff;
}

.join_word a:hover{
    opacity: 0.7;
}


/* lightbox */
.lightbox-caption{
     background: #000;
     color: #fff;
     border-top: 1px solid rgb(30, 30, 30);
}

.lightbox-caption em{
    color: #fff;
    font-size: 1.125em;
}

/*2025-01-09*/
.password_see i{
	font-size: 1.25em;
}


.password_see{
    display: inline-block;
    font-size: 1.25em;
    color: rgb(151, 151, 151);
    cursor: pointer;
    margin-left: -35px;
    margin-right: 9px;
    z-index: 10;
}
.password_see i{
    position: relative;
    top:3px;
}



/* Themed Event */

.Activity {
   position: relative;
   padding-top: 80px;
   padding-bottom: 80px;
}

.Activity h2 {
    font-size: 3.75em;
    font-weight: bold;
    color: #443d3b;
    padding: 0px;
    bottom: 0px;
    font-family: NotoSerifTC-SemiBold, Microsoft JhengHei;
}


.Activity_owl {
    max-width: 1414px;
    margin: 0 auto 1em auto;
}

.Activity_owl .item {
    padding: 16px;
}

.Activity_owl a {
    display: block;
    position: relative;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}


.Activity_owl a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    border-radius: 25px;

}


.Activity_owl .Activity_pic {
       position: relative;
    width: 100%;
    /* 佔總寬度的50%，也可以換成任何你想要的寬度 */
    padding-top: 100%;
    /* 也是佔總寬度的50%，因此長寬一樣長 */
    overflow: hidden;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0px 7px 16px 0px rgba(47, 39, 37, 0.25);
}

.Activity_owl .Activity_pic div {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /*將圖片固定在父層的大小*/
    width: 100%;
    height: 100%;
    /*高和寬都填滿容器*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
        border-radius: 25px;
}

.Activity_word {
    position: relative;
    z-index: 5;
    margin-top: 20px;
    padding: 0 4px;
}




.Activity_title {
    color:#3e3a39;
    text-align: left;
    font-size: 1.25em;
    font-weight: bold;
    display: -webkit-box;
    /* 必需，啟用彈性盒模型 */
    -webkit-box-orient: vertical;
    /* 設定為垂直方向 */
    overflow: hidden;
    /* 隱藏超出的文字 */
    text-overflow: ellipsis;
    /* 顯示省略號 */
    -webkit-line-clamp: 2;
}


.Activity_t{
display: flex;
flex-direction: column;
max-width: 1414px;
margin: 0 auto 1em auto;
}






 .Activity_pic div:hover{
transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    
}

.Activity_pic:hover ~ .Activity_word .Activity_title {
  color: #767676;
}

.more {
    background: url(../../in_images/more.png) no-repeat left  30px center;
    letter-spacing: 2px;
    display: inline-block;
    padding: 11px 51px 10px 27px;
}

.more:hover, .more:focus {
   background: url(../../in_images/more-.png) no-repeat left  30px center;
}

/* Opening hours */


.bg02 {
    position: relative;
    background: url(../../in_images/bg02.png) no-repeat top center;
    border: 1px solid #d2d2d2;
    margin-top: 3em;
    min-height: 440px;
    display: flex;
    align-items: center;
    border-left: 0;
    border-right: 0;
}



.service_btm{padding: 0px 130px;}


.title_service{
	background: rgba(255,255,255,0.5);
	max-width: 523px;
	margin: 0 auto;
	padding: 46px 16px 38px 16px;
	text-align: center;
	border-radius: 0 0 20px 20px;
	margin-top: -15px;
}

.bg_center::before{
	content: "";
	background: url(../../in_images/bg_center_mask.png) no-repeat;
	height: 50px;
	width: 100%;
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
}


.title_service span{
    font-family: '微軟正黑體';
    letter-spacing: 1px;
	padding-bottom: 16px;
	font-weight: bold;
	color: #3e3a39;
}

.title_service span.serif{
    font-family: 'Noto Serif TC';
    color: #d42250;
    margin-bottom: 8px;
	margin-right: 16px;
	padding: 0 16px 16px 16px;
	background: url(../../in_images/h3_line.png) no-repeat bottom center;
	
}


.library_center{
     display: flex;
     padding: 10px 0px;
     margin-top: 20px;
}
.library_center div{
	width: 800px;
	margin-right: 20px;
}
.library_center div label{
	font-size: 1.667em;
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}
.library_center div select{
	font-size: 1.375em;
	padding: 8px 35px 8px 8px;
	border: 1px solid #c9caca;
	 box-shadow: inset 0px 0px 20px 0px rgba(85, 123, 44, 0.1);

	width: 100%;
	border-radius: 25px;
}

.library_center a{
	display: inline-block;
	text-align: center;
	font-size: 1.25em;
	color: #fff;
	border-radius: 25px;
	background: #2f2725;
	padding: 10px 15px;
}
.library_center a:hover{
	background: #666464;
}

.link_wrapper{
	display: flex;
	margin: 24px -12px;
}

.link_wrapper>div{
	width: calc(100%/2 - 24px);
	margin: 0 12px;
	color: #595757;
	font-size: 1.125em;
	font-weight: bold;
	padding: 0px 30px;
	position: relative;
}

.link_wrapper>div:before{
    content: "";
    position: absolute;
    left: 0;
    width:4px;
    height: 106px;
    background-color: #666464;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}


.link_wrapper>div:last-of-type:before{
    content: "";
    position: absolute;
    left: 0;
    width:4px;
    height: 106px;
    background-color: #666464;
    transform:translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-transform:;
}



.link_word{
letter-spacing: 1px;
line-height: 1.9em;    
}

.link_word  span:last-child{
display: block;
}

.open_t {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 10px 0px;
}


.open_t h2 {
    font-size: 3.75em;
    font-weight: bold;
    color: #564f4d;
    padding: 0px;
    bottom: 0px;
    font-family: NotoSerifTC-SemiBold, Microsoft JhengHei;
}


.custom-select {
 appearance: none;        /* Firefox */
  -webkit-appearance: none; /* Safari 和 Chrome */
  -moz-appearance: none;   /* Firefox */
   /* 預留給箭頭的空間 */
  /* 自訂箭頭背景圖 */
  background-image: url(../../images/google_lgicon02.png);
  background-repeat: no-repeat;
  background-position: right 15px center;

}
/* links */


.bg03 {
   background: url(../in_images/bg03.png) top left no-repeat;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    padding: 5em 0em;
}


.links a {
      display: flex;
      flex-direction: row; /* 讓內容橫向排列 */
      align-items: center;
      width: calc(100% / 2 - 30px);
      height: 135px; /* 建議稍微降低高度 */
      margin: 10px 15px;
      background-color: #efefef;
      border-radius: 50px;
      overflow: hidden;
      border: 2px solid #efefef;
      position: relative;
      text-align: left;
}

/* 上方圓弧含文字 */
.arc_top {
  width: 182px;
  height: 100%;
  background: #ffffff;
  border-top-right-radius: 80px 150px;
  border-bottom-right-radius: 80px 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}


.links a:hover  {
   background: #2f2725;
   transition: 0.8s;
   -webkit-transition: 0.8s;
   -moz-transition: 0.8s;
   -ms-transition: 0.8s;
   -o-transition: 0.8s;
}

.links a:hover .links_txt {
    color: #fff;
}


.pic_icon {
  position: relative;
}

.links_pic {
  padding: 1em;
  flex: 1;
}

.links_txt {
    font-size: 1.75em;
    color: #3e3a39;
    font-weight: bold;
    display: block;
}


/* bg03-01 */

.bg_bookwork {
	background: url(../../in_images/bg_book.png) no-repeat top right;
	padding: 4em 0 4.5em 0;
	min-height: 728px;
}

.left_block01 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    position: relative; /* 保持絕對定位元素參考 */
}


.left_block01 .left_title0{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
font-size: 2.5em;
background:rgba(47 ,39 ,37 ,0.9);
font-family: NotoSerifTC-SemiBold, Microsoft JhengHei, 微軟正黑體;
color: #fff;
padding: 10px 70px 10px 35px;
}

.left_block01 .left_title0::before{
    content: "";
    background: url(../in_images/right_arrow.png) no-repeat center center;
    height: 33px;
    width: 34px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.left_block01 .left_01{ 
font-size: 0em;
height: 359px;
width: 100%;
background: url(../in_images/a_img01.jpg) no-repeat center center;
display: inline-block;
background-size:cover;
transition: 1s;
vertical-align: middle;
}


.left_block01 .left_02 {
    font-size: 0em;
    height: 359px;
    width: 100%;
    background: url(../in_images/a_img02.jpg) no-repeat center center;
    display: inline-block;
    background-size: cover;
    transition: 1s;
    vertical-align: top;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}


.left_block01 a:hover{
 scale: 1.1;
  transition: 1s;
}

.left_title0 .tit {
  display: inline-block;
  padding-bottom: 5px;
}





/* 輪播圖設定 */

    .owl_wrapper{
    position: relative;
}

.owl_wrapper .owl_click{
    position: absolute;
    z-index: 5;
    background: #efefef;
    color: #3e3a39;
    border: 0;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 53px;
   border-top-right-radius: 20px;
    display: inline-block;
}

.owl_wrapper .owl_click:hover{
    background: #2f2725;
    color: #FFF;
}

.owl_wrapper .owl_click_style01{
 top: 21px;
    right: 33px;
    left: unset;
    bottom: unset;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.owl_wrapper .owl_click_style02{
    top: 0px;
    right: 0px;
    left: unset;
    bottom: unset;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 7px 25px 0px rgba(47, 39, 37, 0.25);
}


/* 多國語言 */

.goog-te-gadget > span {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important; 
}

.menu_nav01 select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-size: 16px;
  box-shadow:unset;
  padding-left: 25px;
  padding-right: 25px;
}

.menu_nav01 .goog-te-combo {
  appearance: none;        /* Firefox */
  -webkit-appearance: none; /* Safari 和 Chrome */
  -moz-appearance: none;   /* Firefox */
   /* 預留給箭頭的空間 */
  /* 自訂箭頭背景圖 */
  background-image: url(../../images/google_lgicon02.png);
  background-repeat: no-repeat;
  background-position: right 5px center;
}

