@charset "UTF-8";
/* CSS Document */
header, .moreBtn::after, .moreBtn .moreTxt, .newsArea .arrowBox a::before, .newsArea .arrowBox a::after, .newsArea .Img .newIcon {
    transition: all .5s;
}

header .rightBox .contactBox .snsBox a img {
    transition: all .8s;
}

.outerWrap {
    position: relative;
    overflow-x: hidden;
}

.wrap {
    width: 1360px;
    margin: 0 auto;
}

@media (max-width: 1440px) {
    .wrap {
        width: 1080px;
    }
}

@media (max-width: 1200px) {
    .wrap {
        width: 100%;
        padding: 0 30px;
    }
}

* {
    box-sizing: border-box;
    font-family: 'Poppins','Lato','Noto Sans TC',sans-serif;
}

/* loading*/
.loadingArea {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3000;
    width: 100%;
    height: 100vh;
    opacity: 1;
    pointer-events: none;
}

.loadingArea.show {
    pointer-events: auto;
}

.loadingArea.show::before {
    animation: loadLine 3.6s forwards;
}

.loadingArea.show::after {
    animation: loadLineMove02 .8s 4s forwards;
}

.loadingArea.show .loadLogo .loadingTop {
    opacity: 0;
    animation: logojump 3s forwards;
}

@media (max-width: 640px) {
    .loadingArea.show .loadLogo .loadingTop {
        animation: logojump640 3s forwards;
    }
}

.loadingArea.show .loadLogo .bottomBox::after {
    animation: logoTxtFadeIn 1.5s forwards;
}

.loadingArea.show .loadLogo .bottomBox .loadingBottom {
    opacity: 1;
}

.loadingArea::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 8px;
    background-color: #b06228;
    transform: translateY(0);
}

.loadingArea::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -5;
    width: 100%;
    height: 0%;
    background-color: #fff;
}

.loadingArea .loadLogo {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0;
}

.loadingArea .loadLogo .loadingTop {
    width: 144px;
    opacity: 0;
    position: absolute;
    top: -144px;
    left: calc(50% - 72px);
}

.loadingArea .loadLogo .bottomBox {
    width: 500px;
    height: 122px;
    position: absolute;
    top: calc(50%);
    left: calc(50% - 250px);
}

.loadingArea .loadLogo .bottomBox::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.loadingArea .loadLogo .bottomBox .loadingBottom {
    width: 500px;
    opacity: 0;
    transition: 0.2s;
}

.loadingArea .loadLogo::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

@media (max-width: 640px) {
    .loadingArea .loadLogo .loadingTop {
        width: 72px;
        opacity: 0;
        position: absolute;
        top: -72px;
        left: calc(50% - 36px);
    }
    .loadingArea .loadLogo .bottomBox {
        width: 250px;
        height: 61px;
        position: absolute;
        top: calc(50%);
        left: calc(50% - 125px);
    }
    .loadingArea .loadLogo .bottomBox::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
    }
    .loadingArea .loadLogo .bottomBox .loadingBottom {
        width: 250px;
        opacity: 0;
        transition: 0.2s;
    }
}

@keyframes loadLine {
    0% {
        width: 0;
    }
    20% {
        width: 30%;
    }
    60% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}

@keyframes loadLineMove {
    0% {
        height: 8px;
        transform: translateY(0);
    }
    100% {
        height: 100%;
        transform: translateY(101%);
    }
}

@keyframes loadLineMove02 {
    0% {
        background-color: #b06228;
        z-index: 5;
    }
    100% {
        background-color: #b06228;
        height: 100%;
        z-index: 5;
    }
}

