/* common */
@font-face {
    font-family: Roboto;
    src: url("/static/fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: Roboto B;
    src: url("/static/fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: Avenir;
    src: url("../font/Avenir-Book.woff.ttf");
}

@font-face {
    font-family: Futura-Bold;
    src: url("/static/fonts/futur_b.ttf");
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #fff;
}

*, *::after, *::before {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0;
}

#my-scrollbar {
    height: 100vh;
}

.scroll-content {
    overflow: hidden;
}

.scrollbar-thumb {
    width: 5px !important;
}

@media screen and (max-width: 1023px) {
    .scrollbar-thumb {
        width: 0 !important;
    }
}

.scrollbar-track-y {
    z-index: 9999 !important;
}

.scrollbar-track {
    background-color: transparent !important;
    right: 0 !important;
}

.scrollbar-track:hover {
    cursor: grab;
}

.scrollbar-thumb {
    background: rgba(0, 0, 0, .5) !important;
}

img {
    object-fit: cover;
    vertical-align: bottom;
}

textarea {
    resize: none;
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

.bezier .swiper-wrapper {
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}

/*video*/
*[onclick*='video_alert(this)'] video {
    display: none;
}

.alert_video {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: 1s;
}

.video_active {
    pointer-events: auto !important;
    opacity: 1 !important;
}

.alert_video .joke {
    display: flex;
    position: relative;
    z-index: 2;
}

.alert_video .joke .video {
    width: 100%;
    height: 576px;
    display: block;
}

.alert_video .joke .video video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.alert_video .joke .close {
    margin: 0 0 0 25px;
    cursor: pointer;
}

.alert_video .joke .close svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.alert_video .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}

.alert_video.all .joke {
    width: 100%;
    height: 100%;
}

.alert_video.all .joke .video {
    height: 100%;
    object-fit: cover;
}

.alert_video.all .close {
    position: absolute;
    top: 50px;
    right: 50px;
}

.alert_video.all .joke .video video {
    object-fit: cover;
}

.none {
    display: none;
}

#my-scrollbar .scroll-content section {
    overflow: hidden;
}

table {
    border-collapse: collapse;
}

/* common */

/* Jun*/
.header {
    width: 100%;
    height: 84px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header .logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
}

.header .logo img {
    width: 100%;
    object-fit: contain;
}

.header .matter {
    display: flex;
    align-items: center;
}

.header .matter nav {
    margin: 0 103px 0 0;
}

.header .matter nav ul {
    display: flex;
}

.header .matter nav ul li {
    padding: 40px 0;
    cursor: pointer;
    position: relative;
}

.header .matter nav ul li .second {
    position: absolute;
    width: fit-content;
    background: rgba(255, 255, 255, 0.95);
    top: 93px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clip-path: inset(0px 0% 100% 0px);
    transition: 0.6s;
    padding: 0 25px;
}

.header .matter nav ul li:hover .second {
    clip-path: inset(0px 0% 0% 0px);
}

.header .matter nav ul li .second .joke {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.header .matter nav ul li .second .joke .images {
    width: 321px;
    height: 203px;
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0 67px 0 0;
    overflow: hidden;
}

.header .matter nav ul li:nth-child(3) .joke .images img {
    display: none;
}

.header .matter nav ul li:nth-child(3) .joke .images img.on {
    display: block;
}

.header .matter nav ul li .second .joke .images img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 3s;
}

.header .matter nav ul li .second .joke .images:hover img{
    transform: scale(1.1);
}

.header .matter nav ul li .second .joke .cut {
    position: relative;
}

.header .matter nav ul li .second .joke .cut .item {
    /*position: relative;*/
}

.header .matter nav ul li .second .joke .cut .item:not(:last-child) {
    margin: 0 0 29px 0;
}

.header .matter nav ul li .second .joke .cut .item a {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    color: #333333;
    position: relative;
    padding: 0 0 0 17px;
    white-space: nowrap;
    left: -7px;
}

.header .matter nav ul li .second .joke .cut .item .hide {
    position: absolute;
    left: 100%;
    top: -7px;
    padding: 0 0 0 30px;
}

.header .matter nav ul li .second .joke .cut .item .hide a {
    display: block;
    white-space: nowrap;
    line-height: 35px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: 0.8s;
}

