@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-size: 100%;
    font-family: "NanumSquareNeo", sans-serif;
    font: inherit;
    vertical-align: baseline;
}
body {
    font-size: 15px;
    cursor: default;
    font-family: "NanumSquareNeo", sans-serif;
    position: relative;
    line-height: 25px;
}
ol,
ul,
li {
    list-style: none;
}
p {
    color: #000;
}
a {
    text-decoration: none;
    color: var(--color-primary);
}
a:hover {
    font-family: var(--font-bold);
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    /* color */
    --color-primary: #0134ff;
    --color-black: #000;
    --color-white: #fff;

    /* //color */

    /* font-size */
    --font-tiny: 12px;
    --font-media: 14px;
    --font-primary: 16px;
    --font-medium: 19px;
    --font-big: 25px;
    /* //font-size */
    /* border */
    --border: 1px solid #e4e4e4;
    /* //border */
    /* layout */
    --sublayout: 1280px;
    --otherlayout: 1400px;
    --font-bold: NanumSquareNeoBold;
    /* //layout */
}

/* 로고 */
.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 6;
    width: 3rem;
    height: 3rem;
    /* transition: filter 0.3s ease-in-out; */
}
.logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* //로고 */

.container {
    padding-top: 80px;
}

.container.story_start {
    background: #000;
}

.container.story_start .record_ani_wrap .record_img_wrap.white {
    display: none;
}

.container.story_start .record_ani_wrap .record_img_wrap.upper {
    display: none;
}

.container.story_start .record_ani_wrap .record_story .story_img_box .record_img {
    display: block;
}

.content {
    position: relative;
    z-index: 10;
}

.bg.white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2;
    pointer-events: none;
}

/* START section_ayf-area */
.section_ayf {
    position: relative;
    height: 800vh;
    margin-top: -50vh;
    background: #fff;
}

.section_ayf .inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    height: -webkit-calc(100vh - 80px);
    height: calc(100vh);
    z-index: 2;
    text-align: center;
    font-size: 0;
    overflow: hidden;
    background: #1206a5;
}

