/* ################## SETING ALL ################## */

.cb {
    clear: both;
}


/* - #bread - */

#bread {
    text-align: right;
    margin: 20px 0;
}

#bread li {
    display: inline-block;
    vertical-align: middle;
    color: #777777;
}

#bread li a {
    font-size: 16px;
    color: #777777;
}


/* - #title-line - */

#title-line {
    border-bottom: 2px solid #777777;
}

#title-line p {
    color: #555555;
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 15px 8px;
}


/* - #page-number - */

#page-number {
    text-align: center;
    margin: 80px 0 20px 0;
}

#page-number a {
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out;
}

#page-number a:hover {
    color: #c09f68;
}


/* ################## #header ################## */

#header {
    width: 100%;
    height: 120px;
    background-color: #000;
    position: relative;
}

#header .header-com {
    max-width: 1100px;
    height: 100%;
    margin: auto;
}

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    #header .header-com {
        width: 95%;
        margin: auto;
    }
}


/* - phone menu - */

#header-ph {
    display: none;
}


/* - logo - */

#header .header-com .logo {
    padding: 24px 0 0 0;
    float: left;
}

#header .header-com img {
    max-width: 100%;
    max-height: 100%;
}


/* - menu - */

#header .header-com .menu {
    float: right;
    padding: 25px 0 0 0;
}

#header .header-com .menu .sub {
    display: inline-block;
    text-align: center;
    padding: 8px 5px 15px 5px;
    margin: 0 5px;
    position: relative;
}

#header .header-com .menu .last-0 {
    margin-right: 0;
}

#header .header-com .menu a {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}

#header .header-com .menu a:hover,
#header .header-com .menu a.active {
    color: #c09f68;
}


/* - sub-menu - */

#header .header-com .sub-menu {
    min-width: 620px;
    position: absolute;
    background-color: #fff;
    padding: 15px 15px;
    left: -230px;
    top: 75px;
    display: none;
    z-index: 999;
}

#header .header-com .sub-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #fff;
}

#header .header-com .sub-menu ul {
    min-width: 110px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: top;
}

#header .header-com .sub-menu .title {
    font-size: 16px;
    color: #c09f68;
    padding: 0 0 5px 0;
    border-bottom: 2px solid #c09f68;
}

#header .header-com .sub-menu a {
    color: #666666;
    font-size: 16px;
    margin: 2px 0;
    display: block;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

#header .header-com .sub-menu a:hover {
    color: #c09f68;
}


/* - ANIMATION - */

#header .header-com .sub:hover .sub-menu {
    display: flex;
    justify-content: center;
    animation-name: sub-menu;
    min-width: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes sub-menu {
    from {
        opacity: 0;
        top: 60px;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes sub-menu {
    from {
        opacity: 0;
        top: 60px;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes sub-menu {
    from {
        opacity: 0;
        top: 60px;
    }
    to {
        opacity: 1;
    }
}


/* ################## #footer ################## */

#footer {
    width: 100%;
    height: 105px;
    text-align: center;
    display: table;
    background: #202020;
    background: -webkit-linear-gradient(#202020 0%, #080808 100%);
    background: -o-linear-gradient(#202020 0%, #080808 100%);
    background: linear-gradient(#202020 0%, #080808 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#202020', endColorstr='#080808', GradientType=0);
}

#footer p {
    height: 105px;
    color: #ffebc9;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#footer a {
    color: #ffebc9;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

#footer a:hover {
    color: #fff;
}


/* ################## #banner ################## */

#banner {
    width: 100%;
    overflow: hidden;
    background-color: #202020;
    background-image: url('../images/index/banner-light.png');
    background-repeat: no-repeat;
    background-position: 8% -20px;
    background-size: contain;
}

#banner .banner-in {
    max-width: 1100px;
    /* height: 498px; */
    margin: auto;
    position: relative;
}

#banner .banner-in .banner_innerlink{
    display:block;
    height:100%;
    width:100%;
}

#banner .icon {
    position: absolute;
    bottom: 9%;
    left: 50%;
    margin-left: -78px;
}

#banner .icon img {
    max-width: 100%;
    max-height: 100%;
}

#banner .icon a {
    margin: 0 2px;
}


/* ################## #index ################## */