@keyframes logojump {
    0% {
        top: -144px;
        opacity: 0;
    }
    55% {
        top: -50px;
        opacity: 1;
    }
    65% {
        opacity: 1;
        top: calc(50% - 144px);
        transform: scaleY(1) scaleX(1);
    }
    68% {
        opacity: 1;
        top: calc(50% - 144px);
        transform: scaleY(1.1) scaleX(0.9);
    }
    78% {
        opacity: 1;
        top: calc(50% - 144px - 27px);
        transform: scaleY(1) scaleX(1);
    }
    80% {
        opacity: 1;
        top: calc(50% - 144px - 27px);
        transform: scaleY(1) scaleX(1);
    }
    100% {
        opacity: 1;
        top: calc(50% - 144px - 27px);
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes logojump640 {
    0% {
        top: -72px;
        opacity: 0;
    }
    55% {
        top: -40px;
        opacity: 1;
    }
    65% {
        opacity: 1;
        top: calc(50% - 72px);
        transform: scaleY(1) scaleX(1);
    }
    68% {
        opacity: 1;
        top: calc(50% - 80px);
        transform: scaleY(1.1) scaleX(0.9);
    }
    80% {
        opacity: 1;
        top: calc(50% - 80px - 13.5px);
        transform: scaleY(0.98) scaleX(1.02);
    }
    85% {
        opacity: 1;
        top: calc(50% - 72px - 13.5px);
        transform: scaleY(1) scaleX(1);
    }
    100% {
        opacity: 1;
        top: calc(50% - 72px - 13.5px);
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes logoTxtFadeIn {
    0% {
        transform: translate(0%);
    }
    99% {
        transform: translate(105%);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*pop*/
.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.8;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .7s;
}

.popWin .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all .7s;
}

.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    background-color: #fff;
    transition: all .7s;
}

.popWin .popContent {
    max-height: 85vh;
    overflow-y: auto;
}

.popWin .popContent .contentBuilder {
    margin: 0 auto;
}

.popWin .popContent .contentBuilder .row {
    margin: 0 auto;
}

.popWin img {
    display: block;
    max-width: 100%;
    backface-visibility: hidden;
    margin: 0 auto;
}

.popWin .Txt {
    padding: 30px;
    text-align: left;
}

.popWin .Txt .popTitle {
    font-size: 25px;
    margin-bottom: 25px;
}

.popWin .close {
    position: absolute;
    right: -23px;
    top: -23px;
    z-index: 1;
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.7);
    /* background-color: #fff; */
    border-radius: 50%;
}

.popWin .close::before, .popWin .close::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #bca480;
    /* border-radius:  50%; */
}

.popWin .close::before {
    transform: rotate(45deg);
}

.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popWin.show .mask, .popWin.show .inner {
    opacity: 1;
}

.popWin .close::after {
    transform: rotate(-45deg);
}

@media (max-width: 1180px) {
    .popWin .close {
        right: 0;
        top: 0;
        border-radius: 0;
    }
    .popWin .popContent {
        max-height: calc(100vh - 150px);
    }
}

.yBgTitle {
    display: inline-block;
    height: 35px;
    padding: 0 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0.5px;
    background-color: #b06228;
    color: #1d130d;
    font-family: 'Noto Sans TC';
}

.yTitle {
    display: block;
    font-size: 61px;
    font-weight: 800;
    line-height: 65px;
    letter-spacing: -0.2px;
    color: #b06228;
    /*-webkit-text-stroke: 1px #fff;
    text-shadow: 0px 2px 9px rgba(131, 131, 131, 0.2);*/
    text-shadow: 2px 2px #fff;
    padding-bottom: 25px;
    font-family: 'Noto Sans TC';
}

.yTitleBanner {
    font-size: 89px;
    line-height: 99px;
}

@media (max-width: 1440px) {
    .yTitle {
        font-size: 48px;
        line-height: 1;
    }
    .yTitleBanner {
        font-size: 89px;
        line-height: 99px;
    }
}

@media (max-width: 1200px) {
    .yTitle {
        font-size: 40px;
    }
}

@media (max-width: 960px) {
    .yTitle {
        font-size: 54px;
    }
}

@media (max-width: 440px) {
    .yTitle {
        font-size: 40px;
    }
}

.slogan {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
    color: #1d130d;
    padding-left: 100px;
    position: relative;
}

.slogan::before {
    content: "";
    width: 83px;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    background-color: #1d130d;
}

.chTitle {
    display: block;
    font-size: 27px;
    font-weight: 900;
    line-height: 47px;
    letter-spacing: 1.5px;
    color: #1d130d;
    padding: 20px 0 15px;
}

.chTitleBanner {
    font-size: 33px;
    line-height: 53px;
    padding: 25px 0 15px;
}

.chExp {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    color: #1d130d;
}

/*****網頁頭*****/
header {
    position: fixed;
    left: 0;
    top: 35px;
    width: 100%;
    z-index: 50;
    background-color: transparent;
}

header .wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 60px;
}

header .logo {
    width: 240px;
    /*height: 40px;*/
}

header .logo a {
    display: block;
    width: 100%;
}

header .logo a img {
    width: 100%;
    height: 100%;
}

header .rightBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 200px);
    padding: 0 0px 0 50px;
    box-sizing: border-box;
}

header .rightBox .menuBox {
    display: block;
}

header .rightBox .contactBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

header .rightBox .contactBox .snsBox {
    flex-grow: 1;
}

header .rightBox .contactBox .snsBox a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px;
}

header .rightBox .contactBox .snsBox a img {
    width: 100%;
}

header .rightBox .contactBox .snsBox a:hover img {
    filter: brightness(0.3);
    transform: translateY(-10px);
}

@media (max-width: 1400px) {
    header .rightBox .contactBox .snsBox {
        display: none;
    }
}

header .rightBox .contactBox .contactBtn {
    flex-grow: 1;
    width: 125px;
    height: 40px;
    margin-left: 15px;
}

header .rightBox .contactBox .contactBtn a {
    display: block;
    width: 100%;
    height: 35px;
    margin: 2.5px 0;
    background-color: #1d130d;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.2px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

header .rightBox .contactBox .contactBtn a img {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    filter: grayscale(1) brightness(15);
}

header .rightBox .contactBox .contactBtn a:hover {
    background-color: #b06228;
}

header.downStyle {
    top: 0;
    background-color: #fff;
    padding: 20px 0 18px;
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.11);
}

@media (max-width: 1200px) {
    header {
        display: none;
    }
}

/*menu*/
.menu > li {
    position: relative;
    display: inline-block;
}

.menu > li > a {
    display: block;
    padding: 10px 40px;
    color: #1d130d;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.2px;
    position: relative;
}

@media (max-width: 1600px) {
    .menu > li > a {
    padding: 10px 30px;
    }
}

@media (max-width: 1410px) {
    .menu > li > a {
    padding: 10px 25px;
    }
}

@media (max-width: 1260px) {
    .menu > li > a {
    padding: 10px 20px;
    }
}

.menu > li > a::after {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    top: 13px;
    left: 0;
    background-color: #ececec;
}

.menu > li > a:hover {
    color: #b06228;
}

.menu > li > a.current {
    color: #b06228;
}

.menu > li:nth-child(1) a::after {
    background-color: transparent;
}

.menu .submenu {
    display: none;
    position: absolute;
    left: calc(50% - 60px);
    top: 100%;
    z-index: 99;
    width: 120px;
    text-align: center;
    width: 160px;
    left: calc(50% - 80px);
	
}

.menu .submenu a {
    padding: 10px 20px;
    display: block;
    color: #1d130d;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.2px;
    position: relative;
    background-color: #fff;
    border-top: 1px solid #b06228;
}

.menu .submenu a:hover {
    color: #b06228;
}

/*手機menu*/
.m_menu {
    display: none;
}