.section_ayf .inner:before {
    content: "";
    width: 0px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.section_ayf .circle_activity {
    position: relative;
    z-index: 3;
    display: inline-block;
    width: -webkit-calc(100vw - 57.08vw);
    width: calc(100vw - 57.08vw);
    max-width: 823px;
    height: -webkit-calc(100vw - 57.08vw);
    height: calc(100vw - 57.08vw);
    max-height: 823px;
    vertical-align: middle;
    pointer-events: none;
}

.section_ayf .circle_activity .circle {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.section_ayf .circle_activity .circle img {
    width: 100%;
    vertical-align: top;
    height: 100%;
}

.section_ayf .activity {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: -webkit-calc(100vw - 57.08vw);
    width: calc(100vw - 57.08vw);
    max-width: 823px;
    height: -webkit-calc(100vw - 57.08vw);
    height: calc(100vw - 57.08vw);
    max-height: 823px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.section_ayf .visual_text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.section_ayf .visual_text.text01 .text {
    color: #fff;
    font-size: 2.54167vw;
    line-height: 4.2vw;
    font-weight: 900;
    letter-spacing: -0.2px;
}

/* scroll 표시 */
.scroll-downs {
    position: absolute;
    bottom: 112px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.mousey {
    width: 3px;
    padding: 6px 10px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}
.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
}
@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}
/* //scroll 표시 */

@media screen and (max-width: 780px) {
    .section_ayf .visual_text.text01 .text {
        font-size: 4.3vw;
        line-height: 7.6vw;
    }
    .scroll-downs {
        bottom: 59px;
    }
    .mousey {
        width: 1px;
        padding: 4px 10px;
        height: 25px;
        border: 1px solid #fff;
        border-radius: 25px;
        opacity: 0.75;
        box-sizing: content-box;
    }
    .scroller {
        width: 1px;
        height: 5px;
        border-radius: 25%;
        background-color: #fff;
        animation-name: scroll;
        animation-duration: 2.2s;
        animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
        animation-iteration-count: infinite;
    }
}

.section_ayf .visual_text.text02 .sub {
    display: block;
    margin-bottom: 24px;
    color: #05e700;
    font-size: 0.83333vw;
    line-height: 0.9375vw;
    font-weight: 900;
}

.section_ayf .visual_text.text02 .text {
    color: #fff;
    font-size: 2.54167vw;
    line-height: 4.2vw;
    font-weight: 900;
    letter-spacing: -0.2px;
}

@media screen and (max-width: 780px) {
    .section_ayf .visual_text.text02 .text {
        font-size: 18px;
        line-height: 32px;
    }
}

.section_ayf .visual_text.text02 .text + .text {
    margin-top: 0.5vw;
}

.section_ayf .visual_text.text02 .after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.section_ayf .visual_text.text02 .after .text {
    color: #000;
}

.section_ayf .circle_large {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.section_ayf .circle_large .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1960px;
    height: 1960px;
    margin: -980px 0 0 -980px;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.section_ayf .circle_large .circle img {
    width: 100%;
    vertical-align: top;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.section_ayf .slogan_area {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh);
    height: calc(100vh);
    background: #fff;
    z-index: 5;
}

.section_ayf .slogan_area .slogan_text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.section_ayf .slogan_area .slogan_text .text {
    color: #000;
    font-size: 3vw;
    line-height: 5vw;
    font-weight: 800;
    white-space: nowrap;
}

@media screen and (max-width: 780px) {
    .section_ayf .slogan_area .slogan_text .text {
        font-size: 6vw;
        line-height: 9vw;
    }
}

.section_ayf .slogan_area .slogan_text .link {
    display: inline-block;
    vertical-align: top;
    margin-top: 2vw;
    padding: 0 2vw;
    -webkit-border-radius: 2vw;
    border-radius: 2vw;
    background: #fff;
    color: #000;
    font-size: 1.14583vw;
    line-height: 3vw;
    font-weight: 800;
}

.section_ayf .dream_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh);
    height: 100vh;
    background: #fff;
    z-index: 5;
}

.section_ayf .dream_area .contents-wrapping {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.section_ayf .dream_area .dream_text {
    position: relative;
    width: 100%;
    height: 1px;
    z-index: 5;
}

.section_ayf .dream_area .dream_text > .text {
    position: absolute;
    left: 50%;
    font-weight: 700;
    font-family: "Pretendard";
    font-size: 10vw;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: #0134ff;
    color: #fff;
    line-height: 10vw;
    letter-spacing: -1.4px;
    transform: translateX(-50%);
    white-space: nowrap;
    width: 1400px;
    margin-left: -700px;
    text-align: center;
}

@media screen and (max-width: 780px) {
    .section_ayf .dream_area .dream_text > .text {
        font-size: 20vw;
        -webkit-text-stroke: 1px;
        -webkit-text-stroke-color: #0134ff;
        line-height: 20vw;
        transform: translateX(-10%);
    }
}

.section_ayf .dream_area .dream_text > .textDr {
    bottom: 0;
}

.section_ayf .dream_area .dream_text > .textIs {
    top: 0;
    color: #0134ff;
}

.section_ayf .ayf_vision_area1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh);
    height: 100vh;
    background: #fff;
    z-index: 5;
}

.section_ayf .ayf_vision_area1 .contents_wrapping {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.section_ayf .ayf_vision_area1 .vision_texts {
    position: relative;
    width: 100%;
    height: 1px;
    z-index: 5;
}

.section_ayf .ayf_vision_area1 .vision_texts .tit_vision {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #0134ff;
    font-size: 3vw;
    line-height: 6vw;
    font-weight: 900;
}

.section_ayf .ayf_vision_area1 .vision_texts .tit_vision_s {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 1.8vw;
    line-height: 6vw;
    font-weight: 600;
}

.section_ayf .ayf_vision_area1 .vision_texts .text_vision {
    position: absolute;
    top: 6vw;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 1vw;
    line-height: 1.5vw;
    font-weight: 300;
}
.section_ayf .ayf_vision_area1 .vision_texts .text_vision b {
    font-weight: 600;
}
@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area1 .vision_texts .tit_vision {
        font-size: 9vw;
        line-height: 13vw;
        bottom: 0;
    }

    .section_ayf .ayf_vision_area1 .vision_texts .tit_vision_s {
        top: 2vw;
        font-size: 4.7vw;
        line-height: 7.6vw;
    }

    .section_ayf .ayf_vision_area1 .vision_texts .text_vision {
        margin: 0 auto;
        top: 26vw;
        font-size: 2.8vw;
        line-height: 4.6vw;
    }
}