#index {
    width: 100%;
    height: auto;
    background-color: #000;
    background-image: url('../images/index/background-mix.png');
    background-repeat: repeat;
}

#index .box {
    max-width: 1100px;
    margin: auto;
    padding: 50px 0 0 0;
}

#index .box-2 {
    padding: 45px 0 50px 0;
}


/* - 標題線 - */

#index .line {
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    border-bottom: 1px solid #c09f68;
    padding: 0 0 10px 0;
}

#index .line a {
    color: #fff;
}

#index .line h6 {
    float: left;
    font-weight: bold;
}

#index .line .more {
    float: right;
}

#index .line .more p {
    display: inline-block;
    vertical-align: middle;
    padding: 0 3px;
}

#index .first {
    padding: 0 0 20px 0;
}

#index .first h6 {
    float: none;
}


/* - 商品介紹 - */

#index .stuff {
    margin: 4% 0 0 0;
}

#index .stuff a {
    color: #c09f68;
}

#index .stuff .area {
    width: 22%;
    float: left;
    margin: 0 4% 0 0;
    font-size: 16px;
    position: relative;
    color: #c09f68;
}

@media screen and (min-width: 768px) {
    #index .stuff .area:nth-child(n+5) {
        margin-top:4%;
    }

    #index .stuff .area:nth-child(4n) {
        margin-right:0;
    }
}

#index .stuff .none {
    margin: 0 0 0 0;
}

#index .stuff .area .gray {
    width: 100%;
    height: 100%;
    background-color: rgba(52, 52, 52, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    animation-name: gray;
    -webkit-animation-duration: .3s;
    -moz-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    animation-timing-function: ease;
}

#index .stuff .pic {
    height: 270px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

#index .stuff img {
    max-width: 242px;
    max-height: 268px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


/* - 只有第一項改變 - */
#index .stuff .only.pic_half {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    font-size: 0;
}
#index .stuff .only.pic_half a {
    display: inline-flex;
    width: 50%;
    height: auto;
    margin: auto 0;
}
#index .stuff .only.pic_half img {
    max-width: 100%;
    /*max-height: 67px;*/
    display: inline-block;
    height: auto;
}

#index .stuff .only{
	display:flex;
    flex-direction:row;
    flex-wrap:wrap;
}
#index .stuff .only img {
    /*max-width: 100%;*/
    /*max-height: 67px;*/
    position: relative;
    height: 100%;
}

#index .stuff .only a {
    width: 100%;
    height: 20%;
    display: block;
    text-align:center;
    background-color: #fff;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    margin: auto 0;
}

#index .stuff .only a:hover {
    background-color: rgba(52, 52, 52, 0.5);
}

#index .stuff .word {
    width: 100%;
    height: 50px;
    display: table;
    background-color: #343434;
}

#index .stuff .word p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}


/* - ANIMATION - */

#index .stuff .area:hover .gray {
    display: block;
}

@-webkit-keyframes gray {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes gray {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes gray {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* - 最新消息 - */

#index .list a {
    width: 100%;
    height: 65px;
    color: #fff;
    margin: 15px 0;
    display: block;
    font-size: 16px;
    line-height: 50px;
    border-bottom: 1px dotted #fff;
    border-width: 2px;
}

#index .list .day {
    width: 125px;
    float: left;
    font-style: italic;
}

#index .list .news {
    width: calc( 100% - 125px);
    float: left;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

#index .list .news p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90%;
}


/* - ANIMATION - */

#index .list a .news:hover {
    color: #c09f68;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #index .box {
        width: 95%;
        margin: auto;
    }
    /* 圖片部分 */
    #index .stuff img {
        max-width: 100%;
        max-height: 100%;
    }
}


/* ################## #contact ################## */

#contact {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
    min-height: 600px;
}


/* - set both -  */

#contact .addr {
    float: left;
    margin: 20px 0 0 0;
    width: calc( 50% - 10px);
    padding: 0 0 0 10px;
}

#contact .map {
    float: right;
    margin: 20px 0 0 0;
    width: 50%;
}


/* - set one thing - */

#contact .info ul {
    margin: 0 0 14px 0;
}

#contact .info li {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #777;
    line-height: 24px;
}

#contact .info li a {
    font-size: 16px;
    color: #777;
}

