.section1 {
    height: 100vh;
    background: url(../img/index.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    position: relative;
}

.section1Content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.section1Content h1 {
    line-height: 1.2em;
    opacity: 0;
    transition: .5s;
}

.section1Content p {
    font-family: var(--Sans);
    font-weight: 400;
    line-height: 1.8em;
    opacity: 0;
    transition: .5s;
}

.isReady .section1Content h1 {
    opacity: 1;
    transition: 1s;
    transition-delay: .5s;
}

.isReady .section1Content p {
    opacity: 1;
    transition: 1s;
    transition-delay: 1s;
}

.section1 svg {
    width: 50%;
    height: auto;
    display: block;

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




@-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: #d2b;
        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: var(--Gold);
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

.isReady svg {
    -webkit-animation: dash1 1.8s linear forwards;
    animation: dash1 1.8s linear forwards;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

/*Section2*/
.section2 {
    padding: 100px 0;
    background: var(--Brown);
}

.newsList {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.indexTitle {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 500;
}

.newsBtn {
    display: block;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px 25px;
    border: 1px solid var(--Gold);
    font-family: var(--Sans);
    font-size: 14px;
    color: var(--White);
    text-transform: uppercase;
    margin-top: 20px;
    transition: .3s;
}

.newsBtn:hover,
.aNews:hover {
    background: var(--Gold);
    transition: .3s;
}

.aNews:hover span {
    color: var(--White);
    transition: .3s;
}

.newsBtn i {
    margin-left: 10px;
}

.newsLeft {
    width: 20%;
}

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

.aNews {
    display: block;
    width: 100%;
    padding: 40px 10px;
    border-bottom: 1px solid var(--Gold);
    font-family: var(--Sans);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2em;
    color: var(--White);
    transition: .3s;
}

.aNews span {
    display: block;
    color: var(--Gold);
    font-size: 16px;
    font-weight: 400;
    transition: .3s;
}

/*Section3*/
.section3 {
    height: 70vh;
    background: url(../img/index3.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/*Section4*/
.section4 {
    padding: 100px 0 0 0 ;
    background: var(--Main) url(../img/p.png) repeat center center;
}

/*Product Slider C*/

.sliderC {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.aService {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aService div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    line-height: 1.2em;
    text-align: left;
    color: var(--White);
    padding: 20px 20px;
}

.aService div h2 {
    width: 100%;
    font-size: 1.8em;
    font-weight: 500;
    opacity: 0;
    transition: .5s;
}

.aService div p {
    width: 100%;
    font-family: var(--Sans);
    font-weight: 400;
    margin-top: 10px;
    opacity: 0;
    transition: .5s;
}

.swiper-slide-active.aService div h2 {
    opacity: 1;
    transition: .5s;
    transition-delay: .3s;

}

.swiper-slide-active.aService div p {
    opacity: 0.7;
    transition: .5s;
    transition-delay: .5s;
}

.sliderC img {
    width: 100%;
    position: relative;
    z-index: 0;
}

.sliderC .swiper-button-next,
.sliderC .swiper-button-prev {
    color: var(--White);
    top: -30px;
    border-radius: 20px 20px;
    border: 1px solid var(--Border);
    padding: 0 30px;
    height: 30px;
}

.sliderC .swiper-button-next {
    right: 0;
}

.sliderC .swiper-button-prev {
    left: auto;
    right: 70px;
}

.sliderC .swiper-button-next:after,
.sliderC .swiper-button-prev:after {
    font-size: 12px;
}

.swiper-pagination-fraction {
    font-size: 16px;
    width: fit-content;
    top: -60px;
    right: 150px;
    left: auto;
}

.swiper-pagination-total {
    color: var(--Border);
}

.swiper-pagination-current,
.swiper-pagination-total {
    font-size: 30px;
}

.youtubeVideo iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 150px auto 0 auto;
}

/*Section 5*/
.photoWall {
    padding: 100px 0 250px 0;
}

.photoWallContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 100px;
}

.photoWallContainer01 {
    width: calc(50% - 20px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.photoWallContainer02 {
    width: calc(50% - 10px);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.photoWallContainer img {
    width: 100%;
    height: auto;
    display: block;
    transition: .5s;
}

.photoWallContainer img:hover {
    transform: scale(1.2);
    transition: .5s;
}

.photoWallContainer03 {
    width: calc(33.33% - 20px);
    aspect-ratio: 1 / 1.25;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}


.section8 {
    padding: 50px 0;
    background: var(--Brown);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section8 h1 {
    font-size: 50px;
    line-height: 1em;
    font-weight: normal;
    margin: 0;
}

.section8Logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 30px;
}

.section8Logo img {
    width: 40px;
    margin-right: 15px;
}

.textBox {
    display: block;
    width: 100%;
    height: 62px;
    overflow: hidden;
}

.section8 h1.splitting .char {
    display: inline-block;
}


/*////RWD////*/

@media screen and (min-width:1660px) {
    
}

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

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

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

@media (orientation:portrait) and (max-height: 1180px) {
    .section1 {

        background: url(../img/index2.jpg) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;

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

    .section1Content {
        width: 100%;
        height: 60%;
        margin-top: 20vh;
    }

    .section3 {
        background: url(../img/index4.jpg) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        height: 40vh;
    }

    .photoWallContainer01 {
        width: 40.5vw;
    }

    .section8 h1 {
        font-size: 40px;
    }
    .textBox {
        height: 52px;
    }

}

@media (orientation:portrait) and (max-height: 1024px) {
    .photoWallContainer01 {
        width: 40.6vw;
    }
}

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

    .section1,
    .section3 {

        background-attachment: initial;
    }

    .section1 svg {
        width: 70%;
    }

    .section1Content p {
        width: 100%;
    }

    .newsList {

        flex-wrap: wrap;
    }

    .newsLeft {
        width: 100%;
    }

    .newsRight {
        width: 100%;
    }

    .aNews {
        font-size: 20px;
    }

    .sliderC .swiper-button-next,
    .sliderC .swiper-button-prev {
        padding: 0 15px;
    }

    .sliderC .swiper-button-prev {
        right: 40px;
    }

    .swiper-pagination-fraction {
        right: 82px;
    }

    .aService div h2 {
        font-size: 1.5em;
    }

    .photoWallContainer img:hover {
        transform: scale(1);
    }

    .photoWallContainer01,
    .photoWallContainer02,
    .photoWallContainer03 {
        width: 100%;
        height: auto;
    }
    .section8 h1 {
        font-size: 20px;
    }
    .textBox {
        height: 32px;
    }

}

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

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

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

@media (orientation: portrait) and (max-height: 736px) {}

@media (orientation: portrait) and (max-height: 667px) {}

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

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