@charset "UTF-8";

body {
    opacity: 0;
    animation: bodyAppear .3s .3s forwards;
}

.modal {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    display: block;
    outline: auto;
}

@keyframes bodyAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.popup {
    display: none;
}

@keyframes circleAnime {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

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

/*============================
	kv 
============================*/

.kv {
    margin-top: 52px;
    padding: 30px 0 0;
}

.kv__bg {
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.kv__swiper {
    position: relative;
    z-index: 1;
    width: 95%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;

    & img {
        width: 100%;
    }
}


.kv__copy {
    position: relative;
    width: 80%;
    margin: -30px auto 0;
    z-index: 99;
    white-space: nowrap;
    filter: drop-shadow(3px 3px 3px rgba(255, 255, 255, .8))
}



@keyframes kvAnime {
    0% {
        transform: translate(-50%) rotate(0);
    }

    50% {
        transform: translate(-50%) rotate(5deg);
    }

    100% {
        transform: translate(-50%) rotate(0);
    }

}

.kv__copy .slide-in,
.kv__copy .slide-in_inner {
    animation-duration: 1s;
    animation-delay: .3s;
}


.kv__scroll {
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1092)*100%);
    position: absolute;
    bottom: 20px;
    right: 5%;
    z-index: 9;
}



@keyframes copyAnime {
    0% {
        opacity: 0;
        transform: translate(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* swiper */
.kv__swiper-area {
    position: relative;
}

.swiper__imgwrap {
    overflow: hidden;
    display: block;
}

.kv .swiper-slide-active .swiper__imgwrap img,
.kv .swiper-slide-duplicate-active .swiper__imgwrap img,
.kv .swiper-slide-prev .swiper__imgwrap img {
    animation: zoom-out 10s linear 0s 1 normal both;
}

@keyframes zoom-out {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.kv .swiper-pagination {
    left: 1%;
    top: 60px;
    z-index: 99;
    display: block;
    justify-content: center;
    align-items: center;
    width: fit-content;
}


.kv .swiper-pagination-bullet {
    display: block;
    background: none;
    font-size: 1.2rem;
    margin: 0 auto 10px !important;
    opacity: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: solid 1px #001211;
    text-align: center;
    color: #001211;
    transition: .3s ease-out;
    position: relative;
    opacity: .2;
    font-weight: 300;
    font-family: "Noto Sans JP", 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS PMincho', serif;

    &::before {
        display: none;
    }

    & span {
        position: absolute;
        bottom: 0;
        left: 0;
        line-height: 1;
        transition: .3s;
    }
}

.kv .swiper-pagination-bullet-active {
    opacity: 1;

}



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

    .kv {
        margin-top: 62px;
        padding: 30px 3% 0;
    }

    .kv__swiper {
        width: calc((1520/1920)*100%);
        margin: 0 0 0 auto;
        border-radius: 20px;
    }


    .kv__copy {
        position: absolute;
        max-width: 522px;
        width: calc((522/1920)*100%);
        margin: 0;
        top: 70%;
        left: 20%;
        transform: translate(-50%, -50%);
    }



}


@media screen and (min-width:1025px) {
    .kv {
        margin-top: 0;
        padding: 180px 3% 0;
    }

    .kv__swiper {
        width: calc((1520/1920)*100%);
        margin: 0 0 0 auto;
        border-radius: 40px;
    }


    .kv__copy {
        width: calc((522/1920)*100%);
        margin: 0;
        top: 70%;
        left: 25%;
    }



}

/*============================
   news
============================*/

.news {
    padding: 100px 0 0;
}

.news__obj01 {
    max-width: 532px;
    width: calc((600/1920)*100%);
    top: 60%;
    left: 0;
    transform: translate(0, -50%);
    z-index: -1;
}

.news__obj02 {
    max-width: 732px;
    width: calc((732/1920)*100%);
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: -1;
}

.news__ttl {
    display: block;
    align-items: baseline;

    & img {
        position: absolute;
        left: 0;
        top: -20px;
    }

    .txt {
        margin-left: 0em;
    }
}

.news__atc {

    margin-bottom: 1.5em;

    &:last-child {
        margin-bottom: 0;
    }

    & a {
        align-items: center;
    }
}

.news__info {
    display: flex;
    align-items: center;
}

.news__cat {
    width: fit-content;
    margin-left: 1em;
    padding: 0 1em;
    line-height: 20px;
    border-radius: 10px;
    border: solid 1px #000000;
    background-color: #fff;
    text-align: center;
    display: block;
    white-space: nowrap;
}

.news__atc--ttl {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: .5em 0 0;
    position: relative;


}

.news__btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    & img {
        margin-left: 1em;
    }
}

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


    .news {
        padding: 150px 0 0;
    }

    .news__obj01 {
        width: calc((600/1920)*100%);
        top: 60%;
        left: 0;
    }

    .news__obj02 {
        width: calc((732/1920)*100%);
        top: 70%;
        right: 0;
    }

    .news__ttl {
      
      display: flex;

        & img {
            left: 0;
            top: -20px;
        }
          .txt {
        margin-left: .5em;
    }

    }

    .news__atc {

        margin-bottom: 1.5em;

        & a {
            display: flex;
        }
    }

    .news__info {
        min-width: 200px;
    }

    .news__cat {
        margin-left: 1em;
        line-height: 24px;
        border-radius: 12px;
    }

    .news__atc--ttl {
        max-width: calc((100% - 200px));
        margin: 0 0 0 1em;
    }


}

@media screen and (min-width:1025px) {
    .news {
        padding: 200px 0 0;
    }

    .news__obj01 {
        width: calc((600/1920)*100%);
        top: 70%;
        left: 0;
    }

    .news__obj02 {
        width: calc((732/1920)*100%);
        top: 70%;
        right: 0;
    }

    .news__ttl {

        & img {
            left: 0;
            top: -30px;
        }

    }

    .news__atc {

        margin-bottom: 1.5em;

    }

    .news__info {
        min-width: 300px;
    }

    .news__cat {
        margin-left: 2em;
        line-height: 30px;
        border-radius: 15px;
    }

    .news__atc--ttl {
        max-width: calc((100% - 300px));
        margin: 0 0 0 1em;
    }


}

/*============================
   concept
============================*/
.concept {
    padding: 60px 0 0;
}

.conc__bg {
    max-width: 586px;
    width: calc((586/1920)*150%);
    right: 0;
    top: 75%;
    transform: translate(0, -50%);
    z-index: -1;
}

.conc__ttl {
    .dot {
        margin: 0 auto .5em;
    }

    .font-en {
        margin: 0 auto;
    }

    .txt {
        margin: .5em auto 0;
    }
}


.conc__img {
    margin-bottom: 30px;
}

.conc__ill01 {
    max-width: 200px;
    width: calc((200/600)*70%);
    top: -20%;
    left: 95%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: concAnime 10s infinite linear;
}

@keyframes concAnime {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

.conc__ill02 {
    max-width: 346px;
    width: calc((346/600)*70%);
    top: 100%;
    left: 95%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: concAnime02 2s infinite linear;
}

@keyframes concAnime {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

@keyframes concAnime02 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(10deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0);
    }

}


@media screen and (min-width:768px) {
    .concept {
        padding: 80px 0 0;
    }

    .conc__bg {
        width: calc((586/1920)*100%);
        top: 70%;
    }

    .conc__ttl {
        .dot {
            margin: 0 auto .5em;
        }

        .font-en {
            margin: 0 auto;
        }

        .txt {
            margin: .5em auto 0;
        }
    }


    .conc__img {
        width: 50%;
        margin-bottom: 0;
    }

    .conc__right {
        width: 45%;
    }

    .conc__ill01 {
        width: calc((200/600)*70%);
        top: -20%;
        left: 95%;
    }


    .conc__ill02 {
        width: calc((346/600)*70%);
        top: 120%;
        left: 95%;
    }

}

@media screen and (min-width:1025px) {
    .concept {
        padding: 150px 0 0;
    }

    .conc__bg {
        width: calc((586/1920)*100%);
        top: 70%;
    }

    .conc__ttl {
        .dot {
            margin: 0 auto .5em;
        }

        .font-en {
            margin: 0 auto;
        }

        .txt {
            margin: .5em auto 0;
        }
    }


    .conc__img {
        width: 50%;
    }

    .conc__right {
        width: 45%;
    }

    .conc__ill01 {
        width: calc((200/600)*70%);
        top: -30%;
        left: 60%;
    }


    .conc__ill02 {
        width: calc((346/600)*70%);
        top: 150%;
        left: 65%;
    }

    .conc__txt {
        max-width: 27em;
    }
}



/*============================
   project
============================*/
.project {
    padding: 100px 0 0;
}

.pro__ttl {
    .dot {
        margin: 0 auto .5em;
    }

    .font-en {
        margin: 0 auto;
    }

    .txt {
        margin: .5em auto 0;
    }
}

.pro__atc {
    padding: 10% 0;

}

.pro__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 1024px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.pro__ill01 {
    max-width: 217px;
    width: calc((217/1920)*150%);
    left: 10%;
    top: 85%;
    transform: translate(-50%, -50%);
    animation: proAnime01 2s infinite linear;
    display: block;
    z-index: 99;
    pointer-events: none;

}

.pro__ill02 {
    max-width: 222px;
    width: calc((222/1920)*150%);
    left: 90%;
    top: 45%;
    transform: translate(-50%, -50%);
    animation: proAnime02 2s infinite linear;
    display: block;
    z-index: 99;
    pointer-events: none;
}

.pro__flex {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    z-index: 99;
}

.pro__img {
    width: fit-content;
    margin: 0 auto;
}

.pro__txtwrap {
    padding: 0;

}

.pro__copy {
    width: fit-content;
    transform: scale(.75);
}

.pro__btn {
    margin: -20px auto 0;
}

/* atc01 */




/* atc02 linkplus */
.pro__atc:nth-child(5) {
    padding: 0;

    .pro__bg {
        top: 50%;
        left: 0;
        width: 100%;
    }

    .pro__ill01 {
        max-width: 150px;
        width: calc((150/1920)*150%);
        left: 7%;
        top: 70%;
        animation: unset;

    }

    .pro__ill02 {
        max-width: 158px;
        width: calc((158/1920)*150%);
        left: 86%;
        top: 58%;
        transform: translate(-50%, -50%);
        animation: proAnime02 2s infinite linear;
        display: block;
    }
}

/* atc03 karahashi */
.pro__atc:nth-child(2) {
    .pro__bg {
        top: 25%;
        left: 0;
        width: 100%;
    }

}

/* atc04 laseeku  */
.pro__atc:nth-child(3) {
    padding: 0;

    .pro__bg {
        top: 70%;
        left: 50%;
        width: 100%;
    }

    .pro__ill01 {
        max-width: 79px;
        width: calc((79/1920)*150%);
        left: 8%;
        top: 50%;
        animation: proAnime02 2s infinite linear;


    }

    .pro__ill02 {
        max-width: 245px;
        width: calc((245/1920)*150%);
        left: 90%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: proAnime02 2s infinite linear;
    }
}

/* atc05 reinbowmaru */
.pro__atc:nth-child(4) {

    .pro__bg {
        top: 50%;
        left: 50%;
    }

/*    .pro__ill01 {
        max-width: 305px;
        width: calc((305/1920)*150%);
        right: -10%;
        left: auto;
        top: 3%;
        animation: proAnime02 2s infinite linear;

    }*/


    .pro__ill02 {
        max-width: 607px;
        width: calc((607/1920)*150%);
        left: 70%;
        top: 97%;
        transform: translate(-50%, -50%);
        animation: proAnime03 2s infinite linear;
    }

    .pro__ill03 {
        max-width: 221px;
        width: calc((221/1920)*150%);
        left: 13%;
        top: 95%;
        transform: translate(-50%, -50%);
        pointer-events: none;

    }
}


/* animation */
@keyframes proAnime01 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(10deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0);
    }

}