#contact .map img {
    width: 100%;
}


/* - other setting -  */

#contact .info li.none {
    display: block;
    margin-left: 97px;
    padding: 10px 0 0 0;
}

#contact .info .tit {
    font-weight: bold;
    color: #555;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #contact {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #news ################## */

#news {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}

#news a {
    color: #777777;
    font-size: 16px;
}


/* ----- unshow ----- */

#news .unshow .showNews {
    margin: 0px 15px 0 60px;
    padding: 0px 0px 0px 0px;
    border-bottom: 1px solid #c09f68;
    position: relative;
    display: block;
    transition: all 0.3s ease 0s;
}
#news .unshow ul.show_target{
	margin:20px 0px 0 0px;
	padding:43.5px 20px 43.5px 100px;
}

/* - title - */

#news .unshow li {
    display: inline-block;
    width: calc( 100% - 24px);
    font-weight: bold;
}

#news .unshow li p {
    padding: 0 40px 0 0;
    line-height: 24px;
    text-align: justify;
}

#news .unshow li.tar {
    width: 20px;
    height: 17px;
    text-align: center;
    background: rgba(0, 0, 0, 0) url("../images/all/arrow-down.png") no-repeat scroll center center;
    transition: all 0.3s ease 0s;
}

#news .unshow li.tar img {
    max-width: 100%;
}


/* - day ball - */

#news .unshow .ball {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #c09f68;
    position: absolute;
    top: 0;
    left: -55px;
    transition: all 0.3s ease 0s;
}

#news .unshow .ball .table {
    width: 110px;
    height: 110px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#news .unshow .ball .table p {
    font-size: 20px;
    font-weight: bold;
    color: #c09f68;
    line-height: 32px;
}

#news .unshow .info {
    display: none;
}


/* ----- showing ----- */

.showNews{ cursor:pointer; }

#news .showing .showNews {
    margin: 0px 15px 0 60px;
    padding: 0px 0px 47.5px 0px;
    border-bottom: 1px solid #c09f68;
    position: relative;
    display: block;
    background-color: #faf2e5;
    transition: all 0.3s ease 0s;
}

#news .showing ul.show_target{
	margin:20px 0px 0 0px;
	padding:47.5px 20px 25px 100px;	
}

/* - title - */

#news .showing li {
    display: inline-block;
    width: calc( 100% - 24px);
    color: #c09f68;
    font-weight: bold;
}

#news .showing li p {
    padding: 0 40px 0 0;
    line-height: 24px;
    text-align: justify;
}

#news .showing li.tar {
    width: 20px;
    height: 17px;
    text-align: center;
    background: rgba(0, 0, 0, 0) url("../images/all/arrow-up.png") no-repeat scroll center center;
    transition: all 0.3s ease 0s;
}

#news .showing li.tar img {
    max-width: 100%;
}


/* - day ball - */

#news .showing .ball {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #c09f68;
    border: 1px solid #c09f68;
    position: absolute;
    top: 0;
    left: -55px;
    transition: all 0.3s ease 0s;
}

#news .showing .ball .table {
    width: 110px;
    height: 110px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#news .showing .ball .table p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 32px;
    transition: all 0.3s ease 0s;
}


/* - info - */

#news .showing .info {
    display: block;
    padding: 5px 60px 0 100px;
    transition: all 0.3s ease 0s;
	word-break: break-all;
}

#news .showing .info img {
	max-width:100%;
}

#news .showing .info p {
    text-align: justify;
    line-height: 28px;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #news {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #about ################## */

#about {
    max-width: 1100px;
    min-height: 600px;
    height: auto;
    margin: 0 auto 80px auto;
}

#about .making {
    padding: 20px;
    font-size: 18px;
}

#about .making h6 {
    line-height: 26px;
    color: #555;
    font-weight: normal;
    text-align: justify;
}

#about .making h5 {
    line-height: 24px;
    padding: 40px 0 0 0;
    color: #555;
    text-align: center;
}

#about .box-all {
    max-width: 500px;
    margin: auto;
}

#about .box {
    max-width: 500px;
    padding: 30px 25px 30px 25px;
    border-bottom: 1px solid #ccc;
}

#about .box .ab {
    float: left;
    position: relative;
}

