﻿
.home-container-pc > .area9 {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.home-container-pc > .area9 > .left {
    width: 340px;
    height: 680px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

.home-container-pc > .area9 > .left > div {
    width: calc(100% / 2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.home-container-pc > .area9 > .left > div:nth-child(2) {
    transform: translateY(-300%);
}

@keyframes scroll-up {
    to {
        transform: translateY(-200%);
    }
}

@keyframes scroll-down {
    to {
        transform: translateY(-100%);
    }
}

.home-container-pc > .area9 > .left > div.run-up {
    animation: scroll-up 12s normal linear infinite;
}

.home-container-pc > .area9 > .left > div.run-down {
    animation: scroll-down 12s normal linear infinite;
}

.home-container-pc > .area9 > .left > div > .item {
    flex-shrink: 0;
    width: 100%;
    height: calc(100% / 4);
    border: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-container-pc > .area9 > .left > div > .item > img {
    max-width: 100%;
    max-height: 100%;
}

.home-container-pc > .area9 > .right {
    width: 900px;
    height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.home-container-pc > .area9 > .right > .up {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-container-pc > .area9 > .right > .up > .slider-container {
    width: 100%;
    height: 547px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-container-pc > .area9 > .right > .up > .slider-container > .carousel {
    width: 395px;
    height: 100%;
    display: flex;
    position: relative;
}

.home-container-pc > .area9 > .right > .up > .slider-container > .carousel > .item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /*transition: all var(--transition-seconds);*/
}

.home-container-pc > .area9 > .right > .up > .slider-container > .carousel > .item > img {
    max-width: 395px;
}

.home-container-pc > .area9 > .right > .up > .slider-container > .carousel > .item > img:nth-child(1) {
    transform: translateX(0px) scale(1);
}

.home-container-pc > .area9 > .right > .up > .slider-container > .carousel > .item > img:nth-child(2) {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.home-container-pc > .area9 > .right > .up > .slider-container > button {
    height: 60px;
    background-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.home-container-pc > .area9 > .right > .up > .slider-container > button:hover::before,
.home-container-pc > .area9 > .right > .up > .slider-container > button:hover::after {
    border-bottom: 2px solid #ffb800;
}

.home-container-pc > .area9 > .right > .up > .slider-container > .prev-btn {
    left: 30px;
}

.home-container-pc > .area9 > .right > .up > .slider-container > .prev-btn::before {
    content: "";
    width: 40px;
    border-bottom: 2px solid #ffffff;
    display: block;
    pointer-events: none;
    transform: rotate(-45deg) translate(9px, -9px);
}

.home-container-pc > .area9 > .right > .up > .slider-container > .prev-btn::after {
    content: "";
    width: 40px;
    border-bottom: 2px solid #ffffff;
    display: block;
    pointer-events: none;
    transform: rotate(45deg) translate(9px, 9px);
}

.home-container-pc > .area9 > .right > .up > .slider-container > .next-btn {
    right: 30px;
}

.home-container-pc > .area9 > .right > .up > .slider-container > .next-btn::before {
    content: "";
    width: 40px;
    border-bottom: 2px solid #ffffff;
    display: block;
    pointer-events: none;
    transform: rotate(45deg) translate(-9px, -9px);
}

.home-container-pc > .area9 > .right > .up > .slider-container > .next-btn::after {
    content: "";
    width: 40px;
    border-bottom: 2px solid #ffffff;
    display: block;
    pointer-events: none;
    transform: rotate(-45deg) translate(-9px, 9px);
}

.home-container-pc > .area9 > .right > .down {
    width: 395px;
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-container-pc > .area9 > .right > .down > img:nth-child(1) {
    width: 95px;
    height: 94px;
}

.home-container-pc > .area9 > .right > .down > img:nth-child(2) {
    width: 133px;
    height: 58px;
}

.home-container-pc > .area9 > .right > .down > img:nth-child(3) {
    width: 69px;
    height: 70px;
}