﻿
.home-container-pc > .area2 {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area2 > img:nth-of-type(1) {
    width: 100vw;
    height: 100vh;
    transform: translateY(0px);
    transition: all var(--transition-seconds);
}

.home-container-pc > .area2 > img:nth-of-type(1).run {
    /* 15% + (((height * scale) - height) / 2) */
    transform: translateY(calc(-1 * ((100vh * 0.15) + (((100vh * 1.3) - 100vh) / 2)))) scale(1.3);
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area2 > img:nth-of-type(2) {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    transition: all var(--transition-seconds);
}

.home-container-pc > .area2 > img:nth-of-type(2).run {
    bottom: calc((((100vh * 0.85) - 94px) / 2) + (100vh * 0.15));
    transform: translateX(-50%) scale(1);
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area2 > .arrow {
    width: 12px;
    height: calc(var(--height) * 0.15 * 0.7);
    min-height: calc(var(--height) * 0.15 * 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: calc(-1 * var(--height) * 0.15 * 0.7);
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--transition-seconds);
}

.home-container-pc > .area2 > .arrow > .line {
    width: 2px;
    height: 100%;
    background-color: #ffb800;
}

.home-container-pc > .area2 > .arrow > i {
    color: #ffb800;
    font-size: 16px;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.home-container-pc > .area2 > .arrow.run {
    --total: calc(var(--height) * 0.15);
    --selfheight: calc(var(--height) * 0.15 * 0.7);
    bottom: calc((var(--total) - var(--selfheight)) / 2);
}