#about .box .a {
    width: 120px;
}

#about .box .a::before {
    content: "★";
    position: absolute;
    left: -25px;
    color: #C09F69;
}

#about .slogan {
    font-size: 24px;
    line-height: 28px;
    text-align: right;
    color: #C09F69;
    margin-bottom: 20px;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #about {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #application ################## */

#application {
    max-width: 1100px;
    min-height: 600px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #application {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #product-sp ################## */

#product-sp {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - title - */

#product-sp .p-title {
    border-bottom: 2px solid #777777;
    padding: 0 0 8px 0;
}

#product-sp .p-title li {
    display: inline-block;
    vertical-align: middle;
}

#product-sp .p-title li.ml {
    padding: 0 0 0 35px;
}

#product-sp .p-title img {
    max-width: 100%;
}


/* - area - */

#product-sp .area {
    border-bottom: 1px solid #777777;
    padding: 30px 0 30px 0;
}

@media screen and (min-width: 768px) {
    #product-sp .area{
        display: flex;
    }
}

/* - 圖片 - */

#product-sp .pic {
    width: 33%;
    float: left;
    margin: 0 1% 0 0;
}

#product-sp .pic h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
    display: none;
}

#product-sp .pic p {
    text-align: center;
}

#product-sp .pic img {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    #product-sp .pic {
        display: flex;
        flex-direction: column;
    }
    #product-sp .pic p:last-child {
        margin-top: auto;
    }
}

/* - 資訊 - */

#product-sp .out {
    width: 66%;
    float: left;
}

#product-sp .info {
    /*width: calc( 55% - 20px);*/
    padding: 0 10px;
    float: left;
}

#product-sp .info h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
}

#product-sp .info h2 {
    color: #555;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px 0 0 0;
}

#product-sp .info p {
    font-size: 15px;
    color: #777777;
    line-height: 24px;
    text-align: justify;
}

#product-sp .info p.tip {
    font-size: 14px;
    color: #999999;
    padding: 10px 0;
}

#product-sp .info li {
    font-size: 14px;
    color: #777;
    display: inline-block;
    vertical-align: middle;
}

#product-sp .info li.tit {
    font-size: 15px;
    font-weight: bold;
    color: #555;
}

@media screen and (min-width: 1024px) {
    #product-sp .out {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

/* - table - */

#product-sp .info table {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #fff;
    width: 100%;
    font-size: 15px;
    text-align: center;
}

#product-sp .info table th {
    color: #c09f68;
    font-weight: normal;
    padding: 10px 3px;
    border: 1px solid #999999;
    border-bottom: none;
    border-right: none;
    border-top: none;
}

#product-sp .info table td {
    color: #777777;
    padding: 10px 3px;
    border: 1px solid #999999;
    border-bottom: none;
    border-right: none;
}

#product-sp .info table th:first-child,
#product-sp .info table td:first-child {
    border-left: none;
    text-align: left;
}


/* - 影片 - */

#product-sp .video {
    float: left;
    width: 44%;
    height: 0;
    padding: 0 0 40% 0;
    margin: 0 0 0 1%;
    position: relative;
}

#product-sp .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@media screen and (min-width: 768px) {
    #product-sp .video {
        min-width: 44%;
    }
}


/* - more-video - */

#product-sp .more-video {
    padding: 15px 5px;
}

#product-sp .more-video h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 15px 0;
}

#product-sp .more-video a {
    position: relative;
    width: 19%;
    height: 180px;
    margin: 0.5%;
    float: left;
}

#product-sp .more-video a .youtube {
    width: 100%;
    height: 150px;
    position: relative;
    background-color: #f3f3f3;
}

#product-sp .more-video a p {
    padding: 4px 5px;
    color: #555;
    line-height: 24px;
    -ms-word-break: break-all;
    word-break: break-all;
    text-align: justify;
}

#product-sp .more-video img,
#product-sp .more-video .img_bg {
    max-width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#product-sp .more-video a img:hover,
#product-sp .more-video .img_bg:hover {
    transform: scale(1.2);
    z-index: 999;
}

#product-sp .more-video .tube {
    display: none;
}

#product-sp .more-video a .img_bg


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-sp {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #product-hp ################## */

#product-hp {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - title - */

#product-hp .p-title {
    border-bottom: 2px solid #777777;
    padding: 0 0 8px 0;
}

