﻿
.home-container-pc > .area3 {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area3 > img:nth-of-type(1) {
    width: 100vw;
    height: 100vh;
    transform: translateY(calc(-1 * ((100vh * 0.15) + (((100vh * 1.3) - 100vh) / 2)))) scale(1.3);
    transition: all var(--transition-seconds);
}

.home-container-pc > .area3 > img:nth-of-type(1).run {
    --moving: calc(-1 * ((100vh * 0.55) + (((100vh * 1.3) - 100vh) / 2)));
    transform: translateY(var(--moving)) scale(1.3);
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area3 > img:nth-of-type(2) {
    width: auto;
    height: auto;
    position: absolute;
    bottom: calc((((100vh * 0.85) - 94px) / 2) + (100vh * 0.15));
    left: 50%;
    transform: translateX(-50%) scale(1);
    transition: all var(--transition-seconds);
}

.home-container-pc > .area3 > img:nth-of-type(2).run {
    bottom: calc((((100vh * 0.45) - 94px) / 2) + (100vh * 0.55));
    transform: translateX(-50%) scale(1);
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area3 > .arrow {
    --total: calc(var(--height) * 0.15);
    --selfheight: calc(var(--height) * 0.15 * 0.7);
    height: calc(var(--height) * 0.15 * 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: calc((var(--total) - var(--selfheight)) / 2);
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--transition-seconds);
}

.home-container-pc > .area3 > .arrow > .line {
    width: 2px;
    height: 100%;
    background-color: #ffb800;
}

.home-container-pc > .area3 > .arrow > i {
    color: #ffb800;
    font-size: 16px;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.home-container-pc > .area3 > .arrow.run {
    bottom: calc(-1 * var(--height) * 0.15 * 0.7);
}

/* ---------------------------------------------------------------------------------------------------- */

.home-container-pc > .area3 > .word {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all var(--transition-seconds);
}

.home-container-pc > .area3 > .word > p {
    color: #ffffff;
    font-size: 31.339cqh;
    line-height: 22.851cqh;
    position: absolute;
    white-space: nowrap;
}

.home-container-pc > .area3 > .word > p:nth-child(1) { color: #ffffff; top: 0px; left: 40%; z-index: 1; }
.home-container-pc > .area3 > .word > p:nth-child(2) { color: #ffb800; top: calc(100vh * 0.21762);  left: 15%; }
.home-container-pc > .area3 > .word > p:nth-child(3) { color: #ffffff; top: calc(100vh * 0.43525); left: 24%; }
.home-container-pc > .area3 > .word > p:nth-child(4) { color: #ffffff; top: calc(100vh * 0.65288); left: 40%; }
.home-container-pc > .area3 > .word > p:nth-child(5) { color: #ffffff; top: calc(100vh * 0.87051); left: 40%; }

.home-container-pc > .area3 > .word.run {
    bottom: -45%;
}