@charset "utf-8";

/*-----------------------------------------------
    index
-----------------------------------------------*/


/*-----------------------------------------------
    hero
-----------------------------------------------*/
.secHero{
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
}
#sliderHero .swiper,
#sliderHero .swiper-wrapper,
#sliderHero .swiper-slide{
    height: 100%;
}
#sliderHero .swiper-slide{
    width: 100%;
    overflow: hidden;
}
.secHero .heroSlide{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #2a2a2a;
}
.secHero .heroSlideZoom{
    position: absolute;
    inset: 0;
    transform: scale(1.08);
    transform-origin: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#sliderHero.disabled .swiper-wrapper{
    transform: none !important;
}

/* hero copy */
.secHero .heroCopy{
    position: absolute;
    top: calc(50% - 1.5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
    color: var(--colorWhite);
    pointer-events: none;
}
.secHero .heroTitle{
    font-size: var(--pcFontSize140);
    font-weight: 900;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
}
.secHero .heroSub{
    margin-top: 8rem;
    margin-bottom: 0;
    font-size: var(--pcFontSize30);
    letter-spacing: var(--pcLetterSpacing400);
    font-weight: 900;
}
.secHero .heroScroll{
    position: absolute;
    left: 6rem;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--colorWhite);
    font-size: var(--pcFontSize12);
    letter-spacing: var(--pcLetterSpacing40);
    pointer-events: none;
}
.secHero .heroScrollTxt{
    writing-mode: vertical-rl;
}
.secHero .heroScrollLine{
    position: relative;
    display: block;
    width: 0.1rem;
    height: 17rem;
    margin-top: 1.2rem;
    background: rgba(255, 255, 255, 0.3);
}
.secHero .heroScrollLineBar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background: var(--colorWhite);
    animation: heroScrollLineMove 2.4s ease-in-out infinite;
}
@keyframes heroScrollLineMove{
    0%{
        top: 0;
        opacity: 1;
    }
    80%{
        opacity: 1;
    }
    100%{
        top: 65%;
        opacity: 0;
    }
}
@media only screen and (max-width:1700px){
    .secHero .heroTitle {
        font-size: var(--pcFontSize100);
        gap: 4rem;
    }
}
@media only screen and (max-width:1215px){
    .secHero .heroCopy {
        position: absolute;
        top: calc(50% - 3.6rem);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 100%;
        text-align: center;
        color: var(--colorWhite);
        pointer-events: none;
    }
    .secHero .heroTitle {
        font-size: var(--spFontSize40);
        letter-spacing: var(--spLetterSpacing100);
        line-height: calc(50 / 40);
        gap: 0rem;
        flex-direction: column;
    }
    .secHero .heroSub {
        margin-top: 1.4rem;
        font-size: var(--spFontSize19);
        letter-spacing: var(--spLetterSpacing80);
        line-height: calc(36 / 19);
    }
    .secHero .heroScroll {
        position: absolute;
        left: 50%;
        bottom: 0;
        font-size: var(--spFontSize11);
        letter-spacing: 0;
        transform: translateX(-50%);
    }
    .secHero .heroScrollLineBar {
        height: 2rem;
    }
    .secHero .heroScrollLine {
        height: 7rem;
        left: -0.2rem;
    }
}
.bgBody{
    background: var(--bgBody);
}
/*-----------------------------------------------
    secTopTxt
-----------------------------------------------*/
.secTopTxt{
    padding: 15rem 0 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.secTopTxt .topTxtInner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14.68%;
}
.secTopTxt .boxLeft{
    position: relative;
    flex-shrink: 0;
    width: 40.625%;
    padding-bottom: 8rem;
}
.secTopTxt .topTxtImg{
    width: 100%;
}
.secTopTxt .topTxtMovie{
    position: absolute;
    right: -8rem;
    bottom: -21.5rem;
    width: 42rem;
    height: 42rem;
    z-index: 2;
    overflow: hidden;
}
.secTopTxt .topTxtMovie video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #f0f0f0;
}
.secTopTxt .boxRight{
    position: relative;
    flex: 1;
    min-width: 0;
    padding-top: 4rem;
}
.secTopTxt .boxRight::before{
    content: "";
    position: absolute;
    top: 0;
    right: -4rem;
    width: 52rem;
    height: 52rem;
    background: url(../img/common/imgLogo.png) no-repeat center / contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
.secTopTxt .rightImg{
    position: absolute;
    z-index: 1;
    width: 91.5rem;
    margin-left: auto;
}
.secTopTxt .topTxtBody{
    position: relative;
    z-index: 1;
    margin-top: 36rem;
}
.secTopTxt .topTxtTitle{
    font-size: var(--pcFontSize30);
    font-weight: 900;
    letter-spacing: var(--pcLetterSpacing150);
    line-height: calc(60 / 30);
}
.secTopTxt .topTxtText{
    margin-top: 3rem;
}
.secTopTxt .topTxtTextItem{
    font-size: var(--pcFontSize15);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(34 / 15);
}
.secTopTxt .topTxtTextItem + .topTxtTextItem{
    margin-top: 3rem;
}
.secTopTxt .btnTopTxtMore{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 31rem;
    height: 8.5rem;
    margin-top: 4rem;
    padding: 0 2rem 0 4.8rem;
    background: var(--colorWhite);
    border-radius: 999rem;
    color: var(--textColor);
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1), color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secTopTxt .btnTopTxtMoreIcon{
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--textColor);
    border-radius: 50%;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secTopTxt .btnTopTxtMoreIcon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 0.1rem solid var(--colorWhite);
    border-right: 0.1rem solid var(--colorWhite);
    transform: translate(0, -50%) rotate(45deg);
    margin-left: 0.1rem;
    transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secTopTxt .btnTopTxtMoreIcon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.4rem;
    height: 0.1rem;
    background: var(--colorWhite);
    transform: translate(-60%, -50%);
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover){
    .secTopTxt .btnTopTxtMore:hover{
        background: var(--textColor);
        color: var(--colorWhite);
    }
    .secTopTxt .btnTopTxtMore:hover .btnTopTxtMoreIcon{
        background: var(--colorWhite);
    }
    .secTopTxt .btnTopTxtMore:hover .btnTopTxtMoreIcon::before{
        border-top-color: var(--textColor);
        border-right-color: var(--textColor);
    }
    .secTopTxt .btnTopTxtMore:hover .btnTopTxtMoreIcon::after{
        background: var(--textColor);
    }
}
@media only screen and (max-width:1215px){
    .secTopTxt{
        padding: 7rem 0 0rem;
    }
    .secTopTxt .topTxtInner{
        flex-direction: column;
        gap: 0;
        position: relative;
    }
    .secTopTxt .boxLeft{
        width: 100%;
        max-width: none;
        padding-bottom: calc((112 / 375) * var(--widthBase));
    }
    .secTopTxt .topTxtMovie{
        right: unset;
        left: 9rem;
        bottom: 3.2rem;
        width: calc((110 / 375) * var(--widthBase));
        height: calc((110 / 375) * var(--widthBase));
        max-width: 11rem;
        max-height: 11rem;
    }
    .secTopTxt .boxRight{
        padding-top: 0;
        position: static;
    }
    .secTopTxt .boxRight::before{
        right: -2rem;
        width: calc((260 / 375) * var(--widthBase));
        height: calc((260 / 375) * var(--widthBase));
    }
    .secTopTxt .rightImg{
        width: calc((154 / 375) * var(--widthBase));
        margin-left: 0;
        top: 2.2rem;
        right: -5.4%;
    }
    .secTopTxt .topTxtBody{
        margin-top: 0;
    }
    .secTopTxt .topTxtTitle{
        font-size: var(--spFontSize17);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(30 / 17);
    }
    .secTopTxt .topTxtText{
        margin-top: 2rem;
    }
    .secTopTxt .topTxtTextItem{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(24 / 13);
    }
    .secTopTxt .topTxtTextItem + .topTxtTextItem{
        margin-top: 2.2rem;
    }
    .secTopTxt .btnTopTxtMore{
        width: calc((205 / 375) * var(--widthBase));
        height: 5rem;
        padding: 0 2rem 0 2.5rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        margin: 3rem 0 0 auto;
        display: flex;
    }
    .secTopTxt .btnTopTxtMoreIcon{
        width: 2.1rem;
        height: 2.1rem;
    }
    .secTopTxt .topTxtImg {
        width: calc((170 / 375) * var(--widthBase));
        max-width: 17rem;
    }
    .secTopTxt .btnTopTxtMoreIcon::before {
        width: 0.4rem;
        left: 46%;
        height: 0.4rem;
    }
    .secTopTxt .btnTopTxtMoreIcon::after {
        width: 0.8rem;
        height: 0.1rem;
        transform: translate(-60%, -50%);
    }
}

