.en {
    margin: 50px auto 80px;
}

.fixed {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 19991209;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.fixed .fixed_shadow {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
}

.fixed .fixed_box {
    width: 1520px;
    background: #F2F3F5;
    position: relative;
    z-index: 2;
    padding: 70px 0;
    opacity: 0;
    transform: translateY(40px);
}

.fixed .fixed_box .box {
    position: relative;
}

.fixed .fixed_box .box .btns {
    width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fixed .fixed_box .box .btns .iconfont {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    font-size: 24px;
    color: #111111;
    font-weight: 700;
    cursor: pointer;
}

.fixed .fixed_box .box .btns .iconfont:nth-child(1) {
    transform: rotate(180deg);
}

.fixed .fixed_box .box .btns .iconfont:hover {
    background: #E83928;
    color: #FFFFFF;
}

.fixed .fixed_box .box .fixed_swiper {
    width: 1200px;
    margin: 0 auto;
    pointer-events: none;
}

.fixed .fixed_box .box .fixed_swiper .swiper-wrapper {
    pointer-events: none;
}

.fixed .fixed_box .box .fixed_swiper .swiper-slide {
    pointer-events: none;
}

.fixed .fixed_box .box .fixed_swiper .swiper-slide .img {
    width: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
}

.fixed .fixed_box .box .fixed_swiper .swiper-slide .img img {
    width: 100%;
    display: block;
    max-width: 100%;
    height: 777px;
    opacity: 0;
    transition: 1s;
    object-fit: contain;
}

.fixed .fixed_box .box .fixed_swiper .swiper-slide p {
    font-weight: bold;
    font-size: 30px;
    color: #111111;
    text-align: center;
    margin: 30px 0 0;
    opacity: 0;
    transition: 1s;
}
.fixed .fixed_box .box .fixed_swiper .swiper-slide .p2 p {
    font-size: 20px;
    font-weight: 500;
}
.fixed .fixed_box .box .fixed_swiper .swiper-slide.swiper-slide-active .img img {
    opacity: 1;
}

.fixed .fixed_box .box .fixed_swiper .swiper-slide.swiper-slide-active p {
    opacity: 1;
}

.fixed.on {
    pointer-events: auto;
}

.fixed.on .fixed_shadow {
    opacity: 1;
    pointer-events: auto;
}

.fixed.on .fixed_box {
    opacity: 1;
    transform: translateY(0);
    transition: 0.6s;
}

.section {
    padding: 0 0 140px;
}

.section .joke {
    width: 1520px;
    margin: 0 auto;
}

.section .joke .title {
    margin: 0 0 60px;
}

.section .joke .title h1 {
    font-weight: 800;
    font-size: 40px;
    color: #111111;
    margin: 0 0 10px;
}

.section .joke .title p {
    font-weight: 400;
    font-size: 20px;
    color: #999999;
    line-height: 1;
    margin: 0 0 50px;
}

.section .joke .title h2 {
    font-weight: bold;
    font-size: 24px;
    color: #111111;
    line-height: 36px;
}

.section .joke .content {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.section .joke .content > img {
    display: block;
    width: 100%;
}

.section .joke .content .text {
    position: absolute;
    z-index: 3;
    bottom: 70px;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

.section .joke .content .text .line {
    width: 30px;
    height: 4px;
    background: #E83928;
    border-radius: 4px;
    margin: 0 auto 10px;
}

.section .joke .content .text h5 {
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 1.5;
    text-align: center;
}

.section .joke .content .relative {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.section .joke .content .relative .absolute {
    position: absolute;
}

.section .joke .content .relative .absolute .cir {
    width: 19px;
    height: 19px;
    background: #E83928;
    border-radius: 50%;
    position: relative;
}

.section .joke .content .relative .absolute .cir:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #E83928;
    opacity: 0.4;
    animation: 3s scale linear infinite;
    border-radius: 50%;
}

.section .joke .content .relative .absolute .cir:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #E83928;
    opacity: 0.4;
    animation: 3s scale linear infinite;
    animation-delay: 1.5s;
    border-radius: 50%;
}

.section .joke .content .relative .absolute .img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%) scale(0);
    transform-origin: center bottom;
    top: -26px;
    width: 176px;
    transition: 1s ease;
}

.section .joke .content .relative .absolute .img img {
    display: block;
    max-width: 100%;
    transform-origin: center bottom;
}

.section .joke .content .relative .absolute p {
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.section .joke .content .relative .absolute:nth-child(1) {
    left: 257px!important;
    bottom: 265px!important;
}

.section .joke .content .relative .absolute:nth-child(1) .img {
    width: 138px;
}

.section .joke .content .relative .absolute:nth-child(1) .img img {
    animation-delay: 1s;
}

.section .joke .content .relative .absolute:nth-child(2) {
    left: 421px !important;
    bottom: 388px !important;
}

.section .joke .content .relative .absolute:nth-child(2) .img {
    width: 155px;
    transition-delay: 0.2s;
}

.section .joke .content .relative .absolute:nth-child(2) .img img {
    animation-delay: 1.2s;
}

.section .joke .content .relative .absolute:nth-child(3) {
    left: 749px!important;
    bottom: 485px !important;
}

.section .joke .content .relative .absolute:nth-child(3) .img {
    width: 176px;
    transition-delay: 0.4s;
}

.section .joke .content .relative .absolute:nth-child(3) .img img {
    animation-delay: 1.4s;
}

.section .joke .content .relative .absolute:nth-child(4) {
    left: 926px!important;
    bottom: 448px !important;
}

.section .joke .content .relative .absolute:nth-child(4) .img {
    width: 128px;
    transition-delay: 0.6s;
}

.section .joke .content .relative .absolute:nth-child(4) .img img {
    animation-delay: 1.6s;
}

.section .joke .content .relative .absolute:nth-child(5) {
    left: 1146px!important;
    bottom: 424px!important;
}

.section .joke .content .relative .absolute:nth-child(5) .img {
    width: 152px;
    transition-delay: 0.8s;
}

.section .joke .content .relative .absolute:nth-child(5) .img img {
    animation-delay: 1.8s;
}

.section .joke .content .relative .absolute.aos-animate .img {
    transform: translate(-50%, -100%) scale(1);
}

@keyframes scale {
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes rotate1 {
    0% {
        transform: rotate(-3deg);
    }
    25% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-3deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(3deg);
    }
    25% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(3deg);
    }
}

@media screen and (max-width: 1920px) {
    .fixed .fixed_box .box .fixed_swiper .swiper-slide .p2 p {
        font-size: 1.0416666667vw;
    }
    .en {
        margin: 2.6041666667vw auto 4.1666666667vw;
    }

    .fixed {
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: 19991209;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .fixed .fixed_shadow {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: 0.4s;
    }

    .fixed .fixed_box {
        width: 62.5vw;
        background: #F2F3F5;
        position: relative;
        z-index: 2;
        padding: 3.6458333333vw 0;
        opacity: 0;
        transform: translateY(2.0833333333vw);
    }

    .fixed .fixed_box .box {
        position: relative;
    }

    .fixed .fixed_box .box .btns {
        width: 57.2916666667vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .fixed .fixed_box .box .btns .iconfont {
        width: 3.125vw;
        height: 3.125vw;
        border-radius: 50%;
        background: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.6s;
        font-size: 1.25vw;
        color: #111111;
        font-weight: 700;
        cursor: pointer;
    }

    .fixed .fixed_box .box .btns .iconfont:nth-child(1) {
        transform: rotate(180deg);
    }

    .fixed .fixed_box .box .btns .iconfont:hover {
        background: #E83928;
        color: #FFFFFF;
    }

    .fixed .fixed_box .box .fixed_swiper {
        width: 46.875vw;
        margin: 0 auto;
        pointer-events: none;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-wrapper {
        pointer-events: none;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-slide {
        pointer-events: none;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-slide .img {
        width: 100%;
        display: flex;
        border-radius: 1.0416666667vw;
        overflow: hidden;
        align-items: center;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-slide .img img {
        width: 100%;
        display: block;
        max-width: 100%;
        height: 30.3515625vw;
        opacity: 0;
        transition: 1s;
        object-fit: cover;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-slide p {
        font-weight: bold;
        font-size: 1.5625vw;
        color: #111111;
        text-align: center;
        margin: 1.5625vw 0 0;
        opacity: 0;
        transition: 1s;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-slide.swiper-slide-active .img img {
        opacity: 1;
    }

    .fixed .fixed_box .box .fixed_swiper .swiper-slide.swiper-slide-active p {
        opacity: 1;
    }

    .fixed.on {
        pointer-events: auto;
    }

    .fixed.on .fixed_shadow {
        opacity: 1;
        pointer-events: auto;
    }

    .fixed.on .fixed_box {
        opacity: 1;
        transform: translateY(0);
        transition: 0.6s;
    }

    .section {
        padding: 0 0 7.2916666667vw;
    }

    .section .joke {
        width: 79.1666666667vw;
        margin: 0 auto;
    }

    .section .joke .title {
        margin: 0 0 3.125vw;
    }

    .section .joke .title h1 {
        font-weight: 800;
        font-size: 2.0833333333vw;
        color: #111111;
        margin: 0 0 0.5208333333vw;
    }

    .section .joke .title p {
        font-weight: 400;
        font-size: 1.0416666667vw;
        color: #999999;
        line-height: 1;
        margin: 0 0 2.6041666667vw;
    }

    .section .joke .title h2 {
        font-weight: bold;
        font-size: 1.25vw;
        color: #111111;
        line-height: 1.875vw;
    }

    .section .joke .content {
        border-radius: 1.0416666667vw;
        overflow: hidden;
        position: relative;
    }

    .section .joke .content > img {
        display: block;
        width: 100%;
    }

    .section .joke .content .text {
        position: absolute;
        z-index: 3;
        bottom: 3.6458333333vw;
        width: fit-content;
        left: 50%;
        transform: translateX(-50%);
    }

    .section .joke .content .text .line {
        width: 1.5625vw;
        height: 4px;
        background: #E83928;
        border-radius: 4px;
        margin: 0 auto 0.5208333333vw;
    }

    .section .joke .content .text h5 {
        font-weight: bold;
        font-size: 1.5625vw;
        color: #FFFFFF;
        line-height: 1.5;
        text-align: center;
    }

    .section .joke .content .relative {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .section .joke .content .relative .absolute {
        position: absolute;
        cursor: pointer;
    }

    .section .joke .content .relative .absolute .cir {
        width: 0.9895833333vw;
        height: 0.9895833333vw;
        background: #E83928;
        border-radius: 50%;
        position: relative;
    }

    .section .joke .content .relative .absolute .cir:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #E83928;
        opacity: 0.4;
        animation: 3s scale linear infinite;
        border-radius: 50%;
    }

    .section .joke .content .relative .absolute .cir:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #E83928;
        opacity: 0.4;
        animation: 3s scale linear infinite;
        animation-delay: 1.5s;
        border-radius: 50%;
    }

    .section .joke .content .relative .absolute .img {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -100%);
        top: -1.3541666667vw;
        width: 9.1666666667vw;
        z-index: 10;
    }

    .section .joke .content .relative .absolute .img img {
        display: block;
        max-width: 100%;
        transition: 0.6s;
    }

    .section .joke .content .relative .absolute .img:hover img {
        transform: translateY(-20px);
    }

    .section .joke .content .relative .absolute p {
        font-weight: bold;
        font-size: 0.9375vw;
        color: #FFFFFF;
        position: absolute;
        left: 50%;
        bottom: -2.6041666667vw;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .section .joke .content .relative .absolute:nth-child(1) {
        left: 13.3854166667vw !important;
        bottom: 13.8020833333vw !important;
    }

    .section .joke .content .relative .absolute:nth-child(1) .img {
        width: 7.1875vw;
    }

    .section .joke .content .relative .absolute:nth-child(2) {
        left: 21.9270833333vw !important;
        bottom: 20.2083333333vw !important;
    }

    .section .joke .content .relative .absolute:nth-child(2) .img {
        width: 8.0729166667vw;
    }

    .section .joke .content .relative .absolute:nth-child(3) {
        left: 39.0104166667vw !important;
        bottom: 25.2604166667vw !important;
    }

    .section .joke .content .relative .absolute:nth-child(3) .img {
        width: 9.1666666667vw;
    }

    .section .joke .content .relative .absolute:nth-child(4) {
        left: 48.2291666667vw !important;
        bottom: 23.3333333333vw !important;
    }

    .section .joke .content .relative .absolute:nth-child(4) .img {
        width: 6.6666666667vw;
    }

    .section .joke .content .relative .absolute:nth-child(5) {
        left: 59.6875vw !important;
        bottom: 22.0833333333vw !important;
    }

    .section .joke .content .relative .absolute:nth-child(5) .img {
        width: 7.9166666667vw;
    }
}

/*# sourceMappingURL=equipment.css.map */
@media screen and (max-width: 1024px) {
    .fixed .fixed_box .box .fixed_swiper .swiper-slide .p2 p {
        margin: 10px 0 0;
    }
    .section .joke {
        width: 90%;
    }
    .section .joke .title h1 {
        font-size: 24px;
        margin: 0 0 10px;
    }
    .section .joke .title p {
        font-size: 14px;
    }
    .section .joke .title {
        margin: 0 0 30px;
    }
    .section .joke .title h2 {
        font-size: 14px;
        line-height: 2;
    }
    .section .joke .content .relative .absolute p {
        font-size: 14px;
    }
    .section .joke .content .relative .absolute:nth-child(1) {
        left: 15.385417vw !important;
        bottom: 15.802083vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(2) {
        left: 25.927083vw !important;
        bottom: 23.208333vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(3) {
        left: 43.010417vw !important;
        bottom: 28.260417vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(4) {
        left: 54.229167vw !important;
        bottom: 26.333333vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(4) {
        left: 66.6875vw !important;
        bottom: 24.083333vw !important;
    }
    .section {
        padding: 0 0 80px;
    }
    .section .joke .title p {
        margin: 0 0 30px;
    }
    .fixed .fixed_box .box .fixed_swiper .swiper-slide .p2 p {
        font-size: 14px;
    }
    html[lang='ja'] .section .joke .title p {
        line-height: 1.6;
    }
}
@media screen and (max-width: 768px) {
    .section .joke .title h2 br {
        display: none;
    }
    .section .joke .content .relative .absolute p {
        font-size: 10px;
        bottom: -18px;
    }
    .section .joke .content .relative .absolute .cir {
        width: 10px;
        height: 10px;
    }
    .section .joke .content .relative .absolute:nth-child(1) .img {
        width: 12.1875vw;
    }
    .section .joke .content .relative .absolute:nth-child(2) .img {
        width: 13.072917vw;
    }
    .section .joke .content .relative .absolute:nth-child(3) .img {
        width: 13.072917vw;
    }
    .section .joke .content .relative .absolute:nth-child(4) .img {
        width: 13.072917vw;
    }
    .section .joke .content .relative .absolute:nth-child(5) .img {
        width: 13.072917vw;
    }
    .section .joke .content .relative .absolute:nth-child(1) {
        left: 10.385417vw !important;
        bottom: 15.802083vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(3) {
        left: 47.010417vw !important;
        bottom: 29.260417vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(4) {
        left: 60.6875vw !important;
        bottom: 26.083333vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(2) {
        left: 25.927083vw !important;
        bottom: 23.208333vw !important;
    }
    .section .joke .content .relative .absolute:nth-child(5) {
        left: 74.6875vw !important;
        bottom: 23.083333vw !important;
    }
    .fixed .fixed_box {
        width: 90vw;
    }
    .fixed .fixed_box .box .fixed_swiper {
        width: 70vw;
    }
    .fixed .fixed_box .box .btns {
        width: 100%;
        position: unset;
        margin: 20px 0 0;
        transform: unset;
        justify-content: center;
    }
    .fixed .fixed_box .box .btns .iconfont:nth-child(2) {
        margin-left: 20px;
    }
    .fixed.on .fixed_box {
        padding: 30px 0 20px;
        border-radius: 5px;
    }
    .fixed .fixed_box .box .btns .iconfont {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .fixed .fixed_box .box .fixed_swiper .swiper-slide p {
        font-size: 16px;
        margin: 20px 0 0;
    }
    html[lang='en'] .section .joke .title p {
        line-height: 1.6;
    }
    .fixed .fixed_box .box .fixed_swiper .swiper-slide .img img {
        height: auto;
    }
}