.section_ayf .ayf_vision_area1 .vs_circle_activity {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.section_ayf .ayf_vision_area1 .vs_circle_activity:before {
    content: "";
    width: 0px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.section_ayf .ayf_vision_area1 .vs_circle_activity .circle {
    display: inline-block;
    vertical-align: middle;
    width: 70vw;
}

.section_ayf .ayf_vision_area1 .vs_circle_activity .circle img {
    width: 100%;
    max-height: 823px;
}

@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area1 .vs_circle_activity .circle {
        width: 95vw;
    }
}

.section_ayf .ayf_vision_area1 .vs_photo_wrapping {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.section_ayf .ayf_vision_area1 .vs_photo_wrapping img {
    width: 45%;
}

.section_ayf .ayf_vision_area1 .vs_photo_wrapping .vs_photo1 {
    position: absolute;
    top: 12vw;
    left: 67vw;
}

.section_ayf .ayf_vision_area1 .vs_photo_wrapping .vs_photo2 {
    position: absolute;
    top: 7vw;
    left: 9vw;
}

.section_ayf .ayf_vision_area1 .vs_photo_wrapping .vs_photo3 {
    position: absolute;
    bottom: 1vw;
    left: 11vw;
}

@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area1 .vs_photo_wrapping .vs_photo1 {
        width: 84%;
        top: 17vw;
        left: 35vw;
    }

    .section_ayf .ayf_vision_area1 .vs_photo_wrapping .vs_photo2 {
        width: 67%;
        top: 14vw;
        left: -13vw;
    }

    .section_ayf .ayf_vision_area1 .vs_photo_wrapping .vs_photo3 {
        width: 65%;
        bottom: 2vw;
        left: -4vw;
    }
}

.section_ayf .ayf_vision_area2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh);
    height: 100vh;
    background: #fff;
    z-index: 5;
}

.section_ayf .ayf_vision_area2 .contents_wrapping {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.section_ayf .ayf_vision_area2 .contents_wrapping {
    flex-direction: column;
}

.section_ayf .ayf_vision_area2 .vision_texts {
    position: relative;
    width: 100%;
    height: 1px;
    z-index: 5;
}

.section_ayf .ayf_vision_area2 .vision_texts .tit_vision {
    position: absolute;
    bottom: -160px;
    width: 100%;
    text-align: center;
    color: #0134ff;
    font-size: 3vw;
    line-height: 6vw;
    font-weight: 900;
}

.section_ayf .ayf_vision_area2 .vision_texts .tit_vision_s {
    position: absolute;
    top: 160px;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 1.8vw;
    line-height: 6vw;
    font-weight: 600;
}

.section_ayf .ayf_vision_area2 .vs_circle_activity:before {
    content: "";
    width: 0px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area2 .vision_texts .tit_vision {
        bottom: -168px;
        font-size: 9vw;
        line-height: 13vw;
    }

    .section_ayf .ayf_vision_area2 .vision_texts .tit_vision_s {
        top: 58vw;
        font-size: 4.6vw;
        line-height: 7.6vw;
    }
}

.section_ayf .ayf_vision_area2 .vs_circle_activity {
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    height: 200px;
    text-align: center;
    z-index: 3;
}

.section_ayf .ayf_vision_area2 .vs_circle_activity .circle {
    display: inline-block;
    transform: translate3d(30px, 30px, 30px) rotate(220deg) scale(1.5, 1.5);
    width: 50vw;
}

.section_ayf .ayf_vision_area2 .vs_circle_activity .circle img {
    max-height: 400px;
}

@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area2 .vs_circle_activity {
        top: -200px;
        left: 0;
        width: 100%;
        height: 200px;
        text-align: center;
        z-index: 3;
    }

    .section_ayf .ayf_vision_area2 .vs_circle_activity .circle {
        display: inline-block;
        transform: translate3d(10px, 10px, 10px) rotate(220deg) scale(1.5, 1.5);
        width: 70vw;
    }

    .section_ayf .ayf_vision_area2 .vs_circle_activity .circle img {
        width: 100%;
    }
}