/*-----------------------------------------------
    secIntro
-----------------------------------------------*/
/* position:stickyはoverflow:hiddenの祖先があると効かないため上書き */
#container,
.secLineup,
.secLineup .lineupStage{
    overflow: visible;
}
.secIntro{
    position: relative;
    z-index: 2;
    background: var(--bgBody);
}
.secIntro .topIntroVis{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}
.secIntro .topIntroVisImage{
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76.8rem;
    height: 40rem;
    overflow: hidden;
    transform: translate(-50%, -50%);
}
.secIntro .topIntroVisImageItem{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.secIntro .topIntroSpace{
    height: 180vh;
    height: 180svh;
}
@media only screen and (min-width:1216px){
    .secIntro .topIntroSpace{
        height: 40vh;
        height: 40svh;
    }
}
@media only screen and (max-width:1215px){
    .secIntro .topIntroVis{
        height: 100vh;
        height: 100svh;
    }
    .secIntro .topIntroSpace{
        height: 100vh;
        height: 100svh;
    }
    .secIntro .topIntroVisImage{
        width: calc((255 / 375) * var(--widthBase));
        height: calc((325 / 375) * var(--widthBase));
    }
}

/*-----------------------------------------------
    secLineup
-----------------------------------------------*/
.secLineup{
    position: relative;
    width: 100%;
    margin-top: -7rem;
    margin-bottom: -0.1rem;
    background: #1d1d1d;
    color: var(--colorWhite);
    --lineupPanelOverlap: 8vh;
    z-index: 1;
}
.secLineup .lineupContainer{
    width: min(100% - 4rem, 120rem);
    margin: 0 auto;
    padding: 0 2rem;
}
.secLineup .lineupStage{
    position: relative;
    z-index: 2;
    margin-top: 0;
}
.secLineup .lineupPanel{
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin-bottom: -0.1rem;
    overflow: hidden;
}
.secLineup > .lineupPanel + .lineupPanel{
    margin-top: calc(-1 * var(--lineupPanelOverlap));
}
.secLineup > .lineupPanel:nth-of-type(2){
    z-index: 3;
}
.secLineup > .lineupPanel:nth-of-type(3){
    z-index: 4;
}
.secLineup > .lineupPanel:nth-of-type(4){
    z-index: 5;
}
.secLineup > .lineupPanel{
    transform: translateZ(0);
}
.secLineup .lineupPanelBody{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
}
.secLineup .lineupBg{
    position: absolute;
    inset: 0;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background-color: #2a2a2a;
}
.secLineup .lineupBgFig{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.secLineup .lineupBgMove{
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    will-change: transform;
}
.secLineup .lineupBgMove picture{
    display: block;
    width: 100%;
    height: 100%;
}
.secLineup .lineupBgImg{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.secLineup .lineupHd{
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: 19rem;
}
.secLineup .lineupHdLn{
    display: block;
    overflow: hidden;
    transform: translateY(101%);
    opacity: 0;
    font-weight: 900;
    font-size: var(--pcFontSize140);
    letter-spacing: var(--pcLetterSpacing200);
}
.secLineup .lineupHdLn .spanEco{
    margin-left: 2.4rem;
}
.secLineup .lineupHdSub{
    display: block;
    margin-top: 2rem;
    font-size: var(--pcFontSize15);
    font-weight: 400;
    letter-spacing: var(--pcLetterSpacing400);
    overflow: hidden;
    transform: translateY(101%);
    opacity: 0;
}
.secLineup .lineupPanelContentLeft .lineupContainer{
    width: auto;
    margin: 0;
    padding: 0;
    padding-bottom: 20rem;
}
.secLineup .lineupPanelContentLeft .lineupHd{
    right: 0;
    left: auto;
    text-align: right;
}
.secLineup .lineupPanelContentRight .lineupHd{
    left: 0;
    right: auto;
    text-align: left;
}
.secLineup .lineupPanelContentRight .lineupContainer{
    width: auto;
    margin: 0;
    padding: 0;
    padding-bottom: 20rem;
    margin-left: auto;
}
.secLineup .lineupContent{
    position: relative;
}
.secLineup .lineupTitle{
    font-weight: bold;
    font-size: var(--pcFontSize30);
    letter-spacing: var(--pcLetterSpacing150);
    line-height: calc(60 / 30);
}
.secLineup .lineupBody{
    margin-top: 2.4rem;
    font-size: var(--pcFontSize15);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(34 / 15);
}
.secLineup .lineupMore{
    margin-top: 4rem;
}
.secLineup .btnTopTxtMore{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 31rem;
    height: 8.5rem;
    padding: 0 2rem 0 5rem;
    background: transparent;
    border: 0.1rem solid var(--colorWhite);
    border-radius: 999rem;
    color: var(--colorWhite);
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1), color 0.5s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secLineup .btnTopTxtMoreIcon{
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--colorWhite);
    border-radius: 50%;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secLineup .btnTopTxtMoreIcon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 46%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 0.1rem solid var(--textColor);
    border-right: 0.1rem solid var(--textColor);
    transform: translate(0, -50%) rotate(45deg);
    margin-left: 0.1rem;
    transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secLineup .btnTopTxtMoreIcon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    width: 1rem;
    height: 0.1rem;
    background: var(--textColor);
    transform: translate(-60%, -50%);
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover){
    .secLineup .btnTopTxtMore:hover{
        background: var(--colorWhite);
        border-color: var(--colorWhite);
        color: var(--textColor);
    }
    .secLineup .btnTopTxtMore:hover .btnTopTxtMoreIcon{
        background: var(--textColor);
    }
    .secLineup .btnTopTxtMore:hover .btnTopTxtMoreIcon::before{
        border-top-color: var(--colorWhite);
        border-right-color: var(--colorWhite);
    }
    .secLineup .btnTopTxtMore:hover .btnTopTxtMoreIcon::after{
        background: var(--colorWhite);
    }
}
@media only screen and (max-width:1600px){
    .secLineup .lineupTitle {
        font-weight: bold;
        font-size: var(--pcFontSize26);
        letter-spacing: var(--pcLetterSpacing150);
        line-height: calc(50 / 26);
    }
}
@media only screen and (max-width:1215px){
    .secLineup {
        margin-top: -10rem;
        margin-bottom: 0.2rem;
    }
    .secLineup .lineupStage{
        z-index: 1;
    }
    .secLineup .lineupPanelBody{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6.5rem;
        min-height: 100vh;
        min-height: 100svh;
        padding: 0 2rem;
    }
    .secLineup .lineupBg{
        min-height: 100vh;
        min-height: 100svh;
    }
    .secLineup .lineupPanelContentLeft .lineupHd,
    .secLineup .lineupPanelContentRight .lineupHd{
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        order: 1;
        align-items: flex-end;
        margin: 0;
        text-align: right;
        width: 100%;
    }
    .secLineup .lineupPanelContentLeft .lineupContainer,
    .secLineup .lineupPanelContentRight .lineupContainer{
        flex: none;
        width: 100%;
        order: 2;
        padding-bottom: 0;
        margin-left: 0;
    }
    .secLineup .lineupHdSub{
        font-size: var(--spFontSize11);
        letter-spacing: var(--spLetterSpacing100);
        margin-top: 2.4rem;
    }
    .secLineup .lineupTitle{
        font-size: var(--spFontSize17);
        letter-spacing: var(--spLetterSpacing50);
        line-height: calc(30 / 17);
    }
    .secLineup .lineupBody{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(26 / 13);
        margin-top: 2rem;
    }
    .secLineup .btnTopTxtMore{
        width: calc((205 / 375) * var(--widthBase));
        height: 5rem;
        padding: 0 2rem 0 2.4rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
    }
    .secLineup .btnTopTxtMoreIcon{
        width: 2.1rem;
        height: 2.1rem;
    }
    .secLineup .lineupHdLn {
        font-size: var(--spFontSize50);
        letter-spacing: var(--spLetterSpacing180);
    }
    .secLineup .lineupMore {
        margin-top: 3.6rem;
        text-align: right;
    }
    .secLineup .btnTopTxtMoreIcon::before {
        left: 46%;
        width: 0.4rem;
        height: 0.4rem;
        border-top: 0.1rem solid var(--textColor);
        border-right: 0.1rem solid var(--textColor);
        transform: translate(0, -50%) rotate(45deg);
        margin-left: 0.1rem;
    }
    .secLineup .btnTopTxtMoreIcon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0.8rem;
        height: 0.1rem;
        background: var(--textColor);
        transform: translate(-60%, -50%);
    }
    .secLineup .lineupHdLn .spanEco {
        margin-left: 1.2rem;
    }
}

/*-----------------------------------------------
    secStaff
-----------------------------------------------*/
.secStaff{
    position: relative;
    width: 100%;
    color: var(--colorWhite);
    margin-bottom: 18rem;
}
.secStaff .staffWrapper{
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 1000;
    overflow: hidden;
}
.secStaff .staffWrapper::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: url(../img/index/imgCoverStaff.png) no-repeat center / cover;
    pointer-events: none;
}
.secStaff .staffSlidersPc{
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc((30 / 1920) * min(100vw, 192rem));
}
.secStaff .staffSlider{
    overflow: hidden;
}
.secStaff .staffSliderTrack{
    display: flex;
    width: max-content;
    gap: 0;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.secStaff .staffSliderSet{
    display: flex;
    flex-shrink: 0;
    gap: calc((30 / 1920) * min(100vw, 192rem));
    padding-right: calc((30 / 1920) * min(100vw, 192rem));
}
.secStaff .staffSliderItem{
    flex-shrink: 0;
    width: calc((380 / 1920) * min(100vw, 192rem));
    aspect-ratio: 380 / 455;
    overflow: hidden;
}
.secStaff .staffSliderItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.secStaff .staffSliderTop .staffSliderTrack{
    -webkit-animation: staffSlideRight var(--staffLoopDuration, 70s) linear infinite;
    animation: staffSlideRight var(--staffLoopDuration, 70s) linear infinite;
}
.secStaff .staffSliderBottom .staffSliderTrack{
    -webkit-animation: staffSlideLeft var(--staffLoopDuration, 60s) linear infinite;
    animation: staffSlideLeft var(--staffLoopDuration, 60s) linear infinite;
}
.secStaff .staffSliderTrack:not(.isStaffLoopReady){
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
@-webkit-keyframes staffSlideRight{
    from{ -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
    to{ -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes staffSlideLeft{
    from{ -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    to{ -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}
@keyframes staffSlideRight{
    from{ transform: translate3d(-50%, 0, 0); }
    to{ transform: translate3d(0, 0, 0); }
}
@keyframes staffSlideLeft{
    from{ transform: translate3d(0, 0, 0); }
    to{ transform: translate3d(-50%, 0, 0); }
}
.secStaff .staffInner{
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    pointer-events: none;
}
.secStaff .staffCopy{
    position: relative;
    text-align: center;
    pointer-events: auto;
}
.secStaff .staffTitle{
    position: relative;
    margin: 0;
    padding-top: 4rem;
}
.secStaff .staffTitle::before{
    content: "";
    position: absolute;
    top: -6rem;
    left: 9rem;
    width: 25rem;
    height: 12rem;
    background: url(../img/index/txtWith.png) no-repeat center / contain;
    transform: translateX(-72%);
    pointer-events: none;
}
.secStaff .staffTitleMain{
    display: block;
    font-size: var(--pcFontSize100);
    font-weight: 900;
    letter-spacing: var(--pcLetterSpacing200);
    line-height: 1;
}
.secStaff .staffLead{
    margin-top: 3.2rem;
    font-size: var(--pcFontSize15);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(34 / 15);
}
.secStaff .staffMore{
    margin-top: 4rem;
}
.secStaff .btnStaffMore{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 31rem;
    height: 8.5rem;
    padding: 0 2rem 0 5rem;
    background: transparent;
    border: 0.1rem solid var(--colorWhite);
    border-radius: 999rem;
    color: var(--colorWhite);
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1), color 0.5s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secStaff .btnStaffMoreIcon{
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--colorWhite);
    border-radius: 50%;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secStaff .btnStaffMoreIcon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 46%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 0.1rem solid var(--textColor);
    border-right: 0.1rem solid var(--textColor);
    transform: translate(0, -50%) rotate(45deg);
    margin-left: 0.1rem;
    transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.secStaff .btnStaffMoreIcon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    width: 1rem;
    height: 0.1rem;
    background: var(--textColor);
    transform: translate(-60%, -50%);
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover){
    .secStaff .btnStaffMore:hover{
        background: var(--colorWhite);
        border-color: var(--colorWhite);
        color: var(--textColor);
    }
    .secStaff .btnStaffMore:hover .btnStaffMoreIcon{
        background: var(--textColor);
    }
    .secStaff .btnStaffMore:hover .btnStaffMoreIcon::before{
        border-top-color: var(--colorWhite);
        border-right-color: var(--colorWhite);
    }
    .secStaff .btnStaffMore:hover .btnStaffMoreIcon::after{
        background: var(--colorWhite);
    }
}
.secStaff .staffSliderSp{
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
@media only screen and (max-width:1215px){
    .secStaff {
        margin-bottom: 7rem;
        height: 66.7rem;
    }
    .secStaff .staffSlidersPc{
        display: none;
    }
    .secStaff .staffWrapper{
        aspect-ratio: auto;
        min-height: 100%;
    }
    .secStaff .staffRows{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: calc((10 / 375) * var(--widthBase));
        width: 100%;
        height: 100%;
    }
    .secStaff .staffRow{
        overflow: hidden;
        width: 100%;
    }
    /* .secStaff .staffRowOffset{
        margin-left: calc((-35 / 375) * var(--widthBase));
    } */
    .secStaff .staffRowTrack{
        display: flex;
        flex-direction: row;
        gap: 0;
        width: max-content;
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .secStaff .staffRowSet{
        display: flex;
        flex-shrink: 0;
        gap: calc((10 / 375) * var(--widthBase));
        padding-right: calc((10 / 375) * var(--widthBase));
    }
    .secStaff .staffRowRight .staffRowTrack{
        -webkit-animation: staffSlideRight var(--staffLoopDuration, 55s) linear infinite;
        animation: staffSlideRight var(--staffLoopDuration, 55s) linear infinite;
    }
    .secStaff .staffRowLeft .staffRowTrack{
        -webkit-animation: staffSlideLeft var(--staffLoopDuration, 50s) linear infinite;
        animation: staffSlideLeft var(--staffLoopDuration, 50s) linear infinite;
    }
    .secStaff .staffRowTrack:not(.isStaffLoopReady){
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
    .secStaff .staffRowItem{
        flex-shrink: 0;
        width: calc((175 / 375) * var(--widthBase));
        height: calc((209 / 375) * var(--widthBase));
        overflow: hidden;
    }
    .secStaff .staffRowItem img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .secStaff .staffInner{
        padding: 23rem 2rem 0;
        align-items: flex-start;
    }
    .secStaff .staffTitle{
        padding-top: 3rem;
    }
    .secStaff .staffTitle::before{
        top: -2.5rem;
        width: 14rem;
        height: 6.7rem;
        transform: translateX(-118%);
        left: 50%;
    }
    .secStaff .staffTitleMain{
        font-size: var(--spFontSize36);
        letter-spacing: var(--spLetterSpacing180);
    }
    .secStaff .staffLead{
        margin-top: 2rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(24 / 13);
    }
    .secStaff .staffMore{
        margin-top: 2.4rem;
    }
    .secStaff .btnStaffMore{
        width: calc((205 / 375) * var(--widthBase));
        height: 5rem;
        padding: 0 2rem 0 2.4rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
    }
    .secStaff .btnStaffMoreIcon{
        width: 2.1rem;
        height: 2.1rem;
    }
    .secStaff .btnStaffMoreIcon::before {
        width: 0.4rem;
        height: 0.4rem;
    }
    .secStaff .btnStaffMoreIcon::after {
        width: 0.8rem;
    }
}

/*-----------------------------------------------
    secSearch
-----------------------------------------------*/
.secSearch{
    margin-bottom: 13rem;
}
.secSearch .searchInner{
    display: flex;
    align-items: stretch;
    background: var(--colorWhite);
    gap: 7rem;
}
.secSearch .searchImg{
    flex-shrink: 0;
    width: calc((650 / 1600) * 100%);
    aspect-ratio: 650 / 340;
    overflow: hidden;
}
.secSearch .searchImg > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.secSearch .searchBody{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}
.secSearch .searchLogo{
    width: 25rem;
}
.secSearch .searchLogoSp{
    display: none;
}
.secSearch .searchLead{
    margin-top: 2.2rem;
    font-size: var(--pcFontSize17);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(34 / 17);
    text-align: center;
}
.secSearch .searchBtns{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3.2rem;
}
.secSearch .searchBtn{
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing20);
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover){
    .secSearch .searchBtn:hover{
        transform: translateY(-0.4rem);
    }
}
.secSearch .searchBtnIcon{
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
}
.secSearch .searchBtnIcon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 47%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 0.1rem solid var(--colorWhite);
    border-right: 0.1rem solid var(--colorWhite);
    transform: translate(0, -50%) rotate(45deg);
    margin-left: 0.1rem;
}
.secSearch .searchBtnIcon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    width: 1rem;
    height: 0.1rem;
    background: var(--colorWhite);
    transform: translate(-50%, -50%);
}
.secSearch .searchBtnRent .searchBtnIcon{
    background: #d26e7e;
}
.secSearch .searchBtnBuy .searchBtnIcon{
    background: #7da92f;
}
@media only screen and (max-width:1215px){
    .secSearch{
        margin-bottom: 7rem;
    }
    .secSearch .searchInner{
        flex-direction: column;
        gap: 0;
    }
    .secSearch .searchImg{
        position: relative;
        width: 100%;
    }
    .secSearch .searchLogoSp{
        display: block;
        position: absolute;
        top: calc(50% - 32px);
        left: calc(50% - 92px);
        z-index: 1;
        width: calc((185 / 375) * var(--widthBase));
        box-sizing: content-box;
    }
    .secSearch .searchLogoSp img{
        display: block;
        width: 100%;
        height: auto;
    }
    .secSearch .searchBody{
        padding: 2rem 2rem 2.5rem;
    }
    .secSearch .searchLogo{
        display: none;
    }
    .secSearch .searchLead{
        margin-top: 0;
        padding: 0;
        text-align: left;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(24 / 13);
    }
    .secSearch .searchBtns{
        gap: 2rem;
        margin-top: 1rem;
    }
    .secSearch .searchBtn{
        gap: 0.8rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
    }
    .secSearch .searchBtnIcon{
        width: 2.1rem;
        height: 2.1rem;
    }
    .secSearch .searchBtnIcon::before{
        width: 0.4rem;
        height: 0.4rem;
        left: 46%;
    }
    .secSearch .searchBtnIcon::after{
        width: 0.8rem;
    }
}

/*-----------------------------------------------
    secAboutus
-----------------------------------------------*/
.secAboutus{
    margin-bottom: 20rem;
}
.secAboutus .aboutusTitle{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
}
.secAboutus .aboutusTitleLine{
    flex-shrink: 0;
    width: 1.5rem;
    height: 0.1rem;
    background: var(--textColor);
}
.secAboutus .aboutusTitleMain{
    font-size: var(--pcFontSize16);
    font-weight: bold;
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
    color: var(--textColor);
}
.secAboutus .aboutusSlider{
    margin-top: 5rem;
}
.secAboutus .aboutusSlider .aboutusScrollbar{
    display: none;
}
.secAboutus .aboutusSlider.disabled .swiper-wrapper{
    display: flex;
    gap: calc((50 / 1600) * 100%);
}
.secAboutus .aboutusSlider.disabled .swiper-slide{
    width: calc((500 / 1600) * 100%);
    height: auto;
}
.secAboutus .aboutusItem{
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 500 / 680;
    overflow: hidden;
    color: var(--colorWhite);
}
.secAboutus .aboutusItemImg img{
    transition: transform 0.6s ease-out;
}
@media (hover: hover){
    .secAboutus .aboutusItem:hover .aboutusItemImg img{
        transform: scale(1.08);
    }
    .secAboutus .aboutusItem:hover .aboutusItemFoot:not(.aboutusItemFootRecruit){
        transform: translateY(-0.4rem);
    }
    .secAboutus .aboutusItem:hover .aboutusItemFootRecruit .aboutusItemFootRight{
        transform: translateY(-0.4rem);
    }
}
.secAboutus .aboutusItemImg{
    position: absolute;
    inset: 0;
}
.secAboutus .aboutusItemHd{
    position: absolute;
    top: 20%;
    left: 50%;
    z-index: 2;
    width: 100%;
    padding: 0 calc((20 / 1600) * 100%);
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.secAboutus .aboutusItemTitle{
    font-size: var(--pcFontSize40);
    font-weight: 900;
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(54 / 40); 
}
.secAboutus .aboutusItemTitleLn{
    display: block;
}
.secAboutus .aboutusItemFoot{
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: calc((12 / 1600) * min(100vw, 160rem));
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
.secAboutus .aboutusItemFootRecruit{
    left: 4rem;
    right: 4rem;
    justify-content: space-between;
    transition: none;
}
.secAboutus .aboutusItemFootRight{
    display: flex;
    align-items: center;
    gap: calc((12 / 1600) * min(100vw, 160rem));
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
.secAboutus .aboutusItemIndeed{
    flex-shrink: 0;
}
.secAboutus .aboutusItemSub{
    font-size: var(--pcFontSize17);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
    font-weight: bold;
    white-space: nowrap;
}
.secAboutus .aboutusItemArrow{
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--colorWhite);
    border-radius: 50%;
}
.secAboutus .aboutusItemArrow::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 46%;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 0.1rem solid var(--textColor);
    border-right: 0.1rem solid var(--textColor);
    transform: translate(0, -50%) rotate(45deg);
    margin-left: 0.1rem;
}
.secAboutus .aboutusItemArrow::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 48%;
    width: 1rem;
    height: 0.1rem;
    background: var(--textColor);
    transform: translate(-50%, -50%);
}
@media only screen and (max-width:1215px){
    .secAboutus{
        padding: 0;
        margin-bottom: 8.5rem;
    }
    .secAboutus .aboutusTitleLine{
        width: 1.6rem;
    }
    .secAboutus .aboutusTitleMain{
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing50);
    }
    .secAboutus .aboutusSlider{
        margin-top: 2.4rem;
    }
    .secAboutus .aboutusSlider.disabled .swiper-wrapper{
        display: flex;
        justify-content: center;
        gap: calc((20 / 375) * var(--widthBase));
        padding: 0 2rem;
    }
    .secAboutus .aboutusSlider.disabled .swiper-slide{
        width: calc((255 / 375) * var(--widthBase));
        height: calc((347 / 375) * var(--widthBase));
        flex-shrink: 0;
    }
    .secAboutus .aboutusItem{
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }
    .secAboutus .aboutusItemHd{
        top: 20%;
        padding: 0 2rem;
    }
    .secAboutus .aboutusItemTitle{
        font-size: var(--spFontSize26);
        letter-spacing: var(--spLetterSpacing40);
        line-height: calc(34 / 26);
    }
    .secAboutus .aboutusItemFoot,
    .secAboutus .aboutusItemFootRecruit{
        right: 2rem;
        bottom: 1.6rem;
        left: auto;
        gap: 0.8rem;
    }
    .secAboutus .aboutusItemFootRecruit{
        left: 2rem;
    }
    .secAboutus .aboutusItemFootRight{
        gap: 0.8rem;
    }
    .secAboutus .aboutusItemIndeed{
        width: 6.4rem;
        padding: 0.3rem 0.6rem;
    }
    .secAboutus .aboutusItemSub{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
    }
    .secAboutus .aboutusItemArrow{
        width: 2.4rem;
        height: 2.4rem;
    }
    .secAboutus .aboutusItemArrow::before{
        width: 0.5rem;
        height: 0.5rem;
    }
    .secAboutus .aboutusItemArrow::after{
        width: 0.8rem;
    }
}
@media only screen and (max-width:819px){
    .secAboutus .aboutusSlider{
        overflow: hidden;
        position: relative;
    }
    .secAboutus .aboutusSlider:not(.disabled) .aboutusScrollbar{
        display: block;
        position: absolute;
        width: 94%;
        left: 50%;
        transform: translateX(-50%);
        height: 0.3rem;
        margin: 0;
        background: none;
        border-radius: 0;
        bottom: 1rem;
    }
    .secAboutus .aboutusSlider:not(.disabled) .aboutusScrollbar .swiper-scrollbar-drag{
        background: rgba(0, 0, 0, 0.349);
        border-radius: 0;
        border-radius: 1rem;
    }
    .secAboutus .aboutusSlider .swiper-slide{
        width: calc((255 / 375) * var(--widthBase));
        height: calc((347 / 375) * var(--widthBase));
    }
}

/*-----------------------------------------------
    secContact
-----------------------------------------------*/
.secContact{
    width: 100%;
    position: relative;
    padding-top: calc(40rem * min(100vw, 192rem) / 192rem);
    --contactMarqueeDuration: var(--marqueeLoopDuration);
}
.secContact .contactImgSlider{
    overflow: hidden;
    width: 100%;
    height: calc(52rem * min(100vw, 192rem) / 192rem);
    line-height: 0;
    position: absolute;
    top: 0;
    z-index: 2;
}
.secContact .contactImgTrack{
    display: flex;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: contactImgSlideRight var(--contactMarqueeDuration) linear infinite;
    animation: contactImgSlideRight var(--contactMarqueeDuration) linear infinite;
}
.secContact .contactImgTrack:not(.isContactLoopReady){
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.secContact .contactImgTrack img{
    display: block;
    flex-shrink: 0;
    height: calc(52rem * min(100vw, 192rem) / 192rem);
    width: calc(52rem * min(100vw, 192rem) / 192rem * 5658 / 678);
    aspect-ratio: 5658 / 678;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
@-webkit-keyframes contactImgSlideRight{
    from{ -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
    to{ -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
@keyframes contactImgSlideRight{
    from{ transform: translate3d(-50%, 0, 0); }
    to{ transform: translate3d(0, 0, 0); }
}
.secContact .contactBody{
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 750;
    overflow: hidden;
    color: var(--colorWhite);
}
.secContact .contactBodyBg{
    position: absolute;
    inset: 0;
}
.secContact .contactMarquee{
    position: absolute;
    top: calc(50% - 3rem);
    left: 0;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    transform: translateY(-50%);
    pointer-events: none;
}
.secContact .contactMarqueeTrack{
    display: flex;
    width: max-content;
    will-change: transform;
    animation: contactTextSlideLeft var(--contactMarqueeDuration) linear infinite;
}
.secContact .contactMarqueeGroup{
    display: flex;
    flex-shrink: 0;
}
.secContact .contactMarqueeTxt{
    flex-shrink: 0;
    padding-right: 6rem;
    font-size: var(--pcFontSize100);
    font-weight: 900;
    letter-spacing: var(--pcLetterSpacing200);
    line-height: 1;
    white-space: nowrap;
}
@keyframes contactTextSlideLeft{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}
.secContact .contactInner{
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    pointer-events: none;
    position: relative;
    padding-top: 20rem;
}
.secContact .contactLead{
    pointer-events: auto;
    margin-bottom: 0;
    font-size: var(--pcFontSize17);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(34 / 17);
}
.secContact .contactBtn{
    position: absolute;
    right: 16rem;
    top: calc(50% - 2rem);
    z-index: 4;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16rem;
    height: 16rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    overflow: visible;
}
.secContact .contactBtn::before,
.secContact .contactBtn::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), background 0.4s ease-out;
}
.secContact .contactBtnTxt{
    display: none;
}
.secContact .contactBtnIcon{
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 2.8rem;
    height: 1.5rem;
}
.secContact .contactBtnIcon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    width: 1.2rem;
    height: 1.2rem;
    border-top: 0.3rem solid var(--colorWhite);
    border-right: 0.3rem solid var(--colorWhite);
    transform: translate(0, -50%) rotate(45deg);
    margin-left: 0.1rem;
}
.secContact .contactBtnIcon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 48%;
    width: 2.4rem;
    height: 0.3rem;
    background: var(--colorWhite);
    transform: translate(-50%, -50%);
}
@media only screen and (min-width:1216px){
    .secContact .contactBtn{
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .secContact .contactBody.isContactCursorActive .contactBtn{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        right: auto;
        top: auto;
        left: 0;
        transform: none;
        transition: opacity 0.3s ease, visibility 0s linear 0s;
    }
    .secContact .contactBtn::after{
        z-index: 0;
        background: rgba(255, 255, 255, 0.05);
        -webkit-backdrop-filter: blur(2rem);
        backdrop-filter: blur(2rem);
        box-shadow: none;
    }
    .secContact .contactBtn::before{
        display: none;
    }
    .secContact .contactBtn:hover::after{
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.06);
    }
}
@media only screen and (max-width:1215px){
    .secContact {
        padding-top: calc((155 / 375) * var(--widthBase));
    }
    .secContact .contactImgSlider{
        height: calc((195 / 375) * var(--widthBase));
    }
    .secContact .contactImgTrack img{
        width: auto;
        height: calc((195 / 375) * var(--widthBase));
        aspect-ratio: 5658 / 678;
    }
    .secContact .contactBody{
        height: 40rem;
    }
    .secContact .contactMarquee{
        top: 30%;
    }
    .secContact .contactMarqueeTxt{
        padding-right: 1rem;
        font-size: var(--spFontSize36);
        letter-spacing: var(--spLetterSpacing100);
    }
    .secContact .contactInner{
        flex-direction: column;
        align-items: flex-start;
        gap: 3.6rem;
        padding-top: 17rem;
        padding-bottom: 3rem;
        justify-content: flex-start;
    }
    .secContact .contactLead{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(24 / 13);
    }
    .secContact .contactBtn{
        position: relative;
        right: auto;
        top: auto;
        z-index: auto;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        width: calc((205 / 375) * var(--widthBase));
        height: 5rem;
        padding: 0 2rem 0 2.4rem;
        border: 0.1rem solid var(--colorWhite);
        border-radius: 999rem;
        align-self: flex-start;
    }
    .secContact .contactBtn::before,
    .secContact .contactBtn::after{
        display: none;
    }
    .secContact .contactBtn:hover::before,
    .secContact .contactBtn:hover::after{
        transform: none;
    }
    .secContact .contactBtnTxt{
        display: block;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: 1;
        color: var(--colorWhite);
    }
    .secContact .contactBtnIcon{
        width: 2.1rem;
        height: 2.1rem;
        background: var(--colorWhite);
        border-radius: 50%;
    }
    .secContact .contactBtnIcon::before{
        width: 0.4rem;
        height: 0.4rem;
        left: 46%;
        border-top: 0.1rem solid var(--textColor);
        border-right: 0.1rem solid var(--textColor);
    }
    .secContact .contactBtnIcon::after{
        width: 0.8rem;
        height: 0.1rem;
        left: 50%;
        background: var(--textColor);
        transform: translate(-60%, -50%);
    }
}