@media (max-width: 1200px) {
    .m_menu {
        /*手機menu*/
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        display: block;
        width: 100%;
        box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
    }
    .m_menu .mask {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        display: none;
        background-color: rgba(0, 0, 0, 0.6);
        width: 100%;
        height: 100%;
        padding-bottom: 60px;
    }
    .m_menu .m_logo a {
        display: block;
        width: 160px;
    }
    .m_menu .m_logo img {
        display: block;
        width: 200px;
        padding: 10px 0;
    }
    .m_menu .controlBox {
        padding: 0 20px;
        position: relative;
        z-index: 50;
        background-color: #fff;
    }
    .m_menu .controlBox a.main {
        position: fixed;
        right: 20px;
        top: 14px;
        width: 42px;
        height: 42px;
        background-color: #b06228;
        z-index: 60;
    }
    .m_menu .controlBox a.main span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: -0.5px;
        width: 26px;
        height: 2px;
        background-color: transparent;
        transition: all .8s;
        box-sizing: border-box;
    }
    .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all .8s;
    }
    .m_menu .controlBox a.main span:before {
        top: -3px;
    }
    .m_menu .controlBox a.main span:after {
        bottom: -3px;
    }
    .m_menu .controlBox a.main.show span {
        background-color: transparent;
    }
    .m_menu .controlBox a.main.show span:before {
        top: 0;
        transform: rotate(45deg);
    }
    .m_menu .controlBox a.main.show span:after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    .m_menu .controlBox .right {
        float: right;
        line-height: 60px;
        margin-right: 10px;
    }
    .m_menu .controlBox .right a {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        font-size: 13px;
        color: #fff;
    }
    .m_menu .controlBox .right a em {
        display: none;
    }
    .m_menu .controlBox .right i {
        display: inline-block;
        vertical-align: middle;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
        color: #fff;
        text-align: center;
        border-radius: 100%;
        background: #799A1B;
    }
    .m_menu .controlBox .right b {
        position: absolute;
        top: 6px;
        right: -5px;
        display: block;
        border-radius: 5px;
        line-height: normal;
        padding: 3px 5px;
        font-size: 13px;
        color: #fff;
        background-color: #C40000;
    }
    .m_menu .controlBox .language:hover .submenu {
        display: block;
    }
    .m_menu .hideBox {
        /*手機menu內容*/
        position: fixed;
        left: 20px;
        top: 0;
        bottom: 0;
        display: none;
        width: calc(100% - 40px);
        padding: 70px 0 0;
        margin: 14px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        z-index: 50;
        background-color: #b06228;
    }
    .m_menu .hideBox .sp {
        display: none;
        padding: 10px;
        font-size: 13px;
        color: #fff;
        background-color: #c80303;
    }
    .m_menu .hideBox a.main {
        position: fixed;
        right: 20px;
        top: 14px;
        width: 42px;
        height: 42px;
        background-color: #1d130d;
        z-index: 60;
    }
    .m_menu .hideBox a.main span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: -0.5px;
        width: 26px;
        height: 2px;
        background-color: transparent;
        transition: all .8s;
        box-sizing: border-box;
    }
    .m_menu .hideBox a.main span:before, .m_menu .hideBox a.main span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all .8s;
    }
    .m_menu .hideBox a.main span:before {
        top: -3px;
    }
    .m_menu .hideBox a.main span:after {
        bottom: -3px;
    }
    .m_menu .hideBox a.main.show span {
        background-color: transparent;
    }
    .m_menu .hideBox a.main.show span:before {
        top: 0;
        transform: rotate(45deg);
    }
    .m_menu .hideBox a.main.show span:after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    .m_menu .hideBox .Img {
        display: block;
        margin: 0 auto;
        width: 140px;
    }
    .m_menu .nav {
        padding: 25px 0 40px;
    }
    .m_menu .nav li:nth-child(4) {
        display: none;
    }
    .m_menu .nav a {
        position: relative;
        display: block;
        padding: 20px 10px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.3px;
        color: #1d130d;
        text-align: center;
    }
    .m_menu .nav a:hover {
        color: #fff;
    }
    .m_menu .nav a i {
        position: absolute;
        right: 10px;
        top: 50%;
        display: block;
        margin-top: -7px;
    }
    .m_menu .nav .submenu {
        display: none;
        position: relative;
    }
    .m_menu .nav .submenu::before {
        content: "";
        width: 120px;
        height: 1px;
        background-color: rgba(47, 18, 7, 0.5);
        position: absolute;
        top: 0;
        left: calc(50% - 60px);
    }
    .m_menu .nav .submenu::after {
        content: "";
        width: 120px;
        height: 1px;
        background-color: rgba(47, 18, 7, 0.5);
        position: absolute;
        bottom: 0;
        left: calc(50% - 60px);
    }
    .m_menu .nav .submenu a:hover {
        background-color: #1d130d;
    }
    .m_menu .btnBox {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0px 0 60px;
    }
    .m_menu .btnBox a {
        display: inline-block;
        margin: 0 7px;
        padding: 0 24px 0 44px;
        font-size: 14px;
        font-weight: 400;
        line-height: 35px;
        letter-spacing: 0;
        color: #fff;
        position: relative;
        background-color: #1d130d;
    }
    .m_menu .btnBox a img {
        display: inline-block;
        position: absolute;
        width: 16px;
        height: 16px;
        top: 9px;
        left: 18px;
        filter: brightness(10);
    }
    .m_menu .btnBox a:hover {
        background-color: #f6ae15;
    }
    .m_menu .snsBox {
        margin: 0 auto 0px;
        text-align: center;
        padding: 0 0 50px;
    }
    .m_menu .snsBox a {
        display: inline-block;
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    .m_menu .snsBox a img {
        width: 100%;
        transition: 0.5s all;
    }
    .m_menu .snsBox a:hover img {
        filter: brightness(0.3);
        transform: translateY(-10px);
    }
    .m_menu .copyright {
        width: 100%;
        text-align: center;
        position: relative;
        bottom: 0;
        left: 0;
        padding: 10px 0 18px;
        background-color: #1d130d;
    }
    .m_menu .copyright::before {
        content: "";
        width: 120%;
        height: 40px;
        background-color: #1d130d;
        position: absolute;
        top: 0%;
        right: 0;
        transform: rotate(1.6deg);
        transform-origin: right top;
        z-index: -5;
    }
    .m_menu .copyright .Txt {
        font-family: 'Noto Sans TC';
        color: #b06228;
        font-size: 12px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.6px;
        z-index: 5;
    }
}