#product-hp .p-title li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 10px;
    font-weight: bold;
    color: #555;
}

#product-hp .p-title li.ml {
    padding: 0 0 0 35px;
}

#product-hp .p-title img {
    max-width: 100%;
}


/* - area - */

#product-hp .area {
    border-bottom: 1px solid #777777;
    padding: 30px 0 30px 0;
}


/* - 圖片 - */

#product-hp .pic {
    width: 33%;
    float: left;
    margin: 0 1% 0 0;
}

#product-hp .pic h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
    display: none;
}

#product-hp .pic p {
    text-align: center;
}

#product-hp .pic img {
    max-width: 100%;
}


/* - 資訊 - */

#product-hp .out {
    width: 66%;
    float: left;
}

#product-hp .info {
    width: calc( 55% - 20px);
    padding: 0 10px;
    float: left;
}

#product-hp .info h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
}

#product-hp .info h2 {
    color: #555;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px 0 0 0;
}

#product-hp .info p {
    font-size: 15px;
    color: #777777;
    line-height: 24px;
    text-align: justify;
}

#product-hp .info ul {
    padding: 20px 0 0 0;
}

#product-hp .info li {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
}

#product-hp .info li.tit {
    font-size: 15px;
    font-weight: bold;
    color: #555;
}


/* - 影片 - */

#product-hp .video {
    float: left;
    width: 44%;
    height: 0;
    padding: 0 0 40% 0;
    margin: 0 0 0 1%;
    position: relative;
}

#product-hp .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-hp {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #product-epson ################## */

#product-epson {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - title - */

#product-epson .p-title {
    border-bottom: 2px solid #777777;
    padding: 0 0 8px 0;
}

#product-epson .p-title li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 10px;
    font-weight: bold;
    color: #555;
}

#product-epson .p-title li.ml {
    padding: 0 0 0 35px;
}

#product-epson .p-title img {
    max-width: 100%;
}


/* - area - */

#product-epson .area {
    border-bottom: 1px solid #777777;
    padding: 30px 0 30px 0;
}


/* - 圖片 - */

#product-epson .pic {
    width: 33%;
    float: left;
    margin: 0 1% 0 0;
}

#product-epson .pic h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
    display: none;
}

#product-epson .pic p {
    text-align: center;
}

#product-epson .pic img {
    max-width: 100%;
}


/* - 資訊 - */

#product-epson .out {
    width: 66%;
    float: left;
}

#product-epson .info {
    width: calc( 55% - 20px);
    padding: 0 10px;
    float: left;
}

#product-epson .info h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
}

#product-epson .info h2 {
    color: #555;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px 0 0 0;
}

#product-epson .info p {
    font-size: 15px;
    color: #777777;
    line-height: 24px;
    text-align: justify;
    position: relative;
    padding: 0 0 0 20px;
}

#product-epson .info p::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 12px;
}

#product-epson .info ul {
    padding: 20px 0 0 0;
}

#product-epson .info li {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
}

#product-epson .info li.tit {
    font-size: 15px;
    font-weight: bold;
    color: #555;
}


/* - 影片 - */

#product-epson .video {
    float: left;
    width: 44%;
    height: 0;
    padding: 0 0 40% 0;
    margin: 0 0 0 1%;
    position: relative;
}

#product-epson .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-epson {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #product-roland ################## */

#product-roland {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - title - */

#product-roland .p-title {
    border-bottom: 2px solid #777777;
    padding: 0 0 8px 0;
}

#product-roland .p-title li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 10px;
    font-weight: bold;
    color: #555;
}

#product-roland .p-title li.ml {
    padding: 0 0 0 35px;
}

#product-roland .p-title img {
    max-width: 100%;
}


/* - area - */

#product-roland .area {
    border-bottom: 1px solid #777777;
    padding: 30px 0 30px 0;
}


/* - 圖片 - */

#product-roland .pic {
    width: 33%;
    float: left;
    margin: 0 1% 0 0;
}

#product-roland .pic h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
    display: none;
}

#product-roland .pic p {
    text-align: center;
}

#product-roland .pic img {
    max-width: 100%;
}


/* - 資訊 - */