.section_ayf .ayf_vision_area2 .floating_texts:first-of-type {
    margin-top: 380px;
}

.floating_texts.top {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    animation: rollingtext 20s linear alternate infinite;
    /*animation-iteration-count : infinite;
  	animation-name: ani1, ani2, ani3;
  	animation-delay: 0s, 0s, 0s;
  	animation-duration: 5s, 0s, 5s;
  	animation-timing-function: linear,linear,linear;
  	*/
}

.floating_texts.middle {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    /*animation: rollingtext 40s linear infinite;*/
    animation: rollingtext 20s linear alternate-reverse infinite;
}

.floating_texts.low {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    /*animation: rollingtext 40s linear infinite;*/
    animation: rollingtext 20s linear alternate infinite;
}

.floating_texts.top {
    animation-delay: 0s;
}

.floating_texts.middle {
    animation-delay: 0s;
}

.floating_texts.low {
    animation-delay: 0s;
}

.floating_texts + .floating_texts {
    margin-top: 1.5vw;
}

.float_text {
    padding: 0.75vw 1.5vw;
    font-size: 1.35vw;
    font-weight: 400;
    letter-spacing: -0.25px;
    line-height: 1;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #fff;
}

@media screen and (max-width: 780px) {
    .floating_texts + .floating_texts {
        margin-top: 3vw;
    }

    .float_text {
        padding: 3vw 5vw;
        font-size: 5vw;
    }
}

.float_text b {
    font-weight: 700;
}

.float_text.type1 {
    color: #ff5c00;
    border: 1px solid #ff5c00;
}

.float_text.type2 {
    color: #1206a5;
    background: #edebda;
    border: 1px solid #edebda;
}

.float_text.type3 {
    color: #0134ff;
    border: 1px solid #0134ff;
}

.float_text.type4 {
    color: #1206a5;
    border: 1px solid #1206a5;
}

@keyframes ani1 {
    0% {
        left: 0;
    }

    100% {
        left: -50%;
    }
}

@keyframes ani2 {
    to {
        left: 0;
    }
}

@keyframes ani3 {
    0% {
        left: 0;
    }

    100% {
        left: -50%;
    }
}

@keyframes rollingtext {
    0% {
        left: 0;
    }

    100% {
        left: -50%;
    }
}

.section_ayf .ayf_vision_area3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh);
    height: 100vh;
    background: #fff;
    z-index: 5;
}

.section_ayf .ayf_vision_area3 .contents_wrapping {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.section_ayf .ayf_vision_area3 .contents_wrapping {
    flex-direction: column;
}

.section_ayf .ayf_vision_area3 .vision_texts {
    position: relative;
    width: 100%;
    height: 1px;
    z-index: 5;
}

.section_ayf .ayf_vision_area3 .vision_texts .tit_vision {
    position: absolute;
    bottom: 120px;
    width: 100%;
    text-align: center;
    color: #0134ff;
    font-size: 3vw;
    line-height: 6vw;
    font-weight: 900;
}

.section_ayf .ayf_vision_area3 .vision_texts .tit_vision_s {
    position: absolute;
    top: -120px;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 1.8vw;
    line-height: 6vw;
    font-weight: 600;
}

@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area3 .vision_texts .tit_vision {
        bottom: 27vw;
        font-size: 9vw;
        line-height: 13vw;
    }

    .section_ayf .ayf_vision_area3 .vision_texts .tit_vision_s {
        top: -14vw;
        font-size: 4.6vw;
        line-height: 7.6vw;
    }
}

