.linkPage {
    position: relative;
    width: 100%;
}



.linkPage_imgbx {
    position: relative;
    width: 100%;
    height: 560px;
}
.linkPage_imgbx div {
    position: absolute;
    top: 0;
    right: calc(25% * var(--linkPage_imgShadow));
    width: calc(100% / 4);
    height: 100%;

    background: #fff;
}
.linkPage.active .linkPage_imgbx div {
    animation: fv_imgShadow 6s linear forwards;
    animation-delay: .5s;
}
@keyframes fv_imgShadow {
    0% {
        width: calc(100% / 4);
    }
    10% {
        width: 0%;
    }
    100% {
        width: 0%;
    }
}
.linkPage_imgbx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.linkPage_container01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 12rem 0;

    background: linear-gradient(90deg, rgba(64,29,1,1), rgba(156,90,38,1));
}
.linkPage_container01 > p {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 80%;

    color: #fff;
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: .5s;
    transition-delay: .5s;
    transform: translateY(100px);
    opacity: 0;
}
.linkPage_container01.active > p {
    transform: translateY(0);
    opacity: 1;
}
.linkPage_container01 p span {
    font-size: 17px;
    font-weight: 500;
}
.linkPage_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.linkPage_wrapper p {
    width: 60px;
    height: 60px;

    border: solid 2px #fff;
    border-radius: 50%;

    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 60px;

    cursor: pointer;
}
.linkPage_wrapper-imgBx {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 60px;
    width: 840px;
    height: 280px;
    overflow: hidden;
}
.linkPage_wrapper-imgBx img {
    width: 240px;
}



.linkPage_container02 {
    display: flex;
    width: 100%;
    height: 430px;
}
.linkPage_container02 a {
    width: 50%;
    height: 100%;
}
.linkPage_container02-imgBx {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.linkPage_container02-imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 1s;
    transform-origin: center center;
}
.linkPage_container02 a:hover .linkPage_container02-imgBx img{
    transform: scale(1.2);
}
.linkPage_container02-imgBx p {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 12px;

    background: linear-gradient(90deg, rgba(64,29,1,1), rgba(156,90,38,1));

    color: #fff;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 5px;
    writing-mode: vertical-lr;
}





@media screen and (max-width:1100px) {
    .linkPage_wrapper-imgBx {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
        width: 500px;
        height: 400px;
        overflow: hidden;
    }
    .linkPage_wrapper-imgBx img {
        width: 240px;
    }
    .linkPage_imgbx {
        position: relative;
        width: 100%;
        height: 400px;
    }
}





@media screen and (max-width:740px) {
    .linkPage_wrapper-imgBx {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
        width: 250px;
        height: 200px;
        overflow: hidden;
    }
    .linkPage_wrapper-imgBx img {
        width: 250px;
    }
    .linkPage_container02 {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .linkPage_container02 a {
        width: 100%;
        height: 300px;
    }
    .linkPage_container02-imgBx p {
        position: absolute;
        padding: 10px 12px;

        font-size: 1.6rem;
    }
}





@media screen and (max-width:520px) {
    .linkPage_container01 {
        padding: 10rem 0;
    }
    .linkPage_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .linkPage_wrapper-imgBx {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
        width: 220px;
        height: 180px;
        overflow: hidden;
    }
    .linkPage_wrapper-imgBx img {
        width: 220px;
    }
    .linkPage_container02 {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .linkPage_container02 a {
        width: 100%;
        height: 300px;
    }
    .linkPage_imgbx {
        position: relative;
        width: 100%;
        height: 250px;
    }
}