@charset "utf-8";

#container{
    position: relative;
}

/*-----------------------------------------------
    index
-----------------------------------------------*/
/* cmnlinkbtn */
.cmnlinkbtn{
    width:260px;
    display: block;
    padding: 21px 0;
    text-decoration: none;
    color: #fff;
    font-size:15px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
    background: #000000;
}
.cmnlinkbtn:hover{
    opacity: 0.8!important;
}
.cmnlinkbtn span{
    position: relative;
    padding-right: 17px;
}
.cmnlinkbtn span::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width:6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #fff;
}
@media only screen and (max-width:767px){
    .cmnlinkbtn{
        width: 201px;
        display: block;
        padding: 22px 0;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 1px;
        text-align: center;
        margin: 0 auto;
        background: #000000;
    }
    .cmnlinkbtn span{
        padding-right: 0;
        width: 100%;
        display: block;
    }
    .cmnlinkbtn span::after{
        right: 20px;
    }
}

/* secHero */
.secHero{
    position: relative;
    height: 100vh;
    z-index: 100;
}
.secHero .boxScroll{
    width: 1px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background: rgba(255, 255, 255, 0.25);
}
.secHero .boxScroll::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #efefef 50%, rgba(255, 255, 255, 0) 50%);
    background-position: 0 -120px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown{
    0%{
        background-position: 0 100%;
    }
    75%{
        background-position: 0 0;
    }
    100%{
        background-position: 0 -100%;
    }
}

.secHero .titbox{
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
}
.secHero .titbox .inner{
    display: inline-block;
    text-align: center;
    color: #fff;
    text-shadow: black 0.1em 0.1em 0.2em;
}
.secHero .titbox .inner .tit{
    font-size: 130px;
    line-height: 1;
    letter-spacing: 2px;
}
.secHero .titbox .inner .txt{
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 0px;
    padding-top: 22px;
}
.secHero .swiper-slide{
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.secHero .swiper-slide .img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.secHero .swiper-slide .img img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    font-family: 'object-fit: cover;'
}
.secHero .swiper-slide-active .img,
.secHero .swiper-slide-duplicate-active .img,
.secHero .swiper-slide-prev .img{
    animation: zoomUp 11s linear 0s 1 normal both;
}
@keyframes zoomUp {
    0% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@media only screen and (max-width:1420px){
    .secHero .titbox .inner{
        padding-bottom: 300px;
    }
}
@media only screen and (max-width:767px){
    .secHero{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100lvh;
    }
    .secHero .titbox{
        top: 0;
        left: 0;
        transform: translateY(0) translateX(0);
        -webkit-transform: translateY(0) translateX(0);
        height: 100vh;
        height: 100svh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .secHero.fade-out{
        animation: heroFadeOut 0.5s ease-in-out forwards;
    }
    .secHero.fade-in{
        animation: heroFadeIn 0.5s ease-in-out forwards;
    }
    .secHero .swiper-slide{
        height: 100vh !important;
        height: 100lvh !important;
    }
    .secHero .swiper-slide .img{
        height: 100vh;
        height: 100lvh;
    }
    .secHero .titbox .inner{
        width: 310px;
        text-align: left;
        padding-bottom: 0;
    }
    .secHero .titbox .inner .tit{
        letter-spacing: 0.75px;
        font-size: 32px;
    }
    .secHero .titbox .inner .txt{
        font-size: 11px;
        line-height: 1.6363;
        padding-top: 5px;
    }
}
@keyframes heroFadeOut {
    0% {
        opacity: 1;
        z-index: 100;
    }
    99% {
        opacity: 0;
        z-index: 100;
    }
    100% {
        opacity: 0;
        z-index: -1;
    }
}
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        z-index: -1;
    }
    99% {
        opacity: 1;
        z-index: 100;
    }
    100% {
        opacity: 1;
        z-index: 100;
    }
}