.section_ayf .ayf_vision_area3 .vs_circle_activity:before {
    content: "";
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.section_ayf .ayf_vision_area3 .vs_circle_activity {
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    height: 200px;
    text-align: center;
    z-index: 3;
}

.section_ayf .ayf_vision_area3 .vs_circle_activity .circle {
    display: inline-block;
    transform: translate3d(30px, 30px, 30px) rotate(220deg) scale(1.5, 1.5);
    width: 50vw;
}

.section_ayf .ayf_vision_area3 .vs_circle_activity .circle img {
    max-height: 400px;
}

@media screen and (max-width: 780px) {
    .section_ayf .ayf_vision_area3 .vs_circle_activity {
        top: -200px;
        left: 0;
        width: 100%;
        height: 200px;
        text-align: center;
        z-index: 3;
    }

    .section_ayf .ayf_vision_area3 .vs_circle_activity .circle {
        display: inline-block;
        transform: translate3d(10px, 10px, 10px) rotate(220deg) scale(1.5, 1.5);
        width: 70vw;
    }

    .section_ayf .ayf_vision_area3 .vs_circle_activity .circle img {
        width: 100%;
    }
}

.vision_boxgroup {
    width: 100%;
    height: 35vh;
    position: absolute;
    bottom: 0;
}

.vision_box {
    position: relative;
    width: 33.333%;
    height: 100%;
}

.vision_box.one {
    background: url(../img/visionBox1.png) no-repeat;
    background-size: cover;
    background-color: rgba(1, 52, 255, 0.85);
}

.vision_box .vision_titlebox {
    font-size: 1.8vw;
    line-height: 1.5;
    letter-spacing: -0.32px;
    font-weight: 700;
    height: 100%;
    word-break: keep-all;
}

@media screen and (max-width: 780px) {
    .vision_boxgroup {
        height: 30vh;
    }

    .vision_box .vision_titlebox {
        font-size: 5vw;
        line-height: 1.3;
    }

    .vision_box.one p {
        position: absolute;
        right: 10%;
        top: 40%;
        width: 80%;
        height: 100%;
        text-align: left;
        color: #fff;
        font-size: 2.2vw;
        line-height: 1.7;
        opacity: 0;
    }
}

.vision_box.one .vision_titlebox {
    position: absolute;
    left: 0;
    top: 47%;
    text-align: center;
    width: 100%;
}

.vision_box.one p {
    position: absolute;
    right: 10%;
    top: 25%;
    width: 45%;
    height: 100%;
    text-align: left;
    color: #fff;
    font-size: 1.2vw;
    line-height: 1.7;
    opacity: 0;
}

@media screen and (max-width: 780px) {
    .vision_box.one p {
        position: absolute;
        right: 10%;
        top: 40%;
        width: 80%;
        height: 100%;
        text-align: left;
        color: #fff;
        font-size: 2.2vw;
        line-height: 1.7;
        opacity: 0;
    }
}

.vision_box .vision_titlebox {
    color: #fff;
}

.vision_box.two {
    background: url(../img/visionBox2.png) no-repeat;
    background-size: cover;
    background-color: rgba(183, 42, 248, 0.85);
    position: absolute;
    left: 33.33%;
    top: 0;
}

.vision_box.two .vision_titlebox {
    position: absolute;
    left: 0;
    top: 47%;
    text-align: center;
    width: 100%;
}

.vision_box.two p {
    position: absolute;
    right: 10%;
    top: 25%;
    width: 45%;
    height: 100%;
    text-align: left;
    color: #fff;
    font-size: 1.2vw;
    line-height: 1.7;
    opacity: 0;
}

@media screen and (max-width: 780px) {
    .vision_box.two p {
        position: absolute;
        right: 10%;
        top: 40%;
        width: 80%;
        height: 100%;
        text-align: left;
        color: #fff;
        font-size: 2.2vw;
        line-height: 1.7;
        opacity: 0;
    }
}

.vision_box.three {
    background: url(../img/visionBox3.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.vision_box.three .vision_titlebox {
    position: absolute;
    left: 0;
    top: 47%;
    text-align: center;
    width: 100%;
}

.vision_box.three p {
    position: absolute;
    right: 10%;
    top: 25%;
    width: 45%;
    height: 100%;
    text-align: left;
    color: #fff;
    font-size: 1.2vw;
    line-height: 1.7;
    opacity: 0;
}

@media screen and (max-width: 780px) {
    .vision_box.three p {
        position: absolute;
        right: 10%;
        top: 40%;
        width: 80%;
        height: 100%;
        text-align: left;
        color: #fff;
        font-size: 2.2vw;
        line-height: 1.7;
        opacity: 0;
    }
}

.vision_box:hover {
    z-index: 10;
    width: 100%;
    transition-property: all;
    transition-duration: 1s;
}
.vision_box.two:hover {
    left: 0;
}
/* .vision_box.three:hover {
    left: 0;
    right: auto;
} */
.vision_box:hover p {
    opacity: 1;
    transition-property: all;
    transition-duration: 4s;
}

.vision_box.one:hover .vision_titlebox,
.vision_box.two:hover .vision_titlebox,
.vision_box.three:hover .vision_titlebox {
    position: absolute;
    width: auto;
    left: 10%;
    top: 25%;
    transition-property: all;
    transition-duration: 1s;
}

.normal-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100%);
    height: 100%;
    background: white;
    z-index: 5;
    scroll-behavior: smooth;
    pointer-events: none;
    /* pointer-events: none; */
}
.vision_videobg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100%);
    height: calc(100%);
    background: rgba(0, 0, 0, 0.75);
    /* opacity: 0; */
    z-index: 5;
}
.vision_videobg.topeffect {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    height: 20%;
}