/*****banner******/
.bannerArea {
    clear: both;
    position: relative;
    height: 1020px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

@media (max-width: 1680px) {
    .bannerArea {
        height: 1000px;
    }
}

@media (max-width: 1200px) {
    .bannerArea {
        height: 825px;
    }
}

@media (max-width: 960px) {
    .bannerArea {
        margin-top: 70px;
        height: 700px;
    }
}

@media (max-width: 840px) {
    .bannerArea {
        margin-top: 70px;
        height: 600px;
    }
}

@media (max-width: 640px) {
    .bannerArea {
        margin-top: 70px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .bannerArea {
        margin-top: 70px;
        height: 350px;
    }
}


.bannerArea .videoPlayBox {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1d130d;
    opacity: 0;
    z-index: -10;
}

.bannerArea .videoPlayBox.playing {
    z-index: 60;
    opacity: 1;
}

.bannerArea .videoPlayBox.playing .ytPlayBtnBox {
    display: block;
}

.bannerArea .videoPlayBox .ytPlayBtnBox {
    display: block;
    width: 68px;
    height: 68px;
    position: absolute;
    top: calc(50% - 68px);
    left: calc(60px - 28px);
    display: none;
}

.bannerArea .videoPlayBox .ytPlayBtnBox img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: playCircle 5s infinite linear;
}

.bannerArea .videoPlayBox .ytPlayBtnBox::before {
    content: "";
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 11px;
    left: 11px;
}

.bannerArea .videoPlayBox .ytPlayBtnBox:hover {
    transform: scale(1.2);
}

.bannerArea .videoPlayBox .ytPlayBtnBox:hover img {
    animation: playCircle 2s infinite linear;
}

.bannerArea .videoPlayBox .ytPlayBtnBox:hover::before {
    background-color: #b06228;
}

.bannerArea .videoPlayBox .ytPlayBtnBox .deco {
    position: absolute;
    top: 0;
    left: 0;
}

.bannerArea .videoPlayBox .ytPlayBtnBox .deco::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #1d130d;
    position: absolute;
    top: 32px;
    left: 24px;
    transform: rotate(45deg);
}

.bannerArea .videoPlayBox .ytPlayBtnBox .deco::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #1d130d;
    position: absolute;
    top: 32px;
    left: 24px;
    transform: rotate(-45deg);
}

.bannerArea .videoPlayBox .bannerVideo {
    z-index: -10;
}

.bannerArea .wrap {
    width: 100%;
}

.bannerArea .bannerBox {
    width: 100%;
    height: 100%;
}

.bannerArea .bannerBox li.bannerLi {
    height: 1220px;
    background-color: transparent;
}

.bannerArea .bannerBox li.bannerLi .Img {
    width: 100%;
    height: 875px;
    position: relative;
    overflow: hidden;
}

/*.bannerArea .bannerBox li.bannerLi .Img {
    width: 120%;
    height: 875px;
    position: relative;
    left: -10%;
    top: -60px;
    transform: rotate(-8.8deg);
    transform-origin: top right;
    background-color: transparent;
    overflow: hidden;
}

.bannerArea .bannerBox li.bannerLi .bannerImg {
    transform: rotate(8.8deg);
    display: block;
    width: 100%;
    max-width: 1920px;
    position: relative;
    left: 110px;
    top: -150px;
}

.bannerArea .bannerBox li.bannerLi::before {
    content: "";
    width: 120%;
    height: 815px;
    position: absolute;
    top: 120px;
    left: 0;
    background-color: #b06228;
    transform: rotate(7deg);
    transform-origin: top left;
}

.bannerArea .bannerBox li.bannerLi::after {
    content: "";
    width: 120%;
    height: 595px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f2f2f2;
    transform: rotate(-17deg);
    transform-origin: top right;
    z-index: -5;
}*/

.bannerArea .bannerBox li.bannerLi .Txt {
    display: block;
    position: absolute;
    top: 25%;
    left: 185px;
}

