h1 {
    line-height: 1.2em;
    font-size: 2em;
}
body{
    font-size: 18px;
}

/*Section1*/
.section1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

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

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

.video02.is-inview {
    opacity: 0;
    transition: 0s;

}


.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 {
    font-size: 1.2em;
    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: 30px;
    text-align: center;

}

.heroOutSideInner p {
    display: block;
}

.heroOutSide2Title {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2em;
    margin-top: 40vh;
    letter-spacing: 5px;
}

.heroOutSide2Text {
    width: 70%;
    font-weight: 300;
}


/*Section2*/
.section2 {
    position: relative;
}

.section2 .content {
    position: relative;
    border-top: 1px solid var(--darkGray);
    border-bottom: 1px solid var(--darkGray);

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

.sectionOne {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid var(--darkGray);
}

.sectionThree {
    width: 33.33%;
    aspect-ratio: 1 / 1;
    border-right: 1px solid var(--darkGray);
    padding: 50px 50px;
    text-align: center;
}

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

.bm {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
}

.sectionThree h1 {
    text-transform: uppercase;
    margin-top: 30px;
}

.sectionThree p:nth-child(3) {
    color: var(--lightGray);
}

.sectionThree p:nth-child(4) {
    font-size: 12px;
    margin-top: 30px;
}

/*Section3*/
.section3 {
    position: relative;
}

.section3 .content {
    position: relative;
    border-bottom: 1px solid var(--darkGray);

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

.tabContent {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    border-bottom: 1px solid var(--darkGray);
}

.tabOption {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tabText {
    width: 66.66%;
    position: relative;
}

.aTab {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 24px;
    padding: 20px 20px;
    border-right: 1px solid var(--darkGray);
    border-bottom: 1px solid var(--darkGray);
    cursor: pointer;
    line-height: 1.5em;
}

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

.aTab.active {
    border-right: none;
}

.tabChart{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    opacity: 0;
    transition: .5s;
    padding: 50px 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
.tabChart.active{
    top: 0;
    opacity: 1;
    transition: .5s;
}

.tabChart .bm{
    width: 70%;
}
.sectionTwo{
    width: 50%;
    border-right: 1px solid var(--darkGray);
    padding: 50px 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.sectionTwo:last-child{
    border-right: none;
}
.sectionTwo h1{
    width: 100%;
    line-height: 1.2em;
}

/*Section4*/
.section4 {
    position: relative;
}

.section4 .content {
    position: relative;
    border-bottom: 1px solid var(--darkGray);

    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.section4 .sectionOne{
    height: auto;
    padding: 50px 0;
}
.section4 .sectionOne .btn{
    width: 500px;
    margin-top: 20px;
}
.section4 i{
    font-size: 40px;
    margin-bottom: 20px;
}

.section5Left {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--darkGray);
}

.section5Right {
    width: 66.66%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

#bm2 {
    width: 55%;
    height: auto;
}

.section5Left h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: normal;
    line-height: 1em;
}

.aNews {
    display: flex;
    width: 100%;
    height: 25%;
    border-bottom: 1px solid var(--darkGray);
    padding: 10px 20px;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.2em;
}

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

.newsDate {
    font-size: 12px;
    color: var(--lightGray);
}

.newsContent {
    width: 100%;
    white-space: nowrap;
}
/*Section6*/
.section6{
    position: relative;
    height: 0;
    overflow: hidden;
    transition: .5s;
    text-align: center;
}
#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;
}
.section6.is-inview{
    height: 450px;
    transition: .5s;
}
.section6 .content{
    height: 100%;
    padding: 50px 50px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--darkGray);
    line-height: 1em;
}
.section6Img{
    display: block;
    width: 50%;
    position: absolute;
    top: -25%;
    left: 25%;
    mix-blend-mode: luminosity;
}

.section6 .content h2{
    font-size: 2em;
    font-weight: 300;
    line-height: 1em;
    text-align: center;
}
.section6 .content p:last-child{
    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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

.section6.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;
}

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

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

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

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

.section6.is-inview .puprimeLogo  .puprimeLogoPath:nth-child(14)  {
    -webkit-animation: dash1 2s linear forwards;
    animation: dash1 2s linear forwards;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
    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) {
    .aTab {
        font-size: 20px;
    }
    /*Section6*/
    .section6.is-inview{
        height: 350px;
    }

}

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

    .hero svg {
        top: 140px;
    }

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

    /*Section2*/
    .sectionThree {
        padding: 30px 30px;
    }

    /*Section3*/
    .aTab {
        font-size: 18px;
    }
    /*Section6*/
    .section6 .content h2{
        font-size: 2em;
    }

}

@media (orientation:landscape) and (max-height:767px) {}

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

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

    .heroOutSideInner {
        padding: 0 100px;
    }

    /*Section2*/
    .sectionThree {
        width: 100%;
        border-bottom: 1px solid var(--darkGray);
        padding: 50px 50px;
        text-align: center;
        border-right: none;
    }

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

    /*Section3*/

    .tabContent {
        align-items: center;
        flex-direction: initial;
        flex-wrap: wrap;
    }

    .tabOption {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .tabText {
        width: 100%;
        height: 40vh;
        position: relative;
    }

    .aTab {
        width: 20%;
        height: 100px;
        font-size: 16px;
        line-height: 1.2em;
        text-align: center;
    }
    .aTab:last-child{
        border-bottom: 1px solid var(--darkGray);
    }
    .aTab.active {
        border-right: 1px solid var(--darkGray);
        border-bottom: none !important;
    }
    .sectionTwo{
        width: 100%;
        border-bottom: 1px solid var(--darkGray);
        border-right:none;
        text-align: center;
    }
    .sectionTwo:last-child{
        border-bottom: none;
    }
     /*Section6*/
     .section6.is-inview {
        height: 350px;
    }
    .section6Img{
        width: 60%;
        top: -30%;
        left: 20%;
    }
    .puprimeLogo{
        width: 30%;
    }



}

@media (orientation:portrait) and (max-height:1024px) {
    .tabText {
        height: 60vh;
    }
    /*section6*/
    .section6 .content h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width:480px) {
    h1 {
        font-size: 1.5em;
    }
    body{
        font-size: 16px;
    }
    .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;
    }
    /*Section3*/
    .aTab {
        width: 20%;
        height: 80px;
        font-size: 12px;
    }
    .aTab:last-child{
        border-right: none;
    }
    .tabText {
        height: 70vh;
    }
    .tabChart {
        padding: 30px 30px;
    }
    .tabChart .bm {
        width: 100%;
    }
    /*Section4*/
    .section4 .sectionOne{
        padding: 50px 30px;
    }
    .section4 .sectionOne .btn{
        width: 300px;
        height: 50px;
        line-height: 1.2em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
     .section5Left {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-right: none;
        border-bottom: 1px solid var(--darkGray);
    }

    .section5Right {
        width: 100%;
    }
    /*Section6*/
    .section6 {
        height: 400px;
    }
    .section6::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%);
    }
    .section6::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%);

    }

    .section6 .content{
        padding: 30px 30px;
        text-align: center;
    }
    .section6Img{
        width: 100%;
        top: 0;
        left: 0%;
    }
    .section6 .content h2{
        font-size: 1.2em;
    }
    .section6 .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) {}