@keyframes proAnime02 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-10deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0);
    }

}

@keyframes proAnime03 {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-45%, -50%);
    }

    100% {
        transform: translate(-50%, -50%);
    }

}

@media screen and (min-width:768px) {
    .project {
        padding: 150px 0 0;
    }

    .pro__atc {
        padding: 5% 0;

    }

    .pro__bg {
        top: 50%;
        left: 50%;
        min-width: 1024px;
    }

    .pro__ill01 {
        width: calc((217/1920)*100%);
        left: 10%;
        top: 0%;
    }

    .pro__ill02 {
        width: calc((222/1920)*100%);
        left: 90%;
        top: 0;
    }

    .pro__flex {
        flex-direction: row;
    }

    .pro__img {
        width: 48%;
        margin: 0;
    }

    .pro__txtwrap {
        width: 48%;

    }

    .pro__copy {
        transform: scale(.85);
        transform-origin: left center;
    }

    .pro__btn {
        margin: -20px auto 0 0;
    }

    /* atc01 */
  
    .pro__atc:nth-child(1) {
        .pro__img {
            width: 55%;
            margin: 0 0 0 -5%;
        }
      
              .pro__flex {
            flex-direction: row-reverse;
        }
    }

    /* atc02 linkplus */
    .pro__atc:nth-child(5) {
        .pro__flex {
            flex-direction: row-reverse;
        }


        .pro__bg {
            top: 50%;
            left: 30%;
            width: 100%;
        }

        .pro__ill01 {
            width: calc((150/1920)*100%);
            left: 5%;
            top: 70%;
        }

        .pro__ill02 {
            width: calc((158/1920)*100%);
            left: 90%;
            top: 100%;
        }
    }

    /* atc03 karahashi */
    .pro__atc:nth-child(2) {
        .pro__bg {
            top: 50%;
            left: 50%;
        }

    }

    /* atc04 laseeku  */
    .pro__atc:nth-child(3) {
        .pro__flex {
            flex-direction: row-reverse;
        }


        .pro__bg {
            top: 60%;
            left: 30%;
        }

        .pro__ill01 {
            width: calc((79/1920)*100%);
            left: 5%;
            top: 90%;
        }

        .pro__ill02 {
            width: calc((245/1920)*100%);
            left: 90%;
            top: 20%;
        }
    }

    /* atc05 reinbowmaru */
    .pro__atc:nth-child(4) {

        .pro__bg {
            top: 50%;
            left: 50%;
        }

/*        .pro__ill01 {
            width: calc((305/1920)*100%);
            right: -3%;
            top: -5%;
        }*/


        .pro__ill02 {
            width: calc((607/1920)*100%);
            left: 80%;
            top: 94%;
        }

        .pro__ill03 {
            width: calc((221/1920)*100%);
            left: 46%;
            top: 83%;

        }
    }

}