.www {color: #fff !important;}
.www::before {background: #fff !important;}

.bannerArea .bannerBox li.bannerLi .Txt .yBgTitle {
    display: flex;
    align-items: center;
    font-weight: 400;
    max-width: 160px;
}

.bannerArea .bannerBox li.bannerLi .Txt .yBgTitle svg {
    margin-left: 10px;
}

.bannerArea .bannerBox li.bannerLi .Txt .yTitleBanner {
    padding: 20px 0;
}

.bannerArea .bannerBox li.bannerLi .Txt .chTitle {
    position: relative;
    display: inline-block;
    max-width: 500px;
}

.bannerArea .bannerBox li.bannerLi .Txt .chTitle .circleBox {
    position: relative;
    width: 50px;
    border-radius: 50%;
    transform: rotate(-10deg);
    position: absolute;
    top: -30px;
    right: -25px;
}

.bannerArea .bannerBox li.bannerLi .Txt .chTitle .decoTxt span {
    display: inline-block;
    font-family: 'Lato';
    font-size: 12px;
    font-weight: 900;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    height: 85px;
    width: 10px;
    margin: 0 1px;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: bottom center;
}

.bannerArea .bannerBox li.bannerLi .Txt .chTitle .decoTxt span.decoLine, .bannerArea .bannerBox li.bannerLi .Txt .chTitle .decoTxt span.decoLine2 {
    color: #b06228;
    font-size: 16px;
    text-align: center;
}

.bannerArea .bannerBox li.bannerLi .Txt .chExp {
    max-width: 492px;
}

.bannerArea .bannerBox li.bannerLi .bannerLine {
    padding: 25px 0;
    height: 205px;
    width: 20px;
    position: absolute;
    top: calc(50% - 205px - 30px);
    left: calc(60px - 5px);
    overflow: hidden;
}

.bannerArea .bannerBox li.bannerLi .bannerLine .num {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    color: #1d130d;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    text-align: center;
}

.bannerArea .bannerBox li.bannerLi .bannerLine .num.numBottom {
    top: auto;
    bottom: 0;
}

.bannerArea .bannerBox li.bannerLi .bannerLine::before {
    content: "";
    width: 2px;
    height: 155px;
    background-color: #8e8e8e;
    position: absolute;
    top: 25px;
    left: 9px;
}

.bannerArea .bannerBox li.bannerLi .bannerLine::after {
    content: "";
    width: 2px;
    height: 0px;
    background-color: #1d130d;
    position: absolute;
    top: 25px;
    left: 9px;
}

.bannerArea .bannerBox li.bannerLi .bannerLine.run::after {
    animation: bannerLine 5s linear forwards;
}

@keyframes bannerLine {
    0% {
        height: 0px;
    }
    70% {
        height: 155px;
        top: 25px;
    }
    71% {
        top: auto;
        bottom: 25px;
        height: 155px;
    }
    100% {
        height: 0px;
        top: auto;
        bottom: 25px;
    }
}

@media (max-width: 1880px) {
    /*.bannerArea .bannerBox li.bannerLi .bannerImg {
        width: 100%;
        max-width: 100%;
        left: 50%;
        transform: translate(-50%) rotate(8.8deg);
    }*/
}

@media (max-width: 1680px) {
    /*.bannerArea .bannerBox li.bannerLi {
        height: 940px;
    }
    .bannerArea .bannerBox li.bannerLi::before {
        height: 525px;
    }
    .bannerArea .bannerBox li.bannerLi::after {
        height: 415px;
    }
    .bannerArea .bannerBox li.bannerLi .Img {
        height: 635px;
    }*/
}

@media (max-width: 1200px) {
    /*.bannerArea .bannerBox li.bannerLi {
        height: 735px;
    }
    .bannerArea .bannerBox li.bannerLi::before {
        height: 345px;
    }
    .bannerArea .bannerBox li.bannerLi::after {
        height: 345px;
    }
    .bannerArea .bannerBox li.bannerLi .Img {
        height: 542px;
        top: -100px;
    }
    .bannerArea .bannerBox li.bannerLi .bannerImg {
        top: -80px;
    }*/
    .bannerArea .bannerBox li.bannerLi .Txt {
        top: 10%;
    }
}

@media (max-width: 960px) {

    /*.bannerArea .bannerBox li.bannerLi::before {
        top: 340px;
        top: 270px;
    }
    .bannerArea .bannerBox li.bannerLi::after {
        top: 150px;
        top: 80px;
    }
    .bannerArea .bannerBox li.bannerLi .Img {
        transform: initial;
        top: 0px;
        width: 100%;
        height: auto;
        left: 0;
    }
    .bannerArea .bannerBox li.bannerLi .bannerImg {
        top: 0;
        left: 0;
        transform: initial;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%;
    }*/
    .bannerArea .bannerBox li.bannerLi .Txt {
        left: 0;
        top: 50px;
        text-align: center;
        width: 100%;
        padding: 0 80px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .yBgTitle {
        margin: 0 auto;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .yTitle {
        font-size: 68px;
        line-height: 1;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chTitle {
        line-height: 1.2;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .slogan {
        display: block;
        padding: 0;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .slogan::before {
        display: none;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chExp {
        margin: 0 auto;
    }
    .bannerArea .bannerBox li.bannerLi .bannerLine {
        left: calc(20px - 5px);
    }
}

@media (max-width: 840px) {

    /*.www {color: #1d130d !important;}
.www::before {background: #1d130d !important;}

    .bannerArea .bannerBox li.bannerLi {
        height: auto;
    }
    .bannerArea .bannerBox li.bannerLi::before {
        transform-origin: bottom right;
        top: auto;
        bottom: 0;
        left: auto;
        right: 0;
        width: 140%;
        height: 700px;
    }
    .bannerArea .bannerBox li.bannerLi::after {
        top: 360px;
        transform-origin: bottom left;
        top: auto;
        bottom: 0;
        left: 0;
        height: 500px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
        width: 100%;
        padding: 10px 80px 120px;
    }*/
    .bannerArea .bannerBox li.bannerLi .Txt .yBgTitle {
        font-size: 14px;
        justify-content: center;
        margin: 0 auto;
        /*background-color: #fff;*/
    }
    .bannerArea .bannerBox li.bannerLi .Txt .yTitle {
        font-size: 48px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .slogan {
        padding: 0 0 20px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chTitle {
        line-height: 1.2;
        font-size: 24px;
        padding: 20px 0 0;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chTitle .circleBox {
        right: 0;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chExp {
        margin: 0 auto;
        max-width: 100%;
        padding: 20px 0 0;
    }
    .bannerArea .bannerBox li.bannerLi .bannerLine {
        left: calc(20px - 5px);
        top: calc(50% + 50px);
    }
}

@media (max-width: 640px) {
    .bannerArea .bannerBox li.bannerLi .Txt {
        padding: 10px 40px 120px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .yBgTitle {
        font-size: 14px;
        justify-content: center;
        margin: 0 auto;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .yTitle {
        font-size: 36px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .slogan {
        padding: 0px;
        font-size: 14px;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chTitle {
        line-height: 1.2;
        font-size: 20px;
        padding: 10px 0 0;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chTitle .circleBox {
        right: 0;
    }
    .bannerArea .bannerBox li.bannerLi .Txt .chExp {
        margin: 0 auto;
        max-width: 100%;
        padding: 20px 0 0;
        display: none;
    }
    .bannerArea .bannerBox li.bannerLi .bannerLine {
        top: calc(400px + 50px);
    }
}

@media (max-width: 480px) {
    .bannerArea .bannerBox li.bannerLi .bannerLine {
        top: calc(300px + 50px);
    }
}

@media (max-width: 440px) {
    .bannerArea .bannerBox li.bannerLi .Txt .chTitle {
        max-width: 200px;
    }
    .bannerArea .bannerBox li.bannerLi .bannerLine {
        top: calc(300px + 50px);
    }
}

.bannerArea .bannerBox .slick-dots {
    position: absolute;
    top: 50%;
    left: calc(60px - 10px);
    width: 20px;
    height: 20px;
}

.bannerArea .bannerBox .slick-dots li {
    display: flex;
    flex-direction: column;
}

.bannerArea .bannerBox .slick-dots li button {
    display: block;
}

.bannerArea .bannerBox .slick-dots li button::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #bebebe;
    border-radius: 50%;
    opacity: 1;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
}

.bannerArea .bannerBox .slick-dots li.slick-active button::before {
    background-color: #1d130d;
}

@media (max-width: 960px) {
    .bannerArea .bannerBox .slick-dots {
        left: calc(30px - 10px - 10px);
    }
}

@media (max-width: 840px) {
    .bannerArea .bannerBox .slick-dots {
        top: calc(50% + 205px + 60px);
        left: calc(30px - 10px - 10px);
    }
}

@media (max-width: 640px) {
    .bannerArea .bannerBox .slick-dots {
        top: calc(400px + 205px + 60px);
    }
}

@media (max-width: 480px) {
    .bannerArea .bannerBox .slick-dots {
        top: calc(300px + 205px + 60px);
    }
}

.bannerArea .bannerBox .ytPlayBtnBox {
    display: block;
    width: 68px;
    height: 68px;
    position: absolute;
    top: calc(50% + 100px);
    left: calc(60px - 28px);
}

.bannerArea .bannerBox .ytPlayBtnBox img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: playCircle 5s infinite linear;
}

.bannerArea .bannerBox .ytPlayBtnBox .playBtn {
    width: 20px;
    height: 20px;
    fill: #b06228;
    position: absolute;
    top: 24px;
    left: 24px;
    transform: rotate(90deg);
    opacity: 1;
}

.bannerArea .bannerBox .ytPlayBtnBox::before {
    content: "";
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 11px;
    left: 11px;
}

.bannerArea .bannerBox .ytPlayBtnBox:hover {
    transform: scale(1.2);
}

.bannerArea .bannerBox .ytPlayBtnBox:hover img {
    animation: playCircle 2s infinite linear;
}

.bannerArea .bannerBox .ytPlayBtnBox:hover .playBtn {
    fill: #fff;
}

.bannerArea .bannerBox .ytPlayBtnBox:hover::before {
    background-color: #b06228;
}

@media (max-width: 960px) {
    .bannerArea .bannerBox .ytPlayBtnBox {
        left: calc(50% - 34px);
        top: auto;
        bottom: 160px;
    }
}

@media (max-width: 840px) {
    .bannerArea .bannerBox .ytPlayBtnBox {
        bottom: 40px;
    }
}

.bannerArea .bannerBox .copyrightBox {
    position: absolute;
    top: 250px;
    right: 60px;
    writing-mode: vertical-lr;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 1px;
}

.bannerArea .bannerBox .copyrightBox a {
    color: #fff;
}

.bannerArea .bannerBox .copyrightBox a:hover {
    color: #b06228;
}

@media (max-width: 1680px) {
    .bannerArea .bannerBox .copyrightBox {
        display: none;
    }
}

.bannerArea.insBannerArea {
    height: 650px;
    padding: 0 0 90px;
}

.bannerArea.insBannerArea .bannerBox {
    width: 100%;
    height: 650px;
    position: relative;
}

.bannerArea.insBannerArea .bannerBox::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 45px 620px;
    border-color: transparent transparent transparent #f2f2f2;
    transform: rotate(-4.2deg);
    transform-origin: left bottom;
}

@media (max-width: 1680px) {
    .bannerArea.insBannerArea {
        height: 600px;
    }
    .bannerArea.insBannerArea .bannerBox {
        height: 600px;
    }
}

@media (max-width: 1440px) {
    .bannerArea.insBannerArea {
        height: 500px;
    }
    .bannerArea.insBannerArea .bannerBox {
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .bannerArea.insBannerArea {
        height: 300px;
    }
    .bannerArea.insBannerArea .bannerBox {
        height: 300px;
    }
    .bannerArea.insBannerArea .bannerBox::after {
        bottom: -63px;
        left: -240px;
    }
}

@media (max-width: 640px) {
    .bannerArea.insBannerArea .bannerBox::after {
        bottom: -77px;
        left: -440px;
    }
    .bannerArea.insBannerArea {
        height: 220px;
    }
    .bannerArea.insBannerArea .bannerBox {
        height: 220px;
    }
}

@media (max-width: 440px) {
    .bannerArea.insBannerArea .bannerBox::after {
        display: none;
    }
}

.bannerArea.insBannerArea .bannerUl {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
}
/*
.bannerArea.insBannerArea .bannerUl::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 5;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 75px 0 75px 550px;
    border-color: transparent transparent transparent #b06228;
    transform: rotate(-1.1deg);
    transform-origin: left bottom;
}
*/
.bannerArea.insBannerArea .bannerUl::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 750px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90px 1170px 54px 0;
    border-color: transparent #b06228 transparent transparent;
}

.bannerArea.insBannerArea .bannerUl li {
    position: absolute;
    height: 650px;
    width: 100%;
}
/*
.bannerArea.insBannerArea .bannerUl li::before {
    content: "";
    width: 100%;
    height: 270px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    transform: rotate(-8.9deg);
    transform-origin: bottom left;
}
*/
.bannerArea.insBannerArea .bannerUl li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 140px 1920px;
    border-color: transparent transparent #fff transparent;
}

.bannerArea.insBannerArea .bannerUl li a {
    width: 100%;
    height: 100%;
}

.bannerArea.insBannerArea .bannerUl li img {
    display: block;
    position: absolute;
    left: 0;
    top: -1px;
    height: 100%;
    object-fit: cover;
}

.bannerArea.insBannerArea .bannerUl li .Txt {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 0%;
    text-align: center;
}

.bannerArea.insBannerArea .bannerUl li .Txt .yTitle {
    font-size: 68px;
    line-height: 1;
    padding: 0 0 15px;
}

.bannerArea.insBannerArea .bannerUl li .Txt .slogan {
    display: inline-block;
    padding: 0 90px;
    color: #fff;
}

.bannerArea.insBannerArea .bannerUl li .Txt .slogan::before {
    width: 67px;
    background-color: #fff;
}

.bannerArea.insBannerArea .bannerUl li .Txt .slogan::after {
    content: "";
    width: 67px;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    background-color: #fff;
}

.bannerArea.insBannerArea .bannerUl li .Txt .chTitle {
    color: #fff;
    padding: 10px 0 0;
}

@media (max-width: 1680px) {
    .bannerArea.insBannerArea .bannerUl::before {
        top: 50px;
    }
    .bannerArea.insBannerArea .bannerUl li {
        height: 600px;
    }
    .bannerArea.insBannerArea .bannerUl li::before {
        height: 200px;
    }
}

@media (max-width: 1440px) {
    .bannerArea.insBannerArea .bannerUl li {
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .bannerArea.insBannerArea .bannerUl::before {
        display: none;
    }
    .bannerArea.insBannerArea .bannerUl::after {
        bottom: -25px;
        left: 390px;
    }
    .bannerArea.insBannerArea .bannerUl li {
        height: 300px;
    }
    .bannerArea.insBannerArea .bannerUl li::before {
        height: 0px;
        display: none;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt {
        top: 50px;
        padding: 0 30px;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt .yTitle {
        font-size: 54px;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt .chTitle {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 840px) {
    .bannerArea.insBannerArea .bannerUl li .Txt {
        top: 60px;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt .yTitle {
        font-size: 48px;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt .chTitle {
        font-size: 24px;
        line-height: 1.2;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt .slogan {
        display: none;
    }
}

@media (max-width: 640px) {
    .bannerArea.insBannerArea .bannerUl::after {
        bottom: -41px;
        left: 180px;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt {
        top: 60px;
    }
    .bannerArea.insBannerArea .bannerUl li .Txt .yTitle {
        font-size: 40px;
    }
    .bannerArea.insBannerArea .bannerUl li {
        height: 220px;
    }
}

@media (max-width: 440px) {
    .bannerArea.insBannerArea .bannerUl::after {
        bottom: -50px;
        left: 60px;
    }
}

.moreBtn {
    width: 200px;
    height: 45px;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 29px 0px rgba(131, 131, 131, 0.22);
}

.moreBtn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0%;
    background-color: #b06228;
    z-index: -5;
}

.moreBtn::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0%;
    background-color: #ff9727;
    z-index: -5;
}

.moreBtn .moreTxt {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #1d130d;
}

.moreBtn svg {
    width: 17px;
    height: 14px;
}

.moreBtn:hover::after {
    width: 100%;
}

.moreBtn:hover .moreTxt {
    transform: translate(20px);
}

.newsArea {
    padding: 0 0 40px;
    position: relative;
    top: -30px;
}

@media (max-width: 840px) {
    .newsArea {
        padding: 0 0 60px;
    }
}

.newsArea::before {
    content: "";
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #b06228;
    transform: perspective(1920px) rotateY(-38deg) translateY(-10px);
    transform-origin: left;
}

@media (max-width: 1440px) {
    .newsArea::before {
        transform: perspective(1200px) rotateY(-28deg) translateY(-10px);
    }
}

@media (max-width: 960px) {
    .newsArea::before {
        transform: perspective(840px) rotateY(-18deg) translateY(0px);
        height: 250px;
        bottom: 100px;
    }
}
/*
@media (max-width: 480px) {
    .newsArea .newsLi .chTitle a , .newsArea .newsLi .chExp , .newsArea .newsLi .date{
        color: #fff !important;
    }
}
*/
.newsArea .wrap {
    display: flex;
    flex-wrap: wrap;
}

.newsArea .titleBox {
    width: 420px;
}

.newsArea .titleBox .yTitle {
    display: inline-block;
}

@media (max-width: 1440px) {
    .newsArea .titleBox {
        width: 340px;
    }
}

@media (max-width: 1200px) {
    .newsArea .titleBox {
        width: 100%;
        text-align: center;
    }
    .newsArea .titleBox .yTitle {
        display: block;
    }
    .newsArea .titleBox .slogan {
        display: inline-block;
        padding: 0 90px;
    }
    .newsArea .titleBox .slogan::before {
        width: 67px;
    }
    .newsArea .titleBox .slogan::after {
        content: "";
        width: 67px;
        height: 2px;
        position: absolute;
        top: calc(50% - 1px);
        right: 0;
        background-color: #1d130d;
    }
    .newsArea .titleBox .moreBtn {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
    }
}

@media (max-width: 440px) {
    .newsArea .titleBox .slogan {
        padding: 0;
    }
    .newsArea .titleBox .slogan::before, .newsArea .titleBox .slogan::after {
        display: none;
    }
}

.newsArea .newsBox {
    width: calc(100% - 420px);
    position: relative;
}

@media (max-width: 1440px) {
    .newsArea .newsBox {
        width: calc(100% - 340px);
    }
}

@media (max-width: 1200px) {
    .newsArea .newsBox {
        width: 100%;
        max-width: 780px;
        margin: 10px auto 20px;
    }
}

@media (max-width: 960px) {
    .newsArea .newsBox {
        width: 700px;
        max-width: initial;
    }
}

@media (max-width: 840px) {
    .newsArea .newsBox {
        width: 100%;
        position: relative;
    }
}

.newsArea .arrowBox {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 160px;
}

.newsArea .arrowBox.prevBox {
    left: 0;
}

@media (max-width: 1200px) {
    .newsArea .arrowBox.prevBox {
        left: -40px;
    }
}

@media (max-width: 840px) {
    .newsArea .arrowBox.prevBox {
        left: calc(50% - 100px - 60px);
        top: auto;
        bottom: -47.5px;
        bottom: -77.5px;
    }
}

.newsArea .arrowBox.nextBox {
    right: -40px;
}

@media (max-width: 1200px) {
    .newsArea .arrowBox.nextBox {
        right: -40px;
    }
}

@media (max-width: 840px) {
    .newsArea .arrowBox.nextBox {
        right: calc(50% - 100px - 60px);
        top: auto;
        bottom: -47.5px;
        bottom: -77.5px;
    }
}

.newsArea .arrowBox a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.newsArea .arrowBox a::before {
    content: "";
    width: 2px;
    height: 17px;
    background-color: #c5c5c5;
    position: absolute;
    top: 3px;
    left: 14px;
    transform-origin: bottom right;
}

.newsArea .arrowBox a::after {
    content: "";
    width: 2px;
    height: 17px;
    background-color: #c5c5c5;
    position: absolute;
    bottom: 3px;
    left: 14px;
    transform-origin: top left;
}

.newsArea .arrowBox a.prevArrow::before {
    transform: rotate(30deg);
}

.newsArea .arrowBox a.prevArrow::after {
    transform: rotate(-30deg);
}

.newsArea .arrowBox a.nextArrow::before {
    transform: rotate(-30deg);
    left: 26px;
}

.newsArea .arrowBox a.nextArrow::after {
    transform: rotate(30deg);
    left: 26px;
}

.newsArea .arrowBox a:hover::before {
    background-color: #1d130d;
}

.newsArea .arrowBox a:hover::after {
    background-color: #1d130d;
}

.newsArea .newsList {
    margin: 10px 0 0 40px;
    width: 100%;
    max-width: 903px;
}

@media (max-width: 1440px) {
    .newsArea .newsList {
        margin: 10px auto;
        max-width: 700px;
    }
}

@media (max-width: 840px) {
    .newsArea .newsList {
        margin: 10px auto 0;
        max-width: 280px;
    }
    .newsArea .newsList .slick-list {
        overflow: visible;
    }
}

.newsArea .newsLi {
    width: 301px;
    height: 490px;
    padding: 0 8px;
}

.newsArea .newsLi:hover .Img img {
    transform: scale(1.05);
}

.newsArea .newsLi:hover .Img .newIcon {
    background-color: #ff9727;
}

@media (max-width: 1200px) {
    .newsArea .newsLi {
        width: 100%;
        height: auto;
    }
}

.newsArea .Img {
    position: relative;
}

.newsArea .Img img {
    display: block;
    width: 100%;
    backface-visibility: hidden;
}

.newsArea .Img .newIcon {
    padding: 0 36px;
    margin: 0;
    height: 36px;
    font-size: 14px;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0;
    background-color: #1d130d;
    color: #fff;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.newsArea .Img:hover .newIcon {
    transform: scale(1.1);
    transform-origin: top right;
}

.newsArea .Txt {
    position: relative;
    padding: 15px 0px 0;
}

.newsArea .Txt .chTitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #1d130d;
    padding: 0;
}

.newsArea .Txt .chTitle a {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #1d130d;
}

.newsArea .Txt .chTitle a:hover {
    color: #b06228;
}

.newsArea .Txt .chExp {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    color: #1d130d;
    max-height: 28px;
    margin-bottom: 10px;
}

.newsArea .Txt .date {
    font-size: 14px;
    overflow-anchor: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #1d130d;
}

@media (max-width: 1200px) {
    .newsArea .Txt .chTitle a:hover {
    color: #ff9727;
    }
}

@media (max-width: 768px) {
    .newsArea .Txt .chTitle {
    color: #000;
    }
    .newsArea .Txt .chTitle a {
    color: #000;
    }
    .newsArea .Txt .chTitle a:hover {
    color: #ff9727;
    }
    .newsArea .Txt .chExp {
    color: #000;
    }
    .newsArea .Txt .date {
    color: #000;
    }
    .newsArea .titleBox .moreBtn {
    color: #000;
    }
}

.newsArea .slick-dots {
    bottom: 50px;
    left: -460px;
    width: 420px;
    text-align: left;
}

.newsArea .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
}

.newsArea .slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
}

.newsArea .slick-dots li button::before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #f2f2f2;
    opacity: 1;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px);
}

.newsArea .slick-dots li.slick-active button::before {
    background-color: #1d130d;
}

@media (max-width: 1440px) {
    .newsArea .slick-dots {
        left: -360px;
    }
}

@media (max-width: 1200px) {
    .newsArea .slick-dots {
        bottom: -30px;
        left: 0px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 840px) {
    .newsArea .slick-dots {
        bottom: -30px;
        left: 0px;
        width: 100%;
        text-align: center;
    }
}

.mainArea.page404 {
    width: 100%;
    max-width: 768px;
    margin: 150px auto 0;
    padding: 180px 0 30px;
}

@media (max-width: 960px) {
    .mainArea.page404 {
        margin: 70px auto 0;
        padding: 50px 20px;
        text-align: center;
    }
}
/*# sourceMappingURL=main.css.map */