@charset "utf-8";
@import url(main.css);

/*  global  */
body {
    font-family: "Microsoft JhengHei", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, "メイリオ", "맑은 고딕", sans-serif;
    font-size: 12pt;
}

.wrap {
    width: 100%;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.rwd-img {
    width: 100%;
}

.rwd-maximg {
    max-width: 100%;
}

.imgbox {
    overflow: hidden;
}

a {
    color: #32312f;
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ul,
section,
div,
h3 {
    position: relative;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul:after,
section:after,
div:after,
li:after {
    content: "";
    display: block;
    clear: both;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body,
div,
p {
    margin: 0;
    padding: 0;
}

* {
    /* touch-action: none; */
}

/*	==========================================	*/
/*  icon  */
.footericon {
    padding-left: 30px;
}

.icon-mail {
    background: url(/assets/img/index/icon_07.png) no-repeat left;
    min-height: 25px;
    line-height: 25px;
}

.icon-tel {
    background: url(/assets/img/index/icon_05.png) no-repeat left;
    min-height: 25px;
    line-height: 25px;
}

.icon-fax {
    background: url(/assets/img/index/icon_06.png) no-repeat left;
    min-height: 25px;
    line-height: 25px;
}

.icon-loc {
    background: url(/assets/img/index/icon_04.png) no-repeat left;
    min-height: 25px;
    line-height: 25px;
}

.icon-about {
    background: url(/assets/img/index/icon_01.png) no-repeat left;
    min-height: 20px;
    line-height: 20px;
    padding-left: 25px
}

.icon-product {
    background: url(/assets/img/index/icon_02.png) no-repeat left;
    min-height: 20px;
    line-height: 20px;
    padding-left: 25px
}

.icon-contact {
    background: url(/assets/img/index/icon_02-23.png) no-repeat left;
    min-height: 20px;
    line-height: 20px;
    padding-left: 25px
}


/*  header  */
/*	.headerbox { position: fixed; left:0; top:0; z-index: 999; width: 100px; height: 100%; background-color: #fff; border-right:1px solid #C9CACA;
									-webkit-transition: all 0.52s ease;
									 	 -moz-transition: all 0.52s ease;
													transition: all 0.52s ease;
	}*/


.rwdmenubar .rwdmenubtnbox {
    float: left;
    width: 32px;
    display: none;
    margin-top: 8px;
}

.logobox {
    float: left;
    margin: 15px 0;
}

/*  onscrolling  */
/*	.wrap.onscrolling .rwdmenubar { position: fixed; padding: 15px 130px; background-color: #fff; border-bottom: .063rem solid rgba(34,34,34,.1); }
	.wrap.onscrolling .index-logoimg { background:url(/assets/img/index/logo_02.png) no-repeat left; height: 34px; background-size: contain; }
	.wrap.onscrolling .bar-search { margin-top: 0; }
	.wrap.onscrolling .index-searchimg { background:url(/assets/img/index/search_g.png) no-repeat center; background-size: contain;}*/
/*.wrap.onscrolling header.headerbox { background-color:rgba(0,0,0,0.8); padding-top:0;  }*/


.menubox {
    position: fixed;
    left: -320px;
    top: 0;
    height: 100%;
    width: 400px;
    background-color: #fff;
    z-index: 99;
    padding: 30px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.menubox.active {
    left: 80px;
    -moz-box-shadow: 4px 4px 3px rgba(20%, 20%, 40%, 0.5);
    -webkit-box-shadow: 4px 4px 3px rgba(20%, 20%, 40%, 0.5);
    box-shadow: 4px 4px 3px rgba(20%, 20%, 40%, 0.5);
}

.menu {
    float: right;
}

.menu li {
    display: inline-block;
}

.menu li a {
    display: block;
    padding: 41px 15px;
    color: #5c5c5c;
}

.menu li a:hover,
.menu li a.active {
    display: block;
    background-color: #ebebeb;
}

/*  rwd menu  */
.rwdmenubtnbox {
    display: none;
    float: right;
    padding: 14px 0;
    z-index: 99;
    border-radius: 3px;
    padding: 3px 5px;
    margin-top: 8px;
}

.rwdmenubtn {
    color: #b6b4b4;
    font-size: 20pt;
}

.rwdclosebtn {
    display: none;
    color: #fff;
    font-size: 20pt;
}

.rwdmenubox {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    background-color: #ebebeb;
    display: none;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.rwdmenubox.in {
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.rwdmenumask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9;
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.rwdmenumask.in {
    display: block;
}

.rwdmenu {
    padding: 0 10px;
    text-align: center;
}

.rwdmenu li {
    padding: 10px 0;
    text-align: left;
}

.rwdmenu li a {
    font-size: 13pt;
    color: #000;
    display: block;
    font-weight: bold;
}

.rwdmenu li a.active {
    color: #F3B12D;
}

.menuclosebtn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
}

.rwd-header-com {
    text-align: center;
}

.rwd-header-com li {
    display: inline-block;
    padding: 10px;
}

.rwdsearchform {
    width: 100%;
}

.rwdsearchform .form-group {
    padding: 0;
}

.search-sub {
    background-color: #009380;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 14pt;
}

.searchdownbtn {
    width: 30px;
    display: block;
    text-align: center;
    height: 32px;
    line-height: 32px;
    position: absolute;
    right: 1px;
    top: 1px;
    border-radius: 0 2px 2px 0;
    color: #fff;
    background: rgb(184, 12, 36);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(184, 12, 36, 1) 0%, rgba(141, 14, 35, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(184, 12, 36, 1) 0%, rgba(141, 14, 35, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(184, 12, 36, 1) 0%, rgba(141, 14, 35, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b80c24', endColorstr='#8d0e23', GradientType=0);
    /* IE6-9 */
}

.search-cont {
    padding: 15px;
    background-color: #fff;
}

.search-control {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    width: 100%;
}

.searchsubmit {
    border: 0;
    display: block;
    width: 100%;
    height: 34px;
    background: rgb(67, 177, 210);
    background: -webkit-linear-gradient(rgba(67, 177, 210, 1) 0%, rgba(55, 195, 168, 1) 100%);
    background: -o-linear-gradient(rgba(67, 177, 210, 1) 0%, rgba(55, 195, 168, 1) 100%);
    background: linear-gradient(rgba(67, 177, 210, 1) 0%, rgba(55, 195, 168, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43b1d2', endColorstr='#37c3a8', GradientType=0);
}

.rwdsearchbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    background-color: #000;
    display: none;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.rwdsearchbox.in {
    opacity: 1;
    display: table;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.rwdsearchbox .menuclosebtn {
    top: -40px;
    right: 5px;
}


/*	footer	*/
.footerbox {
    position: relative;
    background-color: #f3f5f4;
}

.footer-top {
    padding: 30px 0;
}

.footlogobox {
    display: inline-block;
    vertical-align: bottom;
    width: 285px;
}

.footslogan {
    display: inline-block;
    vertical-align: bottom;
    width: calc(100% - 285px - 5px);
    text-align: right;
    letter-spacing: 5px;
    color: #f5951c;
    font-style: italic;
    font-size: 2.3rem;
}

.footerbox .infobox {
    float: left;
    width: 50%;
}

.footerbox .frombox {
    float: right;
    width: 50%;
    padding-left: 15px;
}

.foot-info li {
    margin-bottom: 15px;
}

.foot-info a {
    color: #5c5c5c;
}

.footer {
    padding: 20px 0;
}

.footlink {
    margin-top: 70px;
}

.footlink li {
    display: inline-block;
}

.footlink a {
    color: #5c5c5c;
}

.footlink li:after {
    content: "|";
    padding: 0 5px;
    display: inline-block;
    color: #5c5c5c;
}

.footlink li:first-child:before {
    content: "|";
    padding: 0 5px;
    display: inline-block;
    color: #5c5c5c;
}

.copyright {
    text-align: center;
    font-size: 10pt;
    padding: 15px;
    border-top: 1px solid #fff;
}

.gotop {
    position: fixed;
    right: 15px;
    bottom: 50px;
    opacity: 0;
    z-index: 9;
    width: 40px;
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
}

.gotop.active {
    opacity: 1;
}

/*  index  */

.hs-title {
    border: 1px solid #a7a7a7;
    display: inline-block;
    padding: 10px 30px;
    margin: 20px 0;
    color: #5c5c5c;
}

.hs-title h2 {
    display: inline-block;
    word-spacing: 5px;
    font-size: 16pt;
}

.hs-title h3 {
    display: inline-block;
    word-spacing: 5px;
    font-size: 16pt;
}

.morebtn {
    background-color: #C5C6C6;
    color: #fff;
    border-radius: 3px;
    padding: 5px 30px;
}

.contactbtn {
    borer: 0;
    background-color: #595758;
    padding: 5px 20px;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    margin: 0 5px;
    background-attachment: fixed;
}

.index-aboutbox {
    background-color: #F3F4F4;
    padding: 15px;
}

.index-productbox {
    background: url(/assets/img/index/bg_01.png) no-repeat center;
    background-attachment: fixed;
    padding: 15px;
    padding-bottom: 30px;
}

.index-product li {
    position: relative;
    width: 50%;
    float: left;
}

.index-product .subbox {
    opacity: 0;
    position: absolute;
    left: calc((100% - 130.84px)/2);
    top: calc((100% - 84.66px)/2);
    color: #fff;
    text-align: center;
}

.index-product .sub {
    letter-spacing: 3px;
    padding-bottom: 10px;
}

.index-product .hovershow:before {
    content: "";
    position: absolute;
    top: -15px;
    left: calc((100% - 40px)/2);
    border-top: 4px solid #eb9413;
    width: 40px;
    border-radius: 4px;
}

.index-product li .hovershow {
    padding-left: 10px;
    margin-top: 15px;
}

.index-product a:hover .imgbox {
    -webkit-filter: brightness(0.2);
    filter: brightness(0.2);
}

.index-product a:hover .subbox {
    opacity: 1;
}

/* content */
.contentbox {
    padding-bottom: 40px;
    border-bottom: 1px dotted #e2e2e2;
}

.pager li a {
    color: #5c5c5c;
    border: 1px solid #b0adad;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 10pt;
    margin: 4px;
}

.pager li a.active {
    background-color: #c5c7c6;
    color: #fff;
}

.classsub {
    border-bottom: 2px dotted #e2e2e2;
    padding-bottom: 5px;
}

.class>li {
    margin-bottom: 20px;
}

.class2>li>a {
    color: #9c9c9c;
    font-weight: bold;
    padding: 5px 0;
    display: block;
    font-size: 13pt;
}

.class3>li>a {
    color: #5b5b5b;
    padding: 5px 0;
    display: block;
}

.class3>li>a.active {
    color: #f5951c;
}

.downbtn2.active {
    color: #f5951c;
}

.downbtn-sub {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 25px);
    word-break: break-word;
}

.downbtn-img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    -webkit-transition: all 0.52s ease;
    -moz-transition: all 0.52s ease;
    transition: all 0.52s ease;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.downbtn.active .downbtn-img {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rwdmenu~.class {
    padding: 0 10px;
}


/* about */
.aboutbox {
    padding: 15px;
}

.aboutbtn {
    border: 1px solid #686868;
    border-radius: 25px;
    padding: 5px 0;
    width: 85px;
    display: inline-block;
    text-align: center;
    color: #5c5c5c;
}

.aboutbtn.active {
    background-color: #eb9411;
    border: 1px solid #eb9411;
    color: #fff;
}

/* product */
.productbox {
    padding-top: 30px;
}

.productdetailbox {
    border-bottom: 2px dotted #e2e2e2;
    padding-bottom: 30px;
}

.productbox .left {
    float: left;
    width: 245px;
    padding-right: 30px;
}

.productbox .right {
    float: left;
    width: calc(100% - 245px);
    padding-bottom: 50px;
}

.productlist li {
    float: left;
    width: calc(100%/3 - 3%);
    margin: 0 1.5% 3% 1.5%;
}

.productlist .sub {
    word-break: break-word;
    overflow: hidden;
    height: 44px;
}

.pdimgbox {
    float: left;
    width: 50%;
}

.painfobox {
    float: left;
    width: 50%;
    padding-left: 30px;
}

.pdimg-min li {
    display: inline-block;
    width: calc(100%/5 - 5px);
    margin-right: 2px;
    margin-top: 4px;
}

.pdimg-min li:last-child {
    margin-right: 0;
}

.painfobox .sub {
    padding: 10px 0;
    border-bottom: 2px dotted #e2e2e2;
}

.painfobox .sub h2 {
    font-weight: bold;
}

.painfobox .info {
    padding: 10px 0;
    border-bottom: 2px dotted #e2e2e2;
}

.painfobox .infosub {
    font-weight: bold;
    width: 90px;
    display: inline-block;
    vertical-align: middle;
}

.painfobox .infotext {
    width: calc(100% - 90px - 5px);
    display: inline-block;
    vertical-align: middle;
    word-break: break-word;
}

.productcatlist li {
    display: inline-block;
    width: calc(100%/3);
}

a.active .productcatlist .imgbox {
    -webkit-filter: brightness(0.2);
    filter: brightness(0.2);
}

.productcatlist~.subbox {
    opacity: 0;
    position: absolute;
    left: calc((100% - 130.84px)/2);
    top: calc((100% - 84.66px)/2);
    color: #fff;
    text-align: center;
}

.productcatlist~.subbox .sub {
    letter-spacing: 3px;
    padding-bottom: 10px;
}

.productcatlist~.subbox .hovershow:before {
    content: "";
    position: absolute;
    top: -15px;
    left: calc((100% - 40px)/2);
    border-top: 4px solid #eb9413;
    width: 40px;
    border-radius: 4px;
}

.productcatlist~.subbox .hovershow {
    padding-left: 10px;
    margin-top: 15px;
}

a.active .productcatlist~.subbox {
    opacity: 1;
}

.productcatlist~.subbox .hovershow:before {
    content: "";
    position: absolute;
    top: -15px;
    left: calc((100% - 40px)/2);
    border-top: 4px solid #eb9413;
    width: 40px;
    border-radius: 4px;
}



/* hack  */
.bx-controls-direction {
    display: none;
}

.bx-controls.bx-has-pager.bx-has-controls-direction {
    position: absolute;
    top: 42px;
    right: 215px;
    width: 100%;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    bottom: initial;
    text-align: right;
    right: 5px;
    z-index: 9;
    width: auto;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background-color: #fff;
    width: 5px;
    height: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    border: 0;
    background-color: #f6990d;
}

.owl-pagination {
    display: none;
}

.owl-theme .owl-controls .owl-page span {
    width: 5px;
    height: 5px;
}

.owlbtnbox {
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
}

.owlprev {
    position: absolute;
    left: 5px;
}

.owlnext {
    position: absolute;
    right: 5px;
}

.articlebox {
    word-break: break-word;
    line-height: 1.6;
}

.articlebox img {
    max-width: 100%;
}

.fancybox-bg {
    background: rgba(204, 204, 204, 0.6);
}

.fancybox-content {
    width: 1200px;
    background-color: #fff;
    padding-top: 50px;
}

.artbox.fancybox-content {
    min-height: 600px;
}

.fancybox-inner {
    width: 80%;
    margin: 0 auto;
}

.fancybox-button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: rgb(201, 6, 36);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(201, 6, 36, 1) 0%, rgba(131, 11, 36, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(201, 6, 36, 1) 0%, rgba(131, 11, 36, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(201, 6, 36, 1) 0%, rgba(131, 11, 36, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c90624', endColorstr='#830b24', GradientType=0);
    /* IE6-9 */
}

.fancybox-button svg path {
    stroke: white;
    stroke-linecap: square;
    stroke-width: 9.5px;
}

.fancybox-close-small svg {
    stroke: black;
    stroke-linecap: square;
    stroke-width: 1.5px;
}

.fancybox-toolbar {
    right: 30px;
    top: 30px;
}

.fancybox-close-small {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

#rwdsearch.fancybox-content,
#rwdmenu.fancybox-content {
    width: 300px;
}

.owlprev img {
    max-width: 100%;
}

.owlprev {
    width: 90px;
}

.owlnext img {
    max-width: 100%;
}

.owlnext {
    width: 90px;
}


/*    .classbox .owl-carousel .owl-wrapper-outer { height: 60px; line-height: 60px; }
		.owlclassbtnbox { position: absolute; left:0; top:0; width: 100%; display: none; }
		.owlclassbtnbox .owlprev { position: absolute; left:-20px; top:14px; z-index: 2; }
		.owlclassbtnbox .owlnext { position: absolute; right:-20px; top:14px; z-index: 2; }*/
/*.fancybox-navigation { top: 50%; }*/
.mCSB_inside>.mCSB_container {
    margin-right: 0;
}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {

    .container {
        width: 100%;
    }

    /* header */
    .header {
        padding: 0 15px;
    }

    /* footer */
    .footer-top {
        padding: 15px;
    }

    .footslogan {
        font-size: 1.6rem;
    }

    .footer {
        padding: 20px 15px;
    }

    /* index */
    .index-product .subbox {
        opacity: 1;
    }

    .index-product .imgbox {
        -webkit-filter: brightness(0.2);
        filter: brightness(0.2);
    }

    /* about */
    .aboutbtnbox {
        padding: 0 15px;
    }

    /* product */
    .productbox {
        padding: 15px;
        padding-top: 30px;
    }

}

@media screen and (max-width: 812px) {}

@media screen and (max-width: 768px) {

    /* header */
    .rwdmenubtnbox {
        display: block;
        margin-top: 8px;
    }

    .menu {
        display: none;
    }

    .header {
        padding: 5px 15px;
    }

    .logobox {
        margin: 0;
        width: 150px;
    }

    .headerbox {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        width: 100%;
        background-color: #fff;
        border-right: 1px solid #C9CACA;
    }

    .rwdmenubox {
        display: block;
    }

    .contentbox .left {
        display: none;
    }

    /*content */
    .wrap {
        padding-top: 47.89px;
    }

    .productbox .left {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .productbox .right {
        float: none;
        width: 100%;
    }
}

@media screen and (max-width: 736px) {}

@media screen and (max-width: 667px) {}

@media screen and (max-width: 568px) {}

@media screen and (max-width: 430px) {

    /* footer */
    .footlogobox {
        width: 100%;
        margin-bottom: 15px;
    }

    .footslogan {
        font-size: 12pt;
        width: 100%;
    }

    .footerbox .infobox {
        float: none;
        width: 100%;
    }

    .footerbox .frombox {
        float: none;
        width: 100%;
        padding-left: 0;
    }

    .footlink {
        margin: 30px 0;
    }

    .footer-top,
    .footlink {
        display: none;
    }

    /* content */
    .index-product li {
        width: 100%;
        float: none;
    }

    .productlist li {
        width: calc(100%/2 - 3%)
    }

    .pdimgbox {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }

    .painfobox {
        float: left;
        width: 100%;
        padding-left: 0;
    }

    .productcatlist li {
        width: calc(100%/2);
    }

    .productcatlist li:last-child {
        display: none;
    }

    .pager {
        display: block;
        text-align: center;
    }

    .pager li {
        display: inline-block;
    }

    .pager a {
        font-size: 8pt;
    }

    .footlink a {
        font-size: 8pt;
    }

}

@media screen and (max-width: 414px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {

    /* content */
    .productcatlist li {
        width: calc(100%);
    }

    .productcatlist li:nth-child(2) {
        display: none;
    }

    .productcatlist li:last-child {
        display: none;
    }

}