@media screen and (min-width:1025px) {
    .project {
        padding: 250px 0 0;
    }

    .pro__atc {
        padding: 5% 0;

    }

    .pro__bg {
        top: 50%;
        left: 50%;
        min-width: 1920px;
    }

    .pro__ill01 {
        width: calc((217/1920)*100%);
        left: 10%;
        top: 10%;
    }

    .pro__ill02 {
        width: calc((222/1920)*100%);
        left: 90%;
        top: 0;
    }

    .pro__img {
        width: 48%;
    }

    .pro__txtwrap {
        width: 48%;

    }

    .pro__copy {
        transform: scale(1);
        transform-origin: center center;
    }

    .pro__btn {
        margin: 0px auto 0 0;
    }

    /* atc01 */
    .pro__atc:nth-child(1) {
        .pro__img {
            width: 55%;
            margin: 0 0 0 -5%;
        }
    }

    /* atc02 linkplus */
    .pro__atc:nth-child(5) {


        .pro__bg {
            top: 70%;
            left: 30%;
            width: 100%;
        }

        .pro__ill01 {
            width: calc((150/1920)*100%);
            left: 5%;
            top: 66%;
        }

        .pro__ill02 {
            width: calc((158/1920)*100%);
            left: 87%;
            top: 94%;
        }
    }

    /* atc03 karahashi */
    .pro__atc:nth-child(2) {
        padding: 5% 0 0;

        .pro__bg {
            top: 70%;
            left: 50%;
        }

    }

    /* atc04 laseeku  */
    .pro__atc:nth-child(3) {

        padding: 10% 0 5%;

        .pro__bg {
            top: 70%;
            left: 30%;
        }

        .pro__ill01 {
            width: calc((79/1920)*100%);
            left: 10%;
            top: 92%;
        }

        .pro__ill02 {
            width: calc((245/1920)*100%);
            left: 85%;
            top: 40%;
        }
    }

    /* atc05 reinbowmaru */
    .pro__atc:nth-child(2) {

        .pro__bg {
            top: 60%;
            left: 50%;
        }

        .pro__ill01 {
            width: calc((305/1920)*100%);
            right: -3%;
            top: -4%;
        }


        .pro__ill02 {
            width: calc((607/1920)*100%);
            left: 80%;
            top: 100%;
        }

        .pro__ill03 {
            width: calc((308/1920)*100%);
            left: 45%;
            top: 100%;

        }
    }
}

