/*Section1*/
.section1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.div01 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: .7;
}

.div01::after {
    width: 100%;
    height: 60vh;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero {
    width: 100%;
    height: 100%;
    background: url(../img/bg03.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 3;
    clip-path: circle(0% at 50% 50%);
    mix-blend-mode: luminosity;
    transition: 1s;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section1.isReady .hero {
    clip-path: circle(40% at 50% 0%);
    transition: 1s;
}

.heroImg01 {
    display: block;
    width: 66%;
    position: absolute;
    top: -48%;
    left: 17%;
    opacity: .6;
}

.heroTitle {
    margin-top: -7%;
    font-weight: 200;
    letter-spacing: 1em;
    color: var(--Green);
}

.hero svg {
    width: 45%;
    height: auto;
    display: block;
    position: absolute;
    top: 160px;
    right: 27.5%;

    fill: #fff;
    fill-opacity: 0;
    stroke: url(#gradation-1);
    stroke-linecap: round;
    stroke-linejoin: round;
}


.isReady svg #logo01 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo02 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .6s;
    animation-delay: 0.6s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo03 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .7s;
    animation-delay: 0.7s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo04 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .8s;
    animation-delay: 0.8s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo05 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .9s;
    animation-delay: 0.9s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo06 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1.0s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo07 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo08 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.isReady svg #logo09 {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

-webkit-keyframes dash1 {
    0% {
        stroke-dashoffset: 800;
        stroke-width: 3px;
    }

    50% {
        stroke-dashoffset: 1600;
        stroke-width: 0.1px;
    }

    50.1% {
        stroke-dashoffset: 800;
    }

    80% {
        stroke-width: 2px;
        fill: #1bb;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: #fff;
        stroke-width: 0;
        fill: #fff;
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

@keyframes dash1 {
    0% {
        stroke-dashoffset: 800;
        stroke-width: 3px;
    }

    50% {
        stroke-dashoffset: 1600;
        stroke-width: 0.1px;
    }

    50.1% {
        stroke-dashoffset: 800;
    }

    80% {
        stroke-width: 2px;
        fill: #1bb;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: #fff;
        stroke-width: 0;
        fill: #fff;
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

.heroOutSide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

}

.heroOutSideInner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.heroOutSideInner p {
    display: block;
}

.heroOutSideInner p:first-child {
    font-size: 20px;
    font-weight: 300;
    line-height: 1em;
    margin-top: 40vh;
}

.heroOutSideInner p:nth-child(2) {
    font-size: 40px;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 5px;
}

.heroOutSideInner a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    line-height: 1.5em;
    font-weight: 300;
}

.heroOutSideInner a i {
    font-size: 60px;
}

.ball {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
    mix-blend-mode: screen;
    opacity: .3;

}

.ball_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aBall {
    width: 35%;
    aspect-ratio: 1 / 1;
    position: relative;
    background: url(../img/ball_bg.png) no-repeat center center;
    background-size: cover;
    transition: transform 1s;
}

.aBall img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.aBall.is-inview {
    opacity: 0;
}

.ballImg08,
.ballImg09,
.ballImg10,
.ballImg11 {
    opacity: 0;
}

.div02 {
    width: 100%;
}

.div02 .div {
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 20px 100px;
    position: relative;
    font-size: 9.5em;
    line-height: .8em;
    text-transform: uppercase;
    font-weight: 900;
    z-index: 2;
}

.div02 .div .word {
    perspective: 600px;
    -webkit-perspective: 600px;
}

.div02 .div .word .char {
    transform-origin: center top;
    transform-style: preserve-3d;
}

/*Section2*/
.section2 {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 10%, rgba(0, 8, 72, 1) 50%);

}

.section2Img {
    width: 105%;
    height: auto;
    position: absolute;
    bottom: 20%;
    left: -2.5%;
    z-index: 0;
    opacity: .7;
}

.section2 .content {
    border-top: 1px solid var(--darkGray);
    border-bottom: 1px solid var(--darkGray);
    z-index: 1;
}

.section2Left {
    width: 66.66%;
}

.section2Right {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    border-left: 1px solid var(--darkGray);
}

.section2Right video {
    width: 80%;
    display: block;

    mask-image: url(../img/iPhone.webp);
    mask-size: 87% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url(../img/iPhone.webp);
    -webkit-mask-size: 87% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.section2Title {
    height: 200px;
    border-bottom: 1px solid var(--darkGray);
    font-size: 3.5vw;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section2Title div {
    width: 70%;
}

.section2Title div:first-child {
    text-align: left;
}

.section2Title div:last-child {
    text-align: right;
}

.section2Content {
    width: 100%;
    height: calc(100% - 200px);
    text-transform: uppercase;
    padding: 30px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
}


/*Section3*/
.section3 {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 8, 72, 1) 0%, rgba(0, 0, 0, 1) 90%);

}

.section3 .content {
    border-bottom: 1px solid var(--darkGray);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: center;
}

.section3 .content h1 {
    font-size: 2em;
    text-transform: uppercase;
    line-height: 1.2em;
}

.section3 .content i {
    font-size: 50px;
}

.section3 .content p {
    color: var(--lightGray);
}

.section3 .content .small {
    font-size: 20px;
    vertical-align: super;
}

.section3One {
    padding: 50px 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.section3Half {
    width: 50%;
    border-top: 1px solid var(--darkGray);
    border-right: 1px solid var(--darkGray);
    position: relative;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.section3Half:last-child {
    border-right: none;
}

.section3Half h2 {
    line-height: 1.2em;
}


/*Section4*/
.section4 .content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--darkGray);
    perspective: 600px;
    -webkit-perspective: 600px;
}

.section4Title {
    width: 100%;
    padding: 50px 50px;
    border-bottom: 1px solid var(--darkGray);
    font-size: 30px;
    line-height: 1.2em;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.section4Box {
    width: 33.33%;
    aspect-ratio: 1 / 1;
    border-right: 1px solid var(--darkGray);
    position: relative;

    counter-increment: step-counter;

    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.2em;
    font-weight: bold;
    padding: 20px 20px;

    transform-origin: center top;
    transform-style: preserve-3d;
}

.section4Box:last-child {
    border-right: none;
}


.section4Box::after {
    width: 100%;
    content: "00" counter(step-counter);
    font-size: 14px;
    color: var(--lightGray);
    -webkit-text-fill-color: var(--lightGray);
    line-height: 1em;
    font-weight: 300;
    position: absolute;
    bottom: 20px;
    right: 0px;
    z-index: 1;
}

/*Section5*/
.section5 {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: .5s;
}

#video03 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: .7;
}

.section5.is-inview {
    height: 450px;
    transition: .5s;
}

.section5 .content {
    height: 100%;
    padding: 50px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    border-bottom: 1px solid var(--darkGray);
    line-height: 1em;
}

.section5Img {
    display: block;
    width: 50%;
    position: absolute;
    top: -25%;
    left: 25%;
    mix-blend-mode: luminosity;
}

.section5 .content h2 {
    font-size: 2em;
    font-weight: 300;
    line-height: 1em;
    text-align: center;
}

.section5 .content p {
    font-size: 14px;
    color: var(--lightGray);
}

.puprimeLogo {
    display: block;
    width: 20%;
    height: auto;
    fill: #fff;
    fill-opacity: 0;
    stroke: url(#gradation-1);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(1) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(2) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .6s;
    animation-delay: 0.6s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(3) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .7s;
    animation-delay: 0.7s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(4) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .8s;
    animation-delay: 0.8s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(5) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: .9s;
    animation-delay: 0.9s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(6) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1.0s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(7) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(8) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.section5.is-inview .puprimeLogo .puprimeLogoPath:nth-child(9) {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {
    .div02 .div {
        font-size: 8em;
    }

    /*Section5*/
    .section5.is-inview {
        height: 350px;
    }
}

@media screen and (max-width:1024px) {
    .hero {
        background-attachment: inherit;
    }

    .hero svg {
        top: 140px;
    }

    .heroTitle {
        margin-top: -15%;
    }

    .content02 .contentContainer h1 {
        top: 120px;
        right: 90px;
    }

    .heroOutSideInner p:nth-child(2) {
        font-size: 32px;
    }

    .div02 .div {
        font-size: 7em;
    }

    /*Section5*/
    .section5 .content h2 {
        font-size: 2em;
    }

}

@media (orientation:landscape) and (max-height:810px) {
    .section1.isReady .hero {
        clip-path: circle(40% at 50% -10%);
    }
}

@media (orientation:portrait) and (max-height:1180px) {
    .hero svg {
        width: 50%;
        right: 25%;
    }

    .heroTitle {
        margin-top: -60%;
    }

    .aBall {
        width: 50%;
    }

    .heroOutSideInner {
        padding: 0 100px;
    }

    .div02 .div {
        font-size: 5em;
        line-height: 1em;
    }

    /*Section2*/
    .section2Title {

        font-size: 4vw;
    }

    .section2Right video {
        width: 90%;
    }

    .section2Img {
        bottom: 40%;
    }

    /*Section4*/
    .section4Box::before,
    .section4Box::after {
        font-size: 10px;
    }

    /*Section5*/
    .section5.is-inview {
        height: 350px;
    }

    .section5Img {
        width: 60%;
        top: -30%;
        left: 20%;
    }

    .puprimeLogo {
        width: 30%;
    }

}

@media (orientation:portrait) and (max-height:1024px) {
    .div02 .div {
        font-size: 4.5em;
    }

    /*section5*/
    .section5 .content h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width:480px) {
    .status {
        background: transparent;
    }

    .section1.isReady .hero {
        clip-path: circle(50% at 50% 0%);
    }

    .hero svg {
        width: 80%;
        right: 10%;
        top: 140px;
    }

    .heroTitle {
        margin-top: -70%;
        font-size: 20px;
    }

    .heroOutSideInner {
        padding: 0 20px;
    }

    .heroOutSideInner a {
        font-size: 14px;
    }

    .div02 .div {
        height: 50vh;
        font-size: 40px;
        padding: 20px 20px;
    }

    .aBall {
        width: 80%;
    }


    /*Section2*/
    .section2Left,
    .section2Right {
        width: 100%;
    }

    .section2Title {
        font-size: 8vw;
    }

    .section2Right video {
        width: 80%;
    }

    .section2Img {
        width: 110%;
        bottom: 70%;
        left: -5%;
    }

    /*Section3*/
    .section3Half {
        width: 100%;
        padding: 30px 20px;
    }

    /*Section4*/
    .section4 .content {
        flex-wrap: wrap;
    }

    .section4Box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--darkGray);
    }

    .section4Box:last-child {
        border-bottom: none;
    }

    .section4Box::before,
    .section4Box::after {
        font-size: 14px;
    }

    /*Section5*/
    .section5 {
        height: 400px;
    }

    .section5::before {
        content: '';
        width: 100%;
        height: 50%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    }

    .section5::after {
        content: '';
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);

    }

    .section5 .content {
        padding: 30px 30px;
        text-align: center;
        z-index: 1;
    }

    .section5Img {
        width: 100%;
        top: 0;
        left: 0%;
    }

    .section5 .content h2 {
        font-size: 1.2em;
    }

    .section5 .btn {
        width: 45%;
        font-size: 12px;
    }

    .puprimeLogo {
        width: 40%;
        fill-opacity: 1;
    }
}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-height:896px) {}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height:844px) {}

@media (orientation: portrait) and (max-width:390px) {}

/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-height:812px) {}

@media (orientation: portrait) and (max-width:375px) {}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height:736px) {}

/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height:667px) {}

@media screen and (max-width:360px) {}

@media screen and (max-width:320px) {}