@charset "utf-8";

#container{
    position: relative;
}

html{
background-size: cover;
max-width: 100%;
background-position: center;
}

/*-----------------------------------------------
    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: #09569c;
}
.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: #09569c;
    }
    .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: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
    .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;
    }
}

@media only screen and (max-width:767px){
.secHero{
    height: unset;
}
.abtxt{
    font-size: 37px;
    padding-top: 0;
}
.abtit{
    font-size: 15px;
}

}

@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;
    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-of-type(n + 5){
    margin-top: 20px;
}
@media only screen and (max-width:767px){
    .secEvent{
        margin-top: 760px !important;
        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;
    }

}

@media only screen and (max-width:375px){
    .secEvent{
        margin-top: 835px !important;
        }
    .eventItem .jsHideImg .jsShow{
        margin-top: 25px !important;
    }     
    }

/* contactus */
.contactus{
    margin-top: 70px;
}
.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: 150px;
    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;
    text-align: center;
}
.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: 75px;
}
.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);} */
/* .p-cmnContact__Process{
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid #D9D9D9;
}
.p-cmnContact__Process__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    align-items: start;
    align-self: start;
}
ul, ol{
    list-style: none;
}

.p-cmnContact__Process__list__item__ttl{
    font-size: 19px;
    font-weight: 700;
    position: relative;
    transition: .3s;
}



.p-cmnContact__Process__list__item__num {
    color: #09569c;
    padding: 0 4.4vw 0 10px;
    font-size: 30px;
    font-weight: 700;
    flex-shrink: 0;
}

@media screen and (max-width: 1023px){
    .p-about__mvv__block__values__list__item__ttl{
        font-size: 17px;
    }
    .p-about__mvv__block__values__list__item{
        padding: 44px 0;
    }
    .p-cmnContact__Process__list__item__num .p-cmnContact__Process__list__item__text{
        font-size: 28px;
        padding: 0 16px 0 4px;
    }
}

@media screen and (max-width: 425px){
   .p-cmnContact__Process__list{
    display: block;
    padding: 0 8%;
   }
} */

/* 文字樣式 */
/* .p-cmnContact__Process__list__item__text {
    color: #1f1f1f;
    font-size: 21px;
}

.p-cmnContact__Process__list__item{
    border-bottom: 1px solid #D9D9D9;
    padding: 48px 0;
    position: relative;
    transition: .3s;
} */




.home-blog__inner {
    padding-top: 65px;
    padding-bottom: 75px
}

.home-blog__archive {
    margin-top: -5px;
    margin-right: -260px
}

.home-blog__archive-slick-item {
    margin-right: 30px
}

.home-blog__area-heading {
    margin-bottom: 40px
}

.home-blog__btn {
    margin-top: 47px
}

@media (min-width: 768px) {
    .home-blog__inner {
        display:grid;
        grid-template-columns: 1fr 810px;
        grid-template-rows: 130px 1fr;
        padding-top: 145px;
        padding-bottom: 160px
    }

    .home-blog__area-heading {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        align-self: flex-start
    }

    .home-blog__heading {
        width: auto
    }

    .home-blog__archive {
        margin-top: 3px;
        margin-right: 0;
        grid-column: 2;
        grid-row: 1/3;
        padding-top: 15px
    }

    .home-blog__archive-slick-item {
        margin-right: 0
    }

    .home-blog__btn {
        margin: 80px 0 0;
        align-self: flex-start;
        grid-column: 1;
        grid-row: 2;
        min-width: inherit;
        width: 200px
    }
}
/* 服務項目 */
/* .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;} */
.Service__inner{
    width:84%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}


.p-member__block{
    border-top: 1px solid #D9D9D9;
    margin-top: 96px;
    padding: 96px 0 28px;
    display: grid;
    grid-template-columns: 2fr 8fr;
    gap: 60px;
    place-content: center;
}


.p-member__block__ttl{
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
}

.m-text-reveal-wrapper{
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.m-text-reveal-wrapper__mask{
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 110%;
    background: #bbc4ca;
    transform: translate(-101%);
    z-index: 2;
}

.p-member__block__ttl p{
    font-weight: 600;
}

.p-member__block__ttl h2{
    font-size: 18px;
}
.m-text-reveal-wrapper__text{
    /* opacity: 0; */
    /* transform: translateY(5px); */
    transition: none;
    z-index: 1;
    position: relative;
}

/* img */
.p-member__block__list--clm3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.1vw;
}

.p-member__block__list__item{
    margin-bottom: 48px;
}