.video-box {
    display: block;
    width: 100%;
    height: 100%;
}
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.normal-page .contents_wrapping {
    height: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
}

.vision_texts.slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.normal-page .vision_texts .tit_vision_s {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.8vw;
    font-weight: 400;
    line-height: 1.5;
    word-break: keep-all;
}
.normal-page .vision_texts .tit_vision_s.second {
    margin-top: 40px;
}
.inside_texts {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 12px;
}
.inside_texts .tit_vision {
    font-size: 2.3vw;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.36px;
}
.tit_vision.video.left {
    color: #a4b2e8;
}
.tit_vision.video.right {
    color: #2e58fc;
}
.normal-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100%);
    height: 100%;
    background: white;
    z-index: 5;
    scroll-behavior: smooth;
}

.vision_videobg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh);
    height: calc(100vh);
    background: rgba(0, 0, 0, 0.75);
    /* opacity: 0; */
    z-index: 5;
}
.vision_videobg.topeffect {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
    position: fixed;
    top: 0;
    height: 20%;
}

.video-box {
    display: block;
    width: 100%;
    height: 100%;
}
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.normal-page .contents_wrapping {
    height: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
}

.vision_texts.slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.normal-page .vision_texts .tit_vision_s {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.8vw;
    font-weight: 400;
    line-height: 1.5;
    word-break: keep-all;
}
.normal-page .vision_texts .tit_vision_s.second {
    margin-top: 40px;
}
.inside_texts {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 12px;
}
.inside_texts .tit_vision {
    font-size: 2.3vw;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.36px;
}
.tit_vision.video.left {
    color: #a4b2e8;
}
.tit_vision.video.right {
    color: #2e58fc;
}

@media screen and (max-width: 780px) {
    .logo {
        width: 2rem;
        height: 2rem;
    }
    .normal-page {
        height: 100vh;
        height: -webkit-calc(100vh);
    }

    .video-box video {
        height: 100vh;
    }
    .normal-page .vision_texts .tit_vision_s {
        font-size: 3.5vw;
        line-height: 7vw;
    }
    .normal-page .vision_texts .tit_vision_s.second {
        margin-top: 4px;
    }
    .inside_texts {
        flex-direction: column;
    }
    .inside_texts .tit_vision {
        font-size: 7.5vw;
        text-align: center;
        line-height: 110%;
    }
}

#footer {
    position: fixed;
    z-index: 5;
    font-size: 0.7vw;
    line-height: 1.3rem;
    color: #ffff;
    bottom: 0;
    width: 100%;
}

#footer > .contents-wrapping {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: var(--sublayout);
    min-width: var(--sublayout);
}

.footer-policy {
    padding: 20px 0;
    text-align: center;
}

@media screen and (max-width: 780px) {
    /* footer */
    #footer {
        padding: 0 16px;
        font-size: 2.3vw;
    }
    .footer-policy {
        padding: 12px 0;
    }
    /* //footer */
}