.header .matter nav ul li .second .joke .cut .item:hover .hide a {
    opacity: 0.5;
    pointer-events: auto;
}

.header .matter nav ul li .second .joke .cut .item .hide a:hover {
    opacity: 1;
}

.header .matter nav ul li .second .joke .cut .item a:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid rgba(233, 182, 73, 1);
    opacity: 0;
    transition: 0.6s;
}

.header .matter nav ul li .second .joke .cut .item a:hover:after {
    opacity: 1;
}

.header .matter nav ul li > a {
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    color: #212121;
    padding: 10px 3px;
    transition: 0.5s;
}

.header .matter nav ul li:hover a {
    color: #219081;
}

.header .matter nav ul li.on > a {
    color: #219081;
}

.header .matter nav ul li:not(:last-child) {
    margin: 0 80px 0 0;
}

.header .matter .language {
    display: flex;
    align-items: center;
}

.header .matter .language a {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    color: #212121;
    position: relative;
    overflow: hidden;
}

.header .matter .language a:not(:last-child) {
    margin: 0 18px 0 0;
}

.header .matter .language a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #212121;
    transform: translateX(-100%);
    transition: 0.4s;
}

.header .matter .language a:hover:after {
    transform: translateX(0);
}

footer {
    background: #519c7e;
    overflow: hidden;
    position: relative;
}

footer .background {
    position: absolute;
    top: 100px;
    left: 0;
    width: calc(100% - 65px);
    filter: grayscale(1) brightness(5);
    opacity: 0.03;
    pointer-events: none;
}

footer .wrap {
    margin: 50px auto;
    position: relative;
}

footer .wrap .content {
    display: flex;
    justify-content: space-between;
    padding: 0 140px 39px 79px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

footer .wrap .content .the_left span {
    font-size: 36px;
    font-family: Roboto;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 35px;
    display: block;
    margin: 0 0 58px 0;
}

footer .wrap .content .the_left .sign {
    width: 199px;
    height: 38px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    color: #202020;
    margin: 0 0 39px 0;
    transition: 1s;
}

footer .wrap .content .the_left .sign:hover {
    background: #219081;
    color: #fff;
}

footer .wrap .content .the_left p {
    width: 550px;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    opacity: 0.8;
}

footer .wrap .content .the_right{
    width: 100%;
}

footer .wrap .content .the_right .foo_nav {
    margin: 0;
    display: flex;
}

footer .wrap .content .the_right .foo_nav .item:not(:last-child) {
    margin: 0 88px 0 0;
}

footer .wrap .content .the_right .foo_nav .item > a {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin: 0 0 18px 0;
}

footer .wrap .content .the_right .foo_nav .item .second a {
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    display: block;
    opacity: 0.5;
}

footer .wrap .content .the_right .foo_nav .item.support_ a {
    opacity: 1;
}

footer .wrap .content .the_right .icon {
    display: flex;
    justify-content: flex-end;
}

footer .wrap .content .the_right .icon .joke {
    display: flex;
}

footer .wrap .content .the_right .icon a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(183, 192, 173, 1);
    font-size: 20px;
    transition: 0.8s;
}

footer .wrap .content .the_right .icon a:not(:last-child) {
    margin: 0 8px 0 0;
}

footer .wrap .content .the_right .icon a:hover {
    background: #FFFFFF;
    color: rgba(127, 147, 107, 1);
}
footer .wrap .content .the_right .icon a:hover svg path {
    fill: rgba(127, 147, 107, 1) !important;
}
footer .wrap .link {
    padding: 40px 140px 0 79px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .wrap .link p, footer .wrap .link a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    transition: 0.6s;
}

footer .wrap .link a {
    margin: 0 0 0 8px;
}

footer .wrap .link a:hover {
    color: #fff;
}