.p-member__block__list__item__sm--min{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.p-member__block__list__item__sm__box{
    width: 100%;
    height: 100%;
    transition: .5s;
}

/* .p-member__block__list__item__sm--min:after{
        width: 2.8vw;
    height: 2.8vw;
    background: #91a6b4;
    border-radius: 100px;
    position: absolute;
    content: " ";
    right: 1.8vw;
    bottom: 1.8vw;
    transition: all .6s 
cubic-bezier(.65, .05, .36, 1);
} */

.p-member__block__list__item__info{
    margin-top: 24px;
}

.p-member__block__list__item__info__post--min{
    font-size: 15px;
    line-height: 1.3;
    color: #777b80;

}

.p-member__block__list__item__info__name--min{
    font-size: 20px;
    color: #19456c;
    font-weight: 700;
    margin-top: 10px;
}


.p-member__block__list__item__sm__box img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .p-member__block {
        margin-top: 24px;
        padding: 40px 0 28px;
    }
}
@media screen and (max-width: 1023px) {
    .p-member__block {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .p-member__block__list--clm3 {
        grid-template-columns: 1fr 1fr;
        gap: 2.8vw;
    }
}
@media screen and (max-width: 430px) {
    .p-member__block__list__item {
        margin-bottom: 0;
    }
}

/* 服務分頁 */
.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);}
}

@media (max-width: 425px) {
        .secModelhouse .underbox {
        margin: 13.3333vw 5.3333vw 0;
        /* padding: 0 0 13.3333vw; */
        width: auto;
    }
}

/* 一鍵置頂 */
#rightBar {
    z-index: 9999;
    width: 50px;
    position: fixed;
    right: 10px;
    bottom: 5%;
    height: auto;

}

#rightBar .btn {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    border-radius: 30px;
    cursor: pointer;
}

#shougongBtn {
    /* width: 50px;   
    height: 50px;
    background:#e7e6e6; */
    border: none;
    background: url("../img/go-top.png") no-repeat center center;
    background-size: contain; /*讓圖片自動縮放*/
    cursor: pointer;
}
/* end */


/* testtttt */

.process_bG{
    background-color: #f1f1f1;
    padding: 70px;
}
@media (max-width: 426px) {
    .process_bG{
        margin-top: 155px;
    }
}


.process_bG .inner{
    max-width: 1100px;
    /* min-height: 721px; */
    margin: 0 auto;
    /* position: relative; */
}


html {
    font-size: 62.5%;
}

body {
    -webkit-text-size-adjust: 100%
}




button,input[type=email],input[type=tel],input[type=text],textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none
}

input[type=checkbox],input[type=radio] {
    margin: 0;
    padding: 0;
    vertical-align: middle
}

textarea {
    resize: vertical
}

button,summary {
    cursor: pointer
}

html {
    overflow: auto
}

html:not([lang=ja]) {
    word-break: break-word
}

body {
    overflow: hidden;
    min-width: 320px;
    font-family: 'EB Garamond', serif;
    color: #212836;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.9;
    letter-spacing: .05em
}

@media (min-width: 768px) {
    body {
        min-width:1200px;
        font-size: 1.6rem
    }
}

.home-flow {
    background: #212836;
    color: #fff
}

.home-flow__inner {
    padding-top: 65px;
    padding-bottom: 60px
}

.home-flow__list-wrap {
    margin-top: 55px
}

.home-flow__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.home-flow__list:nth-child(2) {
    margin-top: 27px
}

.home-flow__item {
    position: relative;
    width: 33.33%;
    height: 0;
    padding-top: 33.33%
}

.home-flow__item-bg {
    position: absolute;
    left: -7px;
    right: -7px;
    top: -7px;
    bottom: -7px;
    fill: none;
    stroke: #fff;
    opacity: .25
}

.home-flow__item-txt {
    position: absolute;
    left: 50%;
    top: 35%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%
}

.home-flow__item-txt-en {
    font-size: 1.5rem
}

.home-flow__item-txt-ja {
    font-size: 1rem;
    line-height: 1.1;
    -webkit-transform: scale(.7);
    transform: scale(.7)
}

.home-flow__item-num {
    position: absolute;
    top: 0;
    left: 5%;
    display: inline-block;
    background:#f1f1f1;
    z-index: 1;
    padding: 5%;
    font-size: 1rem;
    line-height: 1.1
}

.home-flow__support {
    position: relative;
    margin-top: 18px;
    padding-top: 35px
}

.home-flow__support:after,.home-flow__support:before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 8px;
    width: 23px;
    height: 2px;
    background: #fff
}

