.en {
    margin: 50px auto 80px;
}

.section .joke {
    width: 1520px;
    margin: 0 auto;
}

.section .joke .title {
    margin: 0 0 80px;
}

.section .joke .title h1 {
    font-weight: 800;
    font-size: 40px;
    color: #E83928;
    margin: 0 0 10px;
}

.section .joke .title p {
    width: 1120px;
    font-weight: bold;
    font-size: 20px;
    color: #111111;
    line-height: 40px;
}

.section .joke .part .part_title {
    margin: 0 0 40px;
}

.section .joke .part .part_title h2 {
    font-weight: bold;
    font-size: 30px;
    color: #111111;
    position: relative;
}

.section .joke .part .part_title h2:after {
    content: "";
    width: 13px;
    height: 13px;
    background: #E83928;
    position: absolute;
    left: -15px;
    top: 50%;
    border-radius: 50%;
    transform: translate(-100%, -50%);
}

.section .joke .part .part_title p {
    width: 905px;
    font-weight: 400;
    font-size: 18px;
    color: #111111;
    line-height: 36px;
    margin: 20px 0 0;
}

.section .joke .part1 {
    margin: 0 0 40px;
}

.section .joke .part1 .part_content {
    display: flex;
    flex-wrap: wrap;
}

.section .joke .part1 .part_content .item {
    width: 50%;
    position: relative;
    transition: 0.6s;
}

.section .joke .part1 .part_content .item .bg img {
    display: block;
    width: 100%;
}

.section .joke .part1 .part_content .item .text {
    position: absolute;
    left: 50%;
    top: 76px;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
}

.section .joke .part1 .part_content .item .text .img {
    width: fit-content;
    height: 67px;
    margin: 0 auto 15px;
}

.section .joke .part1 .part_content .item .text .img img {
    display: block;
}

.section .joke .part1 .part_content .item .text h5 {
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
    margin: 0 0 10px;
}

.section .joke .part1 .part_content .item .text p {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.section .joke .part1 .part_content .item:nth-child(1):hover {
    transform: translate(-8px, -8px);
}

.section .joke .part1 .part_content .item:nth-child(2):hover {
    transform: translate(8px, -8px);
}

.section .joke .part1 .part_content .item:nth-child(3):hover {
    transform: translate(-8px, 8px);
}

.section .joke .part1 .part_content .item:nth-child(4):hover {
    transform: translate(8px, 8px);
}

.section .joke .part2 {
    margin: 0 0 140px;
}

.section .joke .part2 .part_title {
    margin: 0 0 70px;
}

.section .joke .part2 .part_content {
    position: relative;
}

.section .joke .part2 .part_content .bg {
    width: 100%;
}

.section .joke .part2 .part_content .bg img {
    display: block;
    width: 100%;
}

.section .joke .part2 .part_content .item_list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.section .joke .part2 .part_content .item_list .item {
    height: 100%;
    padding: 220px 0 0;
    text-align: center;
    position: relative;
    width: 240px;
    transition: 1s;
    cursor: pointer;
}

.section .joke .part2 .part_content .item_list .item:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #000B2A;
    opacity: 0.59;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: cubic-bezier(0.77, 0, 0.175, 1) 1s;
}

.section .joke .part2 .part_content .item_list .item .item_title {
    position: relative;
    z-index: 2;
    transition: 0.6s;
}

.section .joke .part2 .part_content .item_list .item .item_title .img {
    height: 52px;
    width: fit-content;
    margin: 0 auto 30px;
}

.section .joke .part2 .part_content .item_list .item .item_title .img img {
    display: block;
}

.section .joke .part2 .part_content .item_list .item .item_title h5 {
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
}

.section .joke .part2 .part_content .item_list .item p {
    width: 396px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 36px;
    text-align: center;
    position: absolute;
    opacity: 0;
    z-index: 2;
    transform: translate(-50%, 20px);
    left: 50%;
}