/* secConcept */
.secConcept{
    margin-top: 200px;
}
.secConcept .inner{
    max-width: 1100px;
    min-height: 721px;
    margin: 0 auto;
    position: relative;
}
.secConcept .inner .txtbox{
    text-align: left;
}
.secConcept .inner .txtbox .point{
    font-size: 16px;
    line-height: 1;
}
.secConcept .inner .txtbox .sub{
    font-size: 50px;
    line-height: 1.5;
    margin-top: 30px;
}
.secConcept .inner .txtbox .sub span{
    position: relative;
}
.secConcept .inner .txtbox .sub span .img{
    display: block;
    position: absolute;
    top: 34px;
    left: 68px;
}
.secConcept .inner .txtbox .tit{
    font-size:20px;
    line-height: 1.8;
    margin-top: 94px;
    font-weight: bold;
}
.secConcept .inner .txtbox .txt{
    font-size:16px;
    line-height: 36px;
    padding-top: 31px;
    font-weight: bold;
}
.secConcept .inner .txtbox .underlink .link{
    display: block;
    position: relative;
    width: 180px;
    font-size: 15px;
    text-decoration: none;
    text-align: left;
    color: #000;
    margin-top: 34px;
    padding: 24px 0;
}
.secConcept .inner .txtbox .underlink .link span{
    position: relative;
    padding-right: 18px;
    transition: 1s all;
}
.secConcept .inner .txtbox .underlink .link span::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #000;
}
.secConcept .inner .txtbox .underlink .link::after{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
}
.secConcept .inner .txtbox .underlink .link:hover span{
    padding-left: 1em;
    transition: 1s all;
}
.secConcept .inner .txtbox .underlink .link:hover:after{
    display: none;
}
.secConcept .inner .txtbox .underlink .link::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.75s cubic-bezier(.19, 1, .22, 1);
    height: 1px;
}
.secConcept .inner .txtbox .underlink .link:hover::before{
    transform: scaleX(1);
    transform-origin: left center;
}
.secConcept .inner .imgbox{
    position: absolute;
    top: 0;
    right: 0;
    transition-duration: 3.2s;
}
@media only screen and (max-width:767px){
    .secConcept{
        margin-top: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        padding-top: 100vh;
    }
    .secConcept.lazyloaded{
        background: url(../img/imgbackConcept.jpg) center top no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .is-iOS .secConcept.lazyloaded{
        background-attachment: scroll;
        background-size: 130%;
        background-position: center bottom;
        background-color: #59584c;
    }
    .secConcept .inner{
        width: 82%;
        min-height: 0;
        margin: 0 auto;
        position: relative;
        min-width: 305px;
        padding-top: 21vw;
        padding-bottom: 45.5vw;
    }
    .secConcept .inner .txtbox{
        text-align: left;
        color: #fff;
    }
    .secConcept .inner .txtbox .point{
        font-size: 12px;
        line-height: 1;
    }
    .secConcept .inner .txtbox .sub{
        font-size: 29px;
        line-height: 1.5;
        margin-top: 16px;
    }
    .secConcept .inner .txtbox .sub span{
        position: relative;
    }
    .secConcept .inner .txtbox .sub span .img{
        width: 172px;
        left: 40px;
        top: 21px;
    }
    .secConcept .inner .txtbox .tit{
        font-size:18px;
        line-height: 1.8;
        margin-top: 45px;
    }
    .secConcept .inner .txtbox .txt{
        font-size:12px;
        line-height: 2.08;
        padding-top: 11px;
    }
    .secConcept .inner .txtbox .underlink .link{
        width: 120px;
        font-size: 12px;
        text-decoration: none;
        text-align: center;
        color: #fff;
        margin-top: 32px;
        padding: 13px 0;
        border: 1px solid #fff;
    }
    .secConcept .inner .txtbox .underlink .link span{
        position: relative;
        padding-right: 8px;
    }
    .secConcept .inner .txtbox .underlink .link span::after{
        content: "";
        position: absolute;
        right: -5px;
        top: calc(50% - 3.5px);
        width: 6px;
        height: 7px;
        clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
        background: #fff;
    }
    .secConcept .inner .txtbox .underlink .link::after{
        content: "";
        width: 100%;
        height: 1px;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .secConcept .inner .imgbox{
    display: none;
    }
}
/* secLineup */
.secLineup{
    margin-top: 186px;
}
.secLineup .inner{
    max-width: 1460px;
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-top: 54px;
}
.secLineup .inner .list{
    display: flex;
}
.secLineup .inner .list li{
    width: 30.3035%;
    margin-right: 4.54475%;
}
.secLineup .inner .list li:last-child{
    margin-right: 0;
}
.secLineup .inner .list li .inlink{
    display: block;
    position: relative;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: #f8f7f6;
    height: 41.667vw;
    min-height: 592px;
}
.secLineup .inner .list li .inlink .tit{
    font-size: 18px;
    padding-top: 22px;
    line-height: 1.5;
}
.secLineup .inner .list li .inlink .txt{
    font-size:15px;
    line-height: 30px;
    color: #fff;
    display: none;
}
.secLineup .inner .list li .inlink .btn{
    position: absolute;
    width: 220px;
    padding: 18px 0;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
    background: #ffffff;
    display: none;
    bottom: 6.65vw;
    left: calc(50% - 110px);
}
.secLineup .inner .list li .inlink:hover .btn{
    display: block;
}
.secLineup .inner .list li .inlink .btn span{
    position: relative;
    padding-right: 17px;
}
.secLineup .inner .list li .inlink .btn span::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #000;
}
.secLineup .inner .list li .inlink:hover{
    color: #fff;
}
.secLineup .inner .list li .inlink:hover .txt{
    display: inline-block;
    padding-top: 37px;
}
.secLineup.lazyloaded .inner .list li:nth-child(1) .inlink{
    background: url(../img/imgbackconcept01off.jpg) center bottom no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.secLineup.lazyloaded .inner .list li:nth-child(2) .inlink{
    background: url(../img/imgbackconcept02off.jpg) center bottom no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.secLineup.lazyloaded .inner .list li:nth-child(3) .inlink{
    background: url(../img/imgbackconcept03off.jpg) center bottom no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.secLineup.lazyloaded .inner .list .inlink::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.5s ease-out;
    opacity: 0;
}
.secLineup.lazyloaded .inner .list .inlink:hover::before{
    opacity: 1;
}
.secLineup.lazyloaded .inner .list li:nth-child(1) .inlink::before{
    background: url(../img/index/imgbackconcept01.jpg) center bottom no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.secLineup.lazyloaded .inner .list li:nth-child(2) .inlink::before{
    background: url(../img/index/imgbackconcept02.jpg) center bottom no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.secLineup.lazyloaded .inner .list li:nth-child(3) .inlink::before{
    background: url(../img/index/imgbackconcept03.jpg) center bottom no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.secLineup .inner .list li .inlink .inbox{
    padding-top: 6.85vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.secLineup .inner .list li .inlink .rightimg{
    position: relative;
    z-index: 2;
}
.secLineup .inner .list li .inlink .imgtit{
    display: inline-block;
}
.secLineup .inner .list li .inlink .imgtit .imgOn,
.secLineup .inner .list li .inlink:hover .imgtit .imgOff{
    display: none;
}
.secLineup .inner .list li .inlink:hover .imgtit .imgOn{
    display: inline-block;
}
@media only screen and (max-width:1420px){
    .secLineup .inner .list li .inlink .inbox{
        padding-top: 90px;
    }
}
@media only screen and (max-width:767px){
    .secLineup{
        margin-top: 200vh;
        padding-top: 66px;
    }
    .secLineup .inner{
        width: 92%;
        min-width: 305px;
        margin: 0 auto;
        margin-top: 26px;
    }
    .secLineup .inner .list{
        display: block;
        width: 100%;
    }
    .secLineup .inner .list li{
        width: 100%;
        margin-bottom: 20px;
    }
    .secLineup .inner .list li .inlink{
        display: flex;
        position: relative;
        text-align: center;
        text-decoration: none;
        color: #000;
        background: #f8f7f6;
        height: auto;
        min-height:0;
        padding: 10px 10px 10px 0px;
        align-items: center;
    }
    .secLineup .inner .list li .inlink .inbox{
        max-width: calc(100% - 130px);
        width: 55.93%;
        padding: 0px;
        position: static;
    }
    .secLineup .inner .list li .inlink .tit{
        font-size: 11px;
        padding-top: 4px;
        line-height: 1.5;
    }
    .secLineup .inner .list li .inlink:hover .txt,
    .secLineup .inner .list li .inlink .txt{
        display: none;
    }
    .secLineup .inner .list li .txt{
        font-size:11px;
        line-height:1.818;
        letter-spacing: -0.5px;
        text-align: center;
        padding-top: 11px;
    }
    .secLineup .inner .list li .inlink:hover .btn,
    .secLineup .inner .list li .inlink .btn{
        display: none;
    }
    .secLineup .inner .list li .inlink .btn span{
        position: relative;
        padding-right: 17px;
    }
    .secLineup .inner .list li .inlink .btn span::after{
        content: "";
        position: absolute;
        right: 0;
        top: calc(50% - 3.5px);
        width: 6px;
        height: 7px;
        clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
        background: #000;
    }
    .secLineup .inner .list li .inlink:hover{
        color: #000;
    }
    .secLineup.lazyloaded .inner .list li:nth-child(1) .inlink,
    .secLineup.lazyloaded .inner .list li:nth-child(2) .inlink,
    .secLineup.lazyloaded .inner .list li:nth-child(3) .inlink,
    .secLineup.lazyloaded .inner .list li:nth-child(1) .inlink:hover,
    .secLineup.lazyloaded .inner .list li:nth-child(2) .inlink:hover,
    .secLineup.lazyloaded .inner .list li:nth-child(3) .inlink:hover{
        background:#f8f7f6;
    }
    .secLineup .inner .list li .inlink .imgtit,
    .secLineup .inner .list li .inlink:hover .imgtit .imgOff{
        display: inline-block;
    }
    .secLineup .inner .list li .inlink .imgtit .imgOn,
    .secLineup .inner .list li .inlink:hover .imgtit .imgOn{
        display: none;
    }
    .secLineup .inner .list li .inlink .imgtit img{
        width: auto;
        height: 41px;
    }
    .secLineup .inner .list li .inlink .rightimg{
        min-width: 130px;
        width: 44.07%;
        position: relative;
    }
    .secLineup .inner .list li .inlink .imgbox{
        margin: 0 auto;
        width:90%;
        margin-top: 23px;
    }
    .secLineup .inner .list li:last-child{
        margin-bottom: 0;
    }
    .secLineup .inner .list li .inlink .rightimg .morebtn{
        color: #fff;
        position: absolute;
        bottom: 18px;
        font-size: 10px;
        right: 11px;
    }
    .secLineup .inner .list li .inlink .rightimg .morebtn span{
        position: relative;
        padding-right: 12px;
        padding-bottom: 2px;
    }
    .secLineup .inner .list li .inlink .rightimg .morebtn span::after{
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 1px;
        background: #fff;
    }
    .secLineup .inner .list li .inlink .rightimg .morebtn span::before{
        content: "";
        position: absolute;
        right: 0;
        top: calc(50% - 3.5px);
        width: 6px;
        height: 7px;
        clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
        background: #fff;
    }
}
/* secWorks */
.secWorks{
    margin-top: 184px;
}
.secWorks .inner{
    margin-top: 56px;
}
.secWorks .secCmnWorksList .worksList {
    margin-bottom: 75px;
}
@media only screen and (max-width:767px){
    .secWorks{
    margin-top: 61px;
}
    .secWorks .inner{
        margin-top: 27px;
    }
    .secCmnWorksList .worksItem:nth-child(n + 5){
        display: none;
    }
    .secWorks .secCmnWorksList .worksList {
        margin-bottom: 38px;
    }
}
/* secEvent */
.secEvent,.abouttit{
    margin-top: 190px;
    background: #f8f7f6;
    padding-bottom: 120px;
    padding-top: 108px;
}
.secEvent .secCmnEventList{
    max-width: 1650px;
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-top: 55px;
    justify-content: center;
}
.secEvent .secCmnEventList .eventList{
    margin-bottom: 77px;
}
.secEvent .secCmnEventList .eventItem{
    width: 23.031%;
    margin-right: 2.6253%;
}
.secCmnEventList .eventItem:nth-child(3n){
    margin-right: 2.6253%;
}
.secEvent .secCmnEventList .eventItem:nth-child(4n),
.secEvent .secCmnEventList .eventItem:last-child{
    margin-right: 0;
}
.secEvent .secCmnEventList .eventItem:nth-child(n + 4){
    margin-top: 0;
}
.secEvent .secCmnEventList .eventItem:nth-child(n + 5){
    margin-top: 20px;
}
@media only screen and (max-width:767px){
    .secEvent{
        margin-top: 80px;
        padding-top: 38px;
        padding-bottom: 80px;
    }
    .secEvent .secCmnEventList{
        width: 92%;
        margin-top: 26px;
    }
    .secEvent .secCmnEventList .eventList{
        margin-bottom: 38px;
    }
    .secEvent .secCmnEventList .eventItem{
        width: 48.696%;
        margin-right: 2.608%;
    }
    .secCmnEventList .eventItem:nth-child(2n){
        margin-right:0;
    }
    .secEvent .secCmnEventList .eventItem:nth-child(n + 4){
        margin-top: auto;
    }

}
/* contactus */
.contactus{
    margin-top: 186px;
}
.contactus .inner{
    margin-top: 45px;
}
.contactus .linkbox{
    display: flex;
    background: #779baf;
    text-decoration: none;
    color: #fff;
}
.contactus .linkbox .imgbox{
    width: 800px;
}
.contactus .linkbox .txtbox{
    width: calc(100% - 800px);
    display: flex;
    justify-content: center;
}
.contactus .linkbox .txtbox .inbox{
    display: inline-block;
    padding-top: 64px;
    padding-left: 15px;
}
.contactus .linkbox .txtbox .tit{
    font-size:26px;
    line-height: 56px;
    color: #45555e;
}
.contactus .linkbox .txtbox .tit .backcolor{
    background: #ffffff;
    padding: 3px 15px 5px;
}
.contactus .linkbox .txtbox .tit .sup{
    font-size: 12px;
    vertical-align: top;
    position: relative;
    top: -8px;
}
.contactus .linkbox .txtbox .txt{
    font-size:14px;
    line-height: 30px;
    font-weight: bold;
}
.contactus .linkbox .txtbox .txtImg{text-align: center;padding-right: 15px;margin-top: 19px;}
.contactus .linkbox .txtbox .btnbox{
    width: 370px;
    text-align: center;
    border: 3px solid #fff;
    font-size:15px;
    line-height: 30px;
    letter-spacing: 0.75px;
    padding: 14px 0;
    margin: 30px auto 0 55px;
}
.contactus .linkbox .txtbox .btnbox span{
    position: relative;
    padding-right: 15px;
}
.contactus .linkbox .txtbox .btnbox span::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #fff;
}
@media only screen and (max-width:767px){
    .contactus{
        margin-top: 67px;
    }
    .contactus .inner{
        margin-top: 16px;
    }
    .contactus .linkbox{
        display: block;
    }
    .contactus .linkbox .imgbox{
        width: 100%;
    }
    .contactus .linkbox .txtbox{
        width: 100%;
        display: block;
        position: relative;
    }
    .contactus .linkbox .txtbox .inbox{
        display: block;
        padding: 70px 20px 30px;
    }
    .contactus .linkbox .txtbox .tit{
        position: absolute;
        font-size: 15px;
        top: calc(0% - 20px);
        line-height: 2.45;
        letter-spacing: 1px;
    }
    .contactus .linkbox .txtbox .tit .backcolor{
        padding: 3px 10px 5px;
    }
    .contactus .linkbox .txtbox .tit .sup{
        font-size: 10px;
        top: -1px;
    }
    .contactus .linkbox .txtbox .txt{
        font-size: 10px;
        text-align: center;
        padding-top: 4px;
    }
    .contactus .linkbox .txtbox .txtImg{
        max-width: 275px;
        margin: 0 auto;
        padding-right: 0;
    }
    .contactus .linkbox .txtbox .btnbox{
        width: 245px;
        border: 2px solid #fff;
        font-size:13px;
        letter-spacing: 0.75px;
        letter-spacing: 0.25px;
        padding: 8px 0;
        margin: 11px auto 0;
    }
    .contactus .linkbox .txtbox .btnbox span{
        padding-right: 9px;
    }
    .contactus .linkbox .txtbox .btnbox span::after{
        content: "";
        position: absolute;
        right: 0;
        top: calc(50% - 3.5px);
        width: 6px;
        height: 7px;
        clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
        background: #fff;
    }
}
@media only screen and (max-width:370px){
    .contactus .linkbox .txtbox .inbox{
        padding: 50px 20px 30px;
    }
    .contactus .linkbox .txtbox .tit{
        font-size: 12px;
    }
}

/* secModelhouse */
.secModelhouse{
    margin-top: 151px;
    margin-bottom: 94px;
}
.secModelhouse .inner{
    max-width: 1100px;
    margin: 0 auto;
}
.secModelhouse .inner .modellink{
    position: relative;
    display: block;
    background: #f8f7f6;
    text-decoration: none;
    color: #1f1f1f;
}
.secModelhouse .inner .modellink:hover{
    opacity: 1;
}
.secModelhouse .inner .modellink .itembox{
    position: absolute;
    top: -30px;
    left: 53px;
    z-index: 2;
}
.secModelhouse .inner .modellink .modelbox{
    display: flex;
}
.secModelhouse .inner .modellink .modelbox .imgbox{
    width: 230px;
    aspect-ratio: 230 / 300;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.secModelhouse .inner .modellink .modelbox .imgbox img{
    transition: .3s;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.secModelhouse .inner .modellink:hover .modelbox .imgbox img{
    transform: scale(1.05);
}
.secModelhouse .inner .modellink .modelbox .txtbox{
    width: calc(100% - 230px);
    padding-left: 56px;
    padding-top: 47px;
    transition: opacity 0.2s ease-out;
}
.secModelhouse .inner .modellink:hover .modelbox .txtbox{
    opacity: 0.6;
}
.secModelhouse .inner .modellink .modelbox .txtbox .content{
    font-size:13px;
    line-height: 1.5;
    color: #868273;
}
.secModelhouse .inner .modellink .modelbox .txtbox .tit{
    font-size:18px;
    line-height: 30px;
    font-weight: bold;
    padding-top: 12px;
}
.secModelhouse .inner .modellink .modelbox .txtbox .adress{
    font-size: 16px;
    line-height: 28px;
    padding-top: 8px;
    font-weight: 500;
}
.secModelhouse .inner .modellink .modelbox .txtbox .btnbox{
    margin-left: 4px;
    width: 120px;
    position: relative;
    text-align: left;
    margin-top: 31px;
    padding-bottom: 15px;
}
.secModelhouse .inner .modellink .modelbox .txtbox .btnbox::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
}
.secModelhouse .inner .modellink:hover .modelbox .txtbox .btnbox::after{
    display: none;
}
.secModelhouse .inner .modellink .modelbox .txtbox .btnbox::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.75s cubic-bezier(.19, 1, .22, 1);
}
.secModelhouse .inner .modellink:hover .modelbox .txtbox .btnbox::before{
    transform: scaleX(1);
    transform-origin: left center;
}
.secModelhouse .inner .modellink .modelbox .txtbox .btnbox span{
    position: relative;
    padding-right: 19px;
    transition: 1s all;
}
.secModelhouse .inner .modellink:hover .modelbox .txtbox .btnbox span{
    padding-left: 1em;
    transition: 1s all;
}
.secModelhouse .inner .modellink .modelbox .txtbox .btnbox span::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #000000;
}
@media only screen and (max-width:767px){
    .secModelhouse{
        margin-top: 0;
        margin-bottom: 64px;
    }
    .secModelhouse .inner{
        width: 100%;
        background: #f8f7f6;
        padding-bottom: 50px;
    }
    .secModelhouse .inner .modellink{
        width: 78.66%;
        min-width:295px;
        padding: 0;
        padding-top: 40px;
        position: relative;
        display: block;
        background: #868273;
        text-decoration: none;
        color: #1f1f1f;
    }
    .secModelhouse .inner .modellink .itembox{
        width: 121px;
        top:calc(0% - 14px);
        left: 11px;
    }
    .secModelhouse .inner .modellink .modelbox{
        display: block;
        background: #fff;
        padding: 0px 25px 25px;
    }
    .secModelhouse .inner .modellink .modelbox .imgbox{
        width: 100%;
        position: relative;
        top: -15px;
        aspect-ratio: 490 / 240;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox{
        width: 100%;
        padding: 0;
        padding-top: 3px;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .content{
        font-size: 11px;
        line-height: 1.5;
        color: #868273;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .tit{
        font-size: 13px;
        white-space: nowrap;
        line-height: 1.46;
        font-weight: bold;
        padding-top: 7px;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .adress{
        font-size: 11px;
        line-height: 1.63;
        padding-top: 4px;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .btnbox{
        margin-left: 4px;
        width: 80px;
        position: relative;
        text-align: left;
        font-size: 10px;
        margin-top: 23px;
        padding-bottom: 11px;
        margin-left: auto;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .btnbox::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #000;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .btnbox span{
        position: relative;
        padding-right: 19px;
    }
    .secModelhouse .inner .modellink .modelbox .txtbox .btnbox span::after{
        content: "";
        top: calc(50% - 1px);
        width: 5px;
        height: 6px;
    }
    .secModelhouse .inner .modellink:hover .modelbox .txtbox .btnbox span{
        padding-left: 0;
    }
}
.secModelhouse .underbox{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 95px;
}
.secModelhouse .secTelbox{
    text-align: center;
}
.secModelhouse .secTelbox .tit{
    font-size:13px;
    line-height: 1.5;
    font-weight: bold;
}
.secModelhouse .secTelbox .num{
    display: inline-block;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    color: #000;
}
.secModelhouse .secTelbox .time{
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    padding-top: 13px;
    letter-spacing: 1px;
}
.secModelhouse .underbox .txtbox{
    text-align: left;
    margin-top: 46px;
}
.secModelhouse .underbox .txtbox p{
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}
.secModelhouse .underbox p + p{
    margin-top: 10px;
}
/* 關於我們 */
.secCmnIndexTit {background-image: url(../img/abouttop.jpg);}
.about .inner{min-height:auto;}
.abouttit,.sertit {padding: 10%;font-size: 16px;font-weight: 500;line-height: 20px;}
.abouttit span{font-weight: bold;color: #615555;font-size: 17px;}
/* 服務流程 */
.process {background-image: url(../img/processtop.jpg);}
/* 服務項目 */
.service {background-image: url(../img/servicetop.jpg);}
.maintxt{text-align: center;padding: 7%;font-size: 18px;font-weight: 500;line-height: 35px;}
.maintxt h2,.maintxt h1{padding: 0px 0 32px 0;font-size: 24px;font-weight: bold;color: #896767;}
.maintxt h3,.ser h2{padding: 23px 0 28px 0;font-size: 20px;font-weight: bold;color: #896767;text-align: left;}
.sertit h3{font-size: 20px;font-weight: bold;color: #756161;}
.sertit p{margin: 23px;font-size: 18px;font-weight: bold;color: #a99393;}
/* 服務分頁 */
.ser p{text-align: left;}
/* 聯絡我們 */
.contact {background-image: url(../img/contacttop.jpg);}
/* 徵信價錢 */
.price {background-image: url(../img/pricetop.jpg);}
/* 多語系 */
.local,.local a{color:#fff;}
@media only screen and (max-width:767px){   
    .secModelhouse .underbox{
        margin-top: 66px;
        width: 100%;
    }
    .secModelhouse .secTelbox{
        text-align: center;
    }
    .secModelhouse .secTelbox .tit{
        font-size: 12px;
    }
    .secModelhouse .secTelbox .num{
        font-size: 26px;
        letter-spacing: 0px;
        margin-top: 9px;
    }
    .secModelhouse .secTelbox .time{
        font-size: 11px;
        padding-top: 8px;
        letter-spacing: 0px;
    }
    .secModelhouse .underbox .txtbox{
        text-align: left;
        width: 84.8%;
        margin: 20px auto 0;
    }
    .secModelhouse .underbox .txtbox p{
        font-size: 10px;
        line-height: 1.6;
    }
    .secModelhouse .underbox p + p{
        margin-top: 8px;
    }
/* 關於我們sp */
.secCmnIndexTit {background-image: url(../img/abouttop_sp.jpg);}
.about{top: auto;padding-top: unset;position: inherit;}
.abouttit{margin-top: auto;}
/* 服務項目sp */
.service {background-image: url(../img/servicetop.jpg);}
/* 服務流程sp */
.process {background-image: url(../img/processtop_sp.jpg);}
/* 聯絡我們sp */
.contact {background-image: url(../img/contacttop_sp.jpg);}
/* 徵信價錢 */
.price {background-image: url(../img/pricetop_sp.jpg);}
}