#product-roland .out {
    width: 66%;
    float: left;
}

#product-roland .info {
    width: calc( 55% - 20px);
    padding: 0 10px;
    float: left;
}

#product-roland .info h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
}

#product-roland .info h2 {
    color: #555;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px 0 0 0;
}

#product-roland .info p {
    font-size: 15px;
    color: #777777;
    line-height: 24px;
    text-align: justify;
}

#product-roland .info ul {
    padding: 20px 0 0 0;
}

#product-roland .info li {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
}

#product-roland .info li.tit {
    font-size: 15px;
    font-weight: bold;
    color: #555;
}


/* - 影片 - */

#product-roland .video {
    float: left;
    width: 44%;
    height: 0;
    padding: 0 0 40% 0;
    margin: 0 0 0 1%;
    position: relative;
}

#product-roland .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-roland {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #product-jcut ################## */

#product-jcut {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - title - */

#product-jcut .p-title {
    border-bottom: 2px solid #777777;
    padding: 0 0 8px 0;
}

#product-jcut .p-title li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 10px;
    font-weight: bold;
    color: #555;
}

#product-jcut .p-title li.ml {
    padding: 0 0 0 35px;
}

#product-jcut .p-title img {
    max-width: 100%;
}


/* - area - */

#product-jcut .area {
    border-bottom: 1px solid #777777;
    padding: 30px 0 30px 0;
}


/* - 圖片 - */

#product-jcut .pic {
    width: 33%;
    float: left;
    margin: 0 1% 0 0;
}

#product-jcut .pic h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
    display: none;
}

#product-jcut .pic p {
    text-align: center;
}

#product-jcut .pic img {
    max-width: 100%;
}


/* - 資訊 - */

#product-jcut .out {
    width: 66%;
    float: left;
}

#product-jcut .info {
    width: calc( 55% - 20px);
    padding: 0 10px;
    float: left;
}

#product-jcut .info h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
}

#product-jcut .info h2 {
    color: #555;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px 0 0 0;
}

#product-jcut .info p {
    font-size: 15px;
    color: #777777;
    line-height: 24px;
    text-align: justify;
    position: relative;
    padding: 0 0 0 20px;
}

#product-jcut .info p::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 12px;
}

#product-jcut .info ul {
    padding: 20px 0 0 0;
}

#product-jcut .info li {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
}

#product-jcut .info li.tit {
    font-size: 15px;
    font-weight: bold;
    color: #555;
}


/* - 影片 - */

#product-jcut .video {
    float: left;
    width: 44%;
    height: 0;
    padding: 0 0 40% 0;
    margin: 0 0 0 1%;
    position: relative;
}

#product-jcut .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-jcut {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #inquiry ################## */

#inquiry li {
    display: inline-block;
}

#inquiry li a {
    padding: 10px 10px;
    margin: 10px 18px 10px 0;
    text-align: center;
    font-weight: bold;
    line-height: 22px;
    display: block;
    color: #c09f69;
    border: 1px solid #c09f69;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

#inquiry li a:hover {
    background-color: #c09f69;
    color: #fff;
}


/* ################## #product-supp ################## */

#product-supp {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}

#product-supp a {
    color: #777777;
    font-size: 16px;
}


/* for-ph */

#product-supp .for-ph {
    display: none;
}


/* - table - */

#product-supp table {
    width: 100%;
    margin: 25px 0;
    text-align: center;
}


/* - title.tr - */

#product-supp table tr.title {
    background-color: #c09f69;
    height: 20px;
    border-bottom: none;
}

#product-supp table tr.title td {
    padding: 10px 2px;
    line-height: 20px;
    color: #fff;
}

#product-supp #title-line {
    margin: 50px 0 0 0!important;
}


/* - td - */

#product-supp table tr {
    border-bottom: 1px dashed #c0c0c0;
}

#product-supp table td {
    padding: 14px 2px;
    line-height: 24px;
    color: #787878;
}


/* - input - */

#product-supp table input {
    width: 20px;
    height: 20px;
}


/* - icon-top - */

#product-supp a.icon-top {
    position: fixed;
    bottom: 15px;
    right: 40px;
}

#product-supp a.icon-top img {
    max-width: 70%;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-supp {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}