@media screen and (min-width:1400px) {
 
    /* atc02 linkplus */
    .pro__atc:nth-child(5) {

        .pro__ill01 {
            width: calc((150/1920)*100%);
            left: 5%;
            top: 45%;
        }

        .pro__ill02 {
            width: calc((158/1920)*100%);
            left: 83%;
            top: 94%;
        }
    }

      /* atc05 reinbowmaru */
    .pro__atc:nth-child(4) {

        .pro__ill03 {
            width: calc((180/1920)*100%);
            left: 46%;
            top: 83%;

        }
    }
  
}



/*============================
   gallery
============================*/

.gallery {
    padding: 80px 0;

    .swiper-wrapper {
        transition-timing-function: linear;
    }
}

.gallery__img {
    max-width: 450px;
    width: 220px;
    margin: 0 10px;

    &:nth-child(even) {
        margin-top: 20px;
    }
}

@media screen and (min-width:768px) {
    .gallery {
        padding: 120px 0;

    }

    .gallery__img {
        max-width: 450px;
        width: 300px;
        margin: 0 10px;

        &:nth-child(even) {
            margin-top: 30px;
        }
    }

}

@media screen and (min-width:1025px) {
    .gallery {
        padding: 300px 0;

    }

    .gallery__img {
        max-width: 450px;
        width: 450px;
        margin: 0 15px;

        &:nth-child(even) {
            margin-top: 100px;
        }
    }
}