.home-flow__support:after {
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg)
}

.home-flow__support-item {
    box-sizing: border-box;
    width: 237px;
    margin: 0 auto;
    padding: 11px;
    background: #2e3542;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700
}

.home-flow__support-item:nth-child(n+2) {
    margin-top: 13px
}

.home-flow__btn {
    margin-top: 50px
}

@media (min-width: 768px) {
    .home-flow__inner {
        padding-top:145px;
        padding-bottom: 158px
    }

    .home-flow .c-head01__area-txt {
        max-width: 810px;
        white-space: nowrap
    }

    .home-flow__list-wrap {
        margin: -30px -10px 0
    }

    .home-flow__list,.home-flow__list-wrap {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap
    }

    .home-flow__list {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
    }


    .home-flow__list:nth-child(2) {
        margin-top: 0
    }

    .home-flow__list-wrap .home-flow__list {
    width: 50%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  /* 所有 item 平分容器寬度 */
  .home-flow__list-wrap .home-flow__list .home-flow__item {
    flex: 1 1 0;      /* 等比縮放，不設 max-width */
    margin: 0 5px;    /* 可選，避免貼在一起 */
  }

  /* 讓每個 ul 內部 item 寬度完全平均 */
  .home-flow__list-wrap .home-flow__list:nth-child(1) .home-flow__item {
    flex: 1 1 0;      /* 3 個 item 等分 */
  }
  .home-flow__list-wrap .home-flow__list:nth-child(2) .home-flow__item {
    flex: 1 1 0;      /* 4 個 item 等分 */
  }

    .home-flow__item-bg {
        top: -18px;
        bottom: -18px;
        left: -18px;
        right: -18px
    }

    .home-flow__item-txt-en {
        font-size: 2rem
    }

    .home-flow__item-txt-ja {
        position: relative;
        top: -5px;
        font-size: 1.3rem;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .home-flow__item-num {
        top: -16px;
        left: 2px;
        /* padding: 3px 10px; */
        font-size: 1.7rem
    }

    .home-flow__support {
        margin-top: 50px;
        padding-top: 71px
    }

    .home-flow__support:after,.home-flow__support:before {
        width: 45px;
        height: 3px
    }

    .home-flow__support-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap
    }

    .home-flow__support-item {
        box-sizing: border-box;
        width: 350px;
        margin: 0 6px;
        padding: 20px;
        font-size: 1.8rem
    }

    .home-flow__support-item:nth-child(n+2) {
        margin-top: 0
    }

    .home-flow__btn {
        margin-top: 65px
    }

}

/* .home-blog__inner {
    padding-top: 65px;
    padding-bottom: 75px
}

.home-blog__archive {
    margin-top: -5px;
    margin-right: -260px
}

.home-blog__archive-slick-item {
    margin-right: 30px
}

.home-blog__area-heading {
    margin-bottom: 40px
}

.home-blog__btn {
    margin-top: 47px
} */

/* @media (min-width: 768px) {
    .home-blog__inner {
        display:grid;
        grid-template-columns: 1fr 810px;
        grid-template-rows: 130px 1fr;
        padding-top: 145px;
        padding-bottom: 160px
    }

    .home-blog__area-heading {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        align-self: flex-start
    }

    .home-blog__heading {
        width: auto
    }

    .home-blog__archive {
        margin-top: 3px;
        margin-right: 0;
        grid-column: 2;
        grid-row: 1/3;
        padding-top: 15px
    }

    .home-blog__archive-slick-item {
        margin-right: 0
    }

    .home-blog__btn {
        margin: 80px 0 0;
        align-self: flex-start;
        grid-column: 1;
        grid-row: 2;
        min-width: inherit;
        width: 200px
    }
} */

.home-flow__item {
  position: relative;
  width: 33.33%;
  height: 0;
  padding-top: 33.33%;
}

/* ========= 手機：2 欄排列 ========= */
@media (max-width: 767px) {

  .home-flow__item {
    width: 50%;
    padding-top: 50%;  /* 保持方形 */
  }

  .home-flow__item-txt-en{
    font-size: 1.8em;
  }
  .home-flow__item-txt{
    top: 50%;
  }
}

@media (max-width: 321px) {
      .home-flow__item-txt-en{
    font-size: 1.2em;
  }
}

@media (max-width: 426px) {
.Service__inner.p-member__block {
    display: flex;
}
.secConcept .inner .imgbox{
    position: static;
}
}

@media (max-width: 426px) {
.secConcept{
    position: unset;
}
}