/* ################## #product-inqu ################## */

#product-inqu {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - inquiry - */

#product-inqu #inquiry {
    margin: 0 0 30px 0;
}


/* - box-all - */

#product-inqu .box-all {
    width: 98%;
    margin: auto;
}

#product-inqu .box {
    width: 30%;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    float: left;
    margin: 3% 4.7% 0% 0;
    position: relative;
}

#product-inqu .box:nth-child(3n) {
    margin: 3% 0 0% 0%;
}

#product-inqu .box .iner {
    padding: 10px 15px 10px 15px;
}


/* - icon-x - */

#product-inqu a.icon-x {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 10px;
}

#product-inqu a.icon-x img {
    max-width: 100%;
}


/* - 內容 - */

#product-inqu .box h2 {
    font-weight: bold;
    color: #454545;
    line-height: 24px;
    padding: 5px 0 3px 0;
}

#product-inqu .box p {
    color: #808080;
    line-height: 24px;
    padding: 0 0 0 3px;
}


/* - input - */

#product-inqu .box ul.many {
    padding: 8px 0 0 0;
}

#product-inqu .box .many li {
    display: inline-block;
}

#product-inqu .box .many input {
    font-size: 18px;
    padding: 5px 0;
    width: 120px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #808080;
    font-family: 微軟正黑體;
    margin: 0 0 0 10px;
}


/* - message - */

#product-inqu .message {
    margin: 50px 0 0px 0;
}

#product-inqu .message span.top {
    font-size: 15px;
    color: #b92d2c;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    display: block;
    padding: 10px 0 10px 10px;
    margin: 0 0 20px 0;
}

#product-inqu .message li span {
    font-size: 15px;
    color: #b92d2c;
    padding: 0 0 0 5px;
}

#product-inqu .message .inner {
    width: 98%;
    margin: auto;
}

#product-inqu .inner ul {
    width: 48%;
    float: left;
    margin: 1% 4% 1% 0;
    color: #767676;
}

#product-inqu .inner ul.none {
    margin: 1% 0% 1% 0;
}

#product-inqu .inner input {
    box-shadow: 0 0;
    width: 98%;
    font-size: 16px;
    font-family: 微軟正黑體;
    padding: 6px 0;
    text-indent: 8px;
    margin: 2% 0 0 0;
}


/* - 地址 留言 - */

#product-inqu .inner ul.addr,
#product-inqu .inner ul.leave {
    width: 100%;
}

#product-inqu .inner ul.addr input {
    width: 99%;
    margin: 1% 0;
}

#product-inqu .inner ul.leave textarea {
    max-width: 97%;
    min-width: 97%;
    min-height: 150px;
    max-height: 150px;
    margin: 1% 0 0 0;
    font-size: 16px;
    font-family: 微軟正黑體;
    padding: 1%;
}


/* - 送出 - */

#product-inqu .send {
    text-align: center;
    margin: 60px 0 0 0;
}

#product-inqu .send button {
    width: 200px;
    height: 45px;
    border: 1px solid #c0a067;
    color: #c0a067;
    background-color: #fff;
    font-size: 16px;
    font: inherit;
    margin: 0 20px;
    cursor: pointer;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

#product-inqu .send button:hover {
    background-color: #c0a067;
    color: #fff;
    font-weight: bold;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-inqu {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1067px) {
    /* - box-all - */
    #product-inqu .box-all {
        width: 98%;
        margin: auto;
    }
    #product-inqu .box {
        width: 30%;
        border: 1px solid #c7c7c7;
        border-radius: 10px;
        float: left;
        margin: 3% 4.66666% 0% 0;
        position: relative;
    }
    #product-inqu .box:nth-child(3n) {
        margin: 3% 0 0% 0%;
    }
    #product-inqu .box .iner {
        padding: 10px 15px 10px 15px;
    }
}


/* ################## #product-software ################## */

#product-software {
    max-width: 1100px;
    height: auto;
    margin: 0 auto 80px auto;
}


/* - title - */

#product-software .p-title {
    border-bottom: 2px solid #777777;
    padding: 0 0 8px 0;
}

#product-software .p-title li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 10px;
    font-weight: bold;
    color: #555;
}

#product-software .p-title li.ml {
    padding: 0 0 0 35px;
}