.common_paging {
    margin: 120px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common_paging a:not(:first-child,:last-child) {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    color: rgba(164, 164, 164, 1);
    margin: 0 12px;
    transition: 0.7s;
}

.common_paging a.on, .common_paging a:not(:first-child,:last-child):hover {
    background: #507C6B;
    color: #fff;
}

.common_paging a:first-child, .common_paging a:last-child {
    margin: 0 50px;
    display: flex;
    align-items: center;
}

.common_paging a:first-child p, .common_paging a:last-child p {
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #A4A4A4;
    margin: 0 14px;
    transition: 0.6s;
}

.common_paging a:first-child .iconfont, .common_paging a:last-child .iconfont {
    color: rgba(121, 121, 121, 1);
    font-size: 13px;
    transition: 0.6s;
}

.common_paging a:last-child {
    flex-direction: row-reverse;
}

.common_paging a:first-child .iconfont {
    transform: rotate(180deg);
}

.common_paging a:first-child:hover .iconfont, .common_paging a:last-child:hover .iconfont, .common_paging a:first-child:hover p, .common_paging a:last-child:hover p {
    color: #507C6B;
}


.common_banner {
    height: 682px;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.fixed .fixed_banner, .fixed_sustainability {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fixed_banner {
    display: none;
}

.fixed_banner.show {
    display: block;
    background: #fff;
}

.fixed_banner.show canvas {
    transform: scale(1.05);
}

.fixed_sustainability.hide {
    display: none;
}

.fixed .fixed_banner img, .fixed_sustainability img {
    width: 100%;
    height: 100%;
}

.common_fixed {
    height: 682px;
}

.scrollbar_y span, .scrollbar_y p {
    transform: translate(0, 100%);
    transition: 2s !important;
}

.scrollbar_y.aos-animate span, .scrollbar_y.aos-animate p {
    transform: translate(0, 0%);
}

.scrollbar_clip {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    transition: 2.5s !important;
}

.scrollbar_clip.aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

@media screen and (max-width: 1600px) {
    .header .matter nav ul li:not(:last-child) {
        margin: 0 4vw 0 0;
    }
    .header .matter nav {
        margin: 0 72px 0 0;
    }
}
@media screen and (max-width: 1420px) {
    footer .wrap .content{
        padding: 0 5% 36px 5%;
    }
    footer .wrap .content .the_left p{
        width: 100%;
    }
    footer .wrap .content .the_left {
        width: 36%;
    }
}
@media screen and (max-width: 1340px) {
    .header .matter nav ul li:not(:last-child) {
        margin: 0 3vw 0 0;
    }
}
@media screen and (max-width: 1275px) {
    .header .matter nav {
        margin: 0 50px 0 0;
    }
    .header .matter nav ul li > a{
        font-size: 17px;
    }
    .header{
        padding: 0 5%;
    }
    footer .wrap .content .the_left span{
        font-size: 32px;
    }
    footer .wrap .content .the_right .foo_nav{
        grid-gap: 20px;
    }
}
@media screen and (max-width: 1070px) {
    .header .matter nav ul li > a {
        font-size: 16px;
    }
    .header .matter nav ul li:not(:last-child) {
        margin: 0 2.5vw 0 0;
    }
}

@media screen and (max-width: 1023px) {
    .scrollbar_y{
        height: auto!important;
    }
    .header .matter nav{
        display: none;
    }
    .header{
        height: 75px;
    }
    .header .logo{
        width: 54px;
    }
    .header{
        background: #fff;
        box-shadow: 0 7px 32px -12px rgb(192 196 204 / 72%);
    }
    .scrollbar_y span, .scrollbar_y p {
        transform: translate(0, 0%) !important;
    }
    footer .wrap .content .the_right .foo_nav{
        display: none;
    }
    footer .wrap .content .the_right .icon{
        justify-content: center;
    }

    footer .wrap{
        margin: 40px auto 21px;
    }
    footer .wrap .link{
        padding: 18px 5% 0 5%;
        flex-direction: column;
    }
    footer .wrap .link p, footer .wrap .link a{
        flex-direction: column;
        text-align: center;
        line-height: 24px;
    }
    footer .wrap .content .the_right .icon a{
        width: 40px;
        height: 40px;
    }
    .common_paging a:first-child, .common_paging a:last-child{
        margin: 0 5px;
    }
    .common_paging a:not(:first-child,:last-child){
        margin: 0 5px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .common_paging a:first-child p, .common_paging a:last-child p{
        font-size: 12px;
        margin: 0 5px;
    }
    .common_paging{
        margin: 63px auto 0;
    }
    .common_banner {
        height: 50vh!important;
    }
}