.section .joke .part2 .part_content .item_list .item:not(:nth-last-child(1)) {
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.section .joke .part2 .part_content .item_list .item:hover p {
    transition: 0.8s;
    transition-delay: 0.6s;
}

.section .joke .part2 .part_content .item_list .item.on {
    width: 560px;
}

.section .joke .part2 .part_content .item_list .item.on:after {
    transform: scaleX(1);
}

.section .joke .part2 .part_content .item_list .item.on .item_title {
    transform: translateY(-50px);
}

.section .joke .part2 .part_content .item_list .item.on p {
    opacity: 1;
    transform: translate(-50%, -30px);
}

@media screen and (max-width: 1920px) {
    .en {
        margin: 2.6041666667vw auto 4.1666666667vw;
    }

    .section .joke {
        width: 79.1666666667vw;
        margin: 0 auto;
    }

    .section .joke .title {
        margin: 0 0 4.1666666667vw;
    }

    .section .joke .title h1 {
        font-weight: 800;
        font-size: 2.0833333333vw;
        color: #E83928;
        margin: 0 0 0.5208333333vw;
    }

    .section .joke .title p {
        width: 58.3333333333vw;
        font-weight: bold;
        font-size: 1.0416666667vw;
        color: #111111;
        line-height: 2.0833333333vw;
    }

    .section .joke .part .part_title {
        margin: 0 0 2.0833333333vw;
    }

    .section .joke .part .part_title h2 {
        font-weight: bold;
        font-size: 1.5625vw;
        color: #111111;
        position: relative;
    }

    .section .joke .part .part_title h2:after {
        content: "";
        width: 0.6770833333vw;
        height: 0.6770833333vw;
        background: #E83928;
        position: absolute;
        left: -0.78125vw;
        top: 50%;
        border-radius: 50%;
        transform: translate(-100%, -50%);
    }

    .section .joke .part .part_title p {
        width: 47.1354166667vw;
        font-weight: 400;
        font-size: 0.9375vw;
        color: #111111;
        line-height: 1.875vw;
        margin: 1.0416666667vw 0 0;
    }

    .section .joke .part1 {
        margin: 0 0 2.0833333333vw;
    }

    .section .joke .part1 .part_content {
        display: flex;
        flex-wrap: wrap;
    }

    .section .joke .part1 .part_content .item {
        width: 50%;
        position: relative;
        transition: 0.6s;
    }

    .section .joke .part1 .part_content .item .bg img {
        display: block;
        width: 100%;
    }

    .section .joke .part1 .part_content .item .text {
        position: absolute;
        left: 50%;
        top: 3.9583333333vw;
        text-align: center;
        white-space: nowrap;
        transform: translateX(-50%);
    }

    .section .joke .part1 .part_content .item .text .img {
        width: fit-content;
        height: 3.4895833333vw;
        margin: 0 auto 0.78125vw;
    }

    .section .joke .part1 .part_content .item .text .img img {
        display: block;
    }

    .section .joke .part1 .part_content .item .text h5 {
        font-weight: bold;
        font-size: 1.5625vw;
        color: #FFFFFF;
        margin: 0 0 0.5208333333vw;
    }

    .section .joke .part1 .part_content .item .text p {
        font-weight: 400;
        font-size: 0.8333333333vw;
        color: #FFFFFF;
    }

    .section .joke .part1 .part_content .item:nth-child(1):hover {
        transform: translate(-8px, -8px);
    }

    .section .joke .part1 .part_content .item:nth-child(2):hover {
        transform: translate(8px, -8px);
    }

    .section .joke .part1 .part_content .item:nth-child(3):hover {
        transform: translate(-8px, 8px);
    }

    .section .joke .part1 .part_content .item:nth-child(4):hover {
        transform: translate(8px, 8px);
    }

    .section .joke .part2 {
        margin: 0 0 7.2916666667vw;
    }

    .section .joke .part2 .part_title {
        margin: 0 0 3.6458333333vw;
    }

    .section .joke .part2 .part_content {
        position: relative;
    }

    .section .joke .part2 .part_content .bg {
        width: 100%;
    }

    .section .joke .part2 .part_content .bg img {
        display: block;
        width: 100%;
    }

    .section .joke .part2 .part_content .item_list {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .section .joke .part2 .part_content .item_list .item {
        height: 100%;
        padding: 11.4583333333vw 0 0;
        text-align: center;
        position: relative;
        width: 12.5vw;
        transition: 1s;
        cursor: pointer;
    }

    .section .joke .part2 .part_content .item_list .item:after {
        content: "";
        width: 100%;
        height: 100%;
        background: #000B2A;
        opacity: 0.59;
        position: absolute;
        top: 0;
        left: 0;
        transform: scaleX(0);
        transition: cubic-bezier(0.77, 0, 0.175, 1) 1s;
    }

    .section .joke .part2 .part_content .item_list .item .item_title {
        position: relative;
        z-index: 2;
        transition: 0.6s;
    }

    .section .joke .part2 .part_content .item_list .item .item_title .img {
        height: 2.7083333333vw;
        width: fit-content;
        margin: 0 auto 1.5625vw;
    }

    .section .joke .part2 .part_content .item_list .item .item_title .img img {
        display: block;
    }

    .section .joke .part2 .part_content .item_list .item .item_title h5 {
        font-weight: 800;
        font-size: 1.0416666667vw;
        color: #FFFFFF;
    }

    .section .joke .part2 .part_content .item_list .item p {
        width: 20.625vw;
        font-weight: 400;
        font-size: 0.8333333333vw;
        color: #FFFFFF;
        line-height: 1.875vw;
        text-align: center;
        position: absolute;
        opacity: 0;
        z-index: 2;
        transform: translate(-50%, 1.0416666667vw);
        left: 50%;
    }

    .section .joke .part2 .part_content .item_list .item:not(:nth-last-child(1)) {
        border-right: 1px solid rgba(255, 255, 255, 0.17);
    }

    .section .joke .part2 .part_content .item_list .item:hover p {
        transition: 2s;
    }

    .section .joke .part2 .part_content .item_list .item.on {
        width: 29.1666666667vw;
    }

    .section .joke .part2 .part_content .item_list .item.on:after {
        transform: scaleX(1);
    }

    .section .joke .part2 .part_content .item_list .item.on .item_title {
        transform: translateY(-2.6041666667vw);
    }

    .section .joke .part2 .part_content .item_list .item.on p {
        opacity: 1;
        transform: translate(-50%, -1.5625vw);
    }
}
@media screen and (max-width: 1024px) {
  .section .joke {
    width: 90%;
  }
  .section .joke .title h1 {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .section .joke .title p {
    font-size: 14px;
    line-height: 2;
    width: 100%;
  }
  .section .joke .title {
    margin: 0 0 50px;
  }
  .section .joke .part .part_title h2 {
    font-size: 20px;
  }
  .section .joke .part .part_title h2:after {
    width: 7px;
    height: 7px;
    left: -7px;
  }
  .section .joke .part .part_title p {
    font-size: 14px;
    line-height: 2;
  }
  .section .joke .part .part_title {
    margin: 0 0 20px;
  }
  .section .joke .part .part_title p {
    width: 100%;
    margin: 5px 0 0;
  }
  .section .joke .part1 {
    margin: 0 0 80px;
  }
  .section .joke .part1 .part_content .item .text h5 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 5px;
  }
  .section .joke .part1 .part_content .item .text p {
    font-size: 14px;
  }
  .section .joke .part1 .part_content .item .text .img {
    height: 35px;
    margin: 0 auto 20px;
  }
    .section .joke .part2 .part_content .item_list .item .item_title h5 {
        font-size: 18px;
    }
    .section .joke .part2 .part_content .item_list .item .item_title .img {
        height: 35px;
    }
    .section .joke .part2 .part_content .item_list .item:nth-child(1) .item_title .img img {
        height: 80%;
    }
    .section .joke .part2 .part_content .item_list .item p {
        font-size: 14px;
        line-height: 2;
        width: 90%;
    }
    .section .joke .part2 .part_content .item_list .item.on {
        width: 40vw;
    }
    .section .joke .part2 .part_content .item_list .item {
        width: 15vw;
    }
    .section .joke .part2 {
        margin: 0 0 60px;
    }
}
@media screen and (max-width: 768px) {
    .section .joke .part .part_title h2 {
        padding: 0 0 0 10px;
    }
    .section .joke .part .part_title h2::after {
        left: 4px;
    }
    .section .joke .part1 .part_content .item .text {
        position: unset;
        transform: unset;
        white-space: unset;
        text-align: left;
    }
    .section .joke .part1 .part_content .item .text .img {
        margin: 0 0 20px;
    }
    .section .joke .part1 .part_content .item .bg {
        margin: 0 0 20px;
    }
    .section .joke .part1 .part_content .item .text h5,.section .joke .part1 .part_content .item .text p {
        color: #111111;
    }
    .section .joke .part1 .part_content .item {
        width: 100%;
        margin: 0 0 40px;
    }
    .section .joke .part1 .part_content .item .text .img {
        height: 25px;
    }
    .section .joke .part1 .part_content .item .text h5 {
        margin-bottom: 10px;
    }
    .section .joke .title {
        margin: 0 0 40px;
    }
    .section .joke .part1 {
        margin: 0 0 40px;
    }
    .section .joke .part2 .part_content .item_list {
        display: block;
        position: relative;
    }
    .section .joke .part2 .part_content .bg {
        display: none;
    }
    .section .joke .part2 .part_content .item_list .item.on:after {
        display: none;
    }
    .section .joke .part2 .part_content .item_list .item .item_title h5,.section .joke .part2 .part_content .item_list .item p {
        color: #111111;
    }
    .section .joke .part2 .part_content .item_list .item.on,.section .joke .part2 .part_content .item_list .item {
        width: 100%;
        text-align: left;
    }
    .section .joke .part2 .part_content .item_list .item p {
        opacity: 1;
        width: 100%;
        position: unset!important;
        transform: unset!important;
        text-align: left;
    }
    .section .joke .part2 .part_content .item_list .item .item_title .img {
        height: 30px;
        margin: 0 0 16px;
    }
    .section .joke .part2 .part_content .item_list .item .item_title h5 {
        margin: 0 0 5px;
    }
    html[lang='en'] .section .joke .part .part_title h2:after,html[lang='ja'] .section .joke .part .part_title h2:after {
        top: 10px;
        transform: translateX(-100%);
    }
}