.animation-bg {
    background:
        linear-gradient(to right,
            #eef9fe 0%,
            #eef9fe 11.11%,
            #d1e7fe 11.11%,
            #d1e7fe 22.22%,
            #fbf8c9 22.22%,
            #fbf8c9 33.33%,
            #fef89a 33.33%,
            #fef89a 44.44%,
            #d5ead7 44.44%,
            #d5ead7 55.55%,
            #c1da6d 55.55%,
            #c1da6d 66.66%,
            #bbd5f0 66.66%,
            #bbd5f0 77.77%,
            #f4b2b3 77.77%,
            #f4b2b3 88.88%,
            #927fb8 88.88%,
            #927fb8 100%);
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.animation-bg {
    animation-name: PageAnime-ttb;
}

@keyframes PageAnime-ttb {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: bottom;
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

/* addition */
.can{padding: 100px 0 0;}
.top_btn_list{padding: 30px 0;}
.top_btn_li{ background: #fff; padding: 0px; box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);}
.top_btn_li{width:100%;padding: 15px 10px; margin-bottom: 15px; border-radius: 10px;}
.top_btn_li .span{display: block;font-size: 18px; text-align: center; margin-bottom: 10px;font-weight:bold;}
.top_btn_li .b{font-size: 36px; font-weight: 600; text-align: center; display: block; margin-bottom: 0px; text-transform: uppercase; line-height: 100%; margin: 0 auto 10px; background: linear-gradient(105deg, #00e4b1, #00bceb); -webkit-background-clip: text;background-clip: text;-webkit-text-fill-color: transparent;}
.top_btn_li img{display: block; text-align: center; margin:0 auto 15px;width: 60px;}
.top_btn_li .link__btn{margin: 0 auto;}
@media screen and (min-width:768px) {
.can{padding: 100px 0 0;}
.top_btn_list{padding: 30px;}
.top_btn_li{width:45%; padding: 20px; margin: 15px; background: #fff;}
.top_btn_li .span{display: block;font-size: 18px; text-align: center; margin-bottom: 10px;font-weight:bold;}
.top_btn_li .b{font-size: 50px; text-align: center; display: block; margin-bottom: 0px; text-transform: uppercase; line-height: 100%; margin: 0 auto 10px;}
.top_btn_li img{display: block; text-align: center; margin:0 auto 15px;width: 100px;}
}
@media screen and (min-width:1024px) {
.can{padding: 100px 0 0;}
.top_btn_li{width:31%; padding: 20px; margin: 15px; background: #fff;}
}