#product-software .p-title img {
    max-width: 100%;
}

#product-software .more-tit {
    margin: 80px 0 0 0;
}


/* - area - */

#product-software .area {
    border-bottom: 1px solid #777777;
    padding: 30px 0 50px 0;
}

#product-software .no-b-b {
    border-bottom: none;
}


/* - 圖片 - */

#product-software .pic {
    width: 33%;
    float: left;
    margin: 0 1% 0 0;
}

#product-software .pic h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
    display: none;
}

#product-software .pic p {
    text-align: center;
}

#product-software .pic img {
    max-width: 100%;
}


/* - 資訊 - */

#product-software .out {
    width: 66%;
    float: left;
}

#product-software .info {
    width: 97%;
    padding: 0 10px;
}

#product-software .info h1 {
    color: #c09f68;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    padding: 0 0 5px 0;
}

#product-software .info h2 {
    color: #555;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    padding: 10px 0 10px 0;
}

#product-software .info p {
    font-size: 16px;
    color: #777777;
    line-height: 24px;
    text-align: justify;
    position: relative;
    padding: 0 0 0 20px;
}

#product-software .info p::before {
    content: ".";
    position: absolute;
    left: 3px;
    top: -11px;
    font-size: 35px;
}


/* - LAST MEDIA QURIRES - */

@media screen and (min-width: 1024px) and (max-width: 1150px) {
    /* 總體 */
    #product-software {
        width: 95%;
        height: auto;
        margin: 0 auto 80px auto;
    }
}

/* 首頁圖片補丁 v20220107 */
#index .stuff .area .area_inner {
    position: relative;
    width: 100%;
	padding-top: 111.5702479338843%;
}

#index .stuff .area .area_inner > .pic {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	height: auto;
}

#index .stuff .area .area_inner .only img {
    height: auto;
    width: 100%;
    max-height: none;
    max-width: none;
}

/* ################## 社群連結 ################## */
.shareBlock{ display:flex; grid-gap:32px; margin-top: 4%; }
.shareBlock *{ box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; }
.shareBlock .grids{ flex:1; }
.shareBlock .grids .gs{ width:100%; display:block; padding:25px; background-color:rgba(51,51,51,0.8); border-radius:20px; transition: 0.5s opacity; }
.shareBlock .grids .gs:hover{ opacity: 0.7; }
.shareBlock .grids .gs img{ max-width:100%; }
.shareBlock .grids .gs .title{ text-align:center; color: #c09f68; font-size:16px; padding-top:10px; }

@media screen and (max-width: 767px) {
.shareBlock{ flex-wrap:wrap; grid-gap:0; margin-left:-15px; }
.shareBlock .grids{ width:50%; flex:none; padding:0 0 15px 15px; }
.shareBlock .grids .gs{ text-align:center; padding:15px; }

}


/* 浮動按鈕 */
.fixedBtnBox{ position:fixed; top:50%; right:0; transform:translateY(-50%); background-color:rgba(51,51,51,0.8); padding:15px 0; width:84px; border-radius:10px 0 0 10px; }
.fixedBtnBox .fBox{ display:flex; flex-direction: column; grid-gap:10px; align-items: center; }

.fixedBtnBox .fBox .linkTxt{ font-size:14px; color:#fff; text-align:center; }
.fixedBtnBox .fBox .linkTxt.big{ font-size:16px; margin-bottom:5px; }

.fixedBtnBox .fBox .linkTxt .likeicon{ display:inline-block; vertical-align: middle; width:18px; height:18px; background-image:url(../images/index/like.png); background-repeat:no-repeat; background-position:center; background-size:cover; margin-left:2px; }
.fixedBtnBox .fBox .fgrids{ font-size:0; }
.fixedBtnBox .fBox .fgrids img{ width:60px; }

@media screen and (max-width: 767px) {
	.fixedBtnBox{ bottom:0; top:auto; transform:none; left:0; right:0; margin:auto; width:100%; border-radius: 0; padding: 10px 0; }
	.fixedBtnBox .fBox{ flex-direction: row; justify-content: center; }
	.fixedBtnBox .fBox .fgrids img{ width:50px; }
	.fixedBtnBox .fBox .linkTxt span{ display:block; }
}
