@charset "UTF-8";

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

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

    100% {
        opacity: 1;
    }
}


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

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

/*============================
	kv 
============================*/
.kv {
    margin-top: 52px;

    &::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 90%;
        background: url(../images/kv_bg.jpg) no-repeat center center/cover;
        top: 0;
        right: 0;
        z-index: -1;
    }
}

.kv__swiper {
    position: relative;
    z-index: 99;
    width: 95%;
    margin: 0;
    background: #fff;
}

.kv__img {

    & img {
        width: 100%;
        object-fit: cover;
        min-height: 300px;
    }
}

.kv__item {
    position: relative;
}

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

.kv__copy {
    position: absolute;
    max-width: 135px;
    max-width: 60px;
    width: calc((135/1920)*200%);
    top: 50%;
    left: 80%;
    color: #fff;
    z-index: 99;
    transform: translate(-50%, -50%);

}

.kv__circle {
    position: absolute;
    max-width: 420px;
    width: calc((420/1920)*100%);
    top: 20%;
    left: 80%;
    z-index: 99;
    mix-blend-mode: soft-light;
    display: block;
    transform: translate(-50%, -50%);
}


.kv__scroll {
    max-width: 98px;
    width: 50px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%);
    z-index: 9;
    display: block;
}



@keyframes copyAnime {
    0% {
        opacity: 0;
        transform: translateY(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: 5%;
    bottom: 20px;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}


.kv .swiper-pagination-bullet {
    display: block;
    background: none;
    margin: 0 5px !important;
    background: #fff;
    opacity: 1;
    border-radius: 0 !important;
    width: 20px;
    height: 3px;
    transition: .3s ease-out;
    position: relative;
    opacity: 1;

}

.kv .swiper-pagination-bullet-active {
    opacity: 1;
    background: #9a001c;

}



@media screen and (min-width:768px) {
    .kv {
        margin-top: 62px;

        &::before {
            width: 90%;
            height: 90%;
        }
    }

    .kv__swiper {
        width: 95%;
    }



    .kv__copy {
        top: 50%;
        left: 80%;

        max-width: 135px;
        width: calc((135/1920)*100%);

    }

    .kv__circle {
        width: calc((420/1920)*100%);
        top: 25%;
        left: 80%;
    }

    .kv .swiper-pagination {
        left: 5%;
        bottom: 20px;
    }


    .kv .swiper-pagination-bullet {
        margin: 0 10px !important;
        width: 30px;
        height: 5px;

    }


}



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

        &::before {
            width: 70%;
            height: 90%;
        }
    }

    .kv__swiper {
        width: calc((1400/1920)*100%);
        margin: 0 4.1% 0 auto;
    }



    .kv__copy {
        top: 55%;
        left: 80%;

        .txt01 {
            font-size: min(4rem, 3vw);
        }


    }

    .kv__circle {
        width: calc((420/1920)*100%);
        top: 35%;
        left: 80%;
    }

    .kv .swiper-pagination {
        left: 5%;
        bottom: 30px;
    }


    .kv .swiper-pagination-bullet {
        margin: 0 10px !important;
        width: 40px;
        height: 3px;

    }
}

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

.conc__bg {
    width: 100%;
    top: calc(100% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.conc__left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.conc__ttl {
    width: fit-content;
    margin: 0 1em 0 0;

    & img {
        max-width: 70px;
        width: 50px;
        margin: 0 auto 1em;
    }

    .txt {
        line-height: 1.5;
    }
}

.conc__img {
    width: 75%;
}

.conc__h3 {
    font-size: 1.8rem;
}

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

    .conc__bg {
        width: 100%;
        top: 85%;
    }

    .conc__left {
        width: 55%;
        margin-bottom: 0;
        align-items: flex-start;
    }

    .conc__right {
        width: 43%;
    }

    .conc__ttl {
        margin: 0 1em 0 0;

        & img {
            max-width: 70px;
            width: 60px;
            margin: 0 auto 1em;
        }

        .txt {
            font-size: 3rem;
        }
    }

    .conc__h3 {
        font-size: 2rem;
    }
}

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

    .conc__bg {
        width: 100%;
        top: 85%;
    }

    .conc__left {
        width: 55%;
        align-items: center;
    }

    .conc__right {
        width: 40%;
    }

    .conc__ttl {
        margin: 0 5% 0 auto;

        & img {
            max-width: none;
            width: fit-content;
            margin: 0 auto 1em;
        }

        .txt {
            font-size: 5rem;
        }
    }

    .conc__h3 {
        font-size: 4.2rem;
    }
}


/*============================
   commitment
============================*/
.comm__top {
    padding: 100px 5%;
    position: relative;
    margin-bottom: 30px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -2;
        background: url(../images/commit_img.jpg) no-repeat center center/cover;
    }


}

.comm__ttl {
    max-width: 220px;
    width: 120px;
    margin: 0 0 0 auto;
}

.conc__btn.-wh {
    margin: 0 0 0 auto;
    border-color: #111;
    color: #111;

    &::before {
        background-color: #111;
    }

    &:hover {
        background: #9a001c;
        color: #fff;

        &::before {
            background-color: #fff;
        }
    }

}

@media screen and (min-width:768px) {
    .comm__top {
        padding: 100px 5%;
        margin-bottom: 40px;
    }

    .comm__ttl {
        max-width: 220px;
        width: 140px;
        margin: 0 0 0 auto;
    }

    .conc__btn.-wh {
        margin: 0 0 0 auto;


    }

}

@media screen and (min-width:1025px) {
    .comm__top {
        padding: 200px 5% 250px;
        margin-bottom: 60px;
    }

    .comm__ttl {
        max-width: 220px;
        width: fit-content;
        margin: 0 0 0 auto;
    }

    .conc__btn.-wh {
        margin: 0 0 0 auto;


    }
}

/*============================
   scene
============================*/
.scene__top {
    padding: 60px 0 30px;
}

.scene__ttl {
    & img {
        max-width: 86px;
        width: 50px;
        margin: 0 auto 1em;
    }
}

.scene__item {
    padding: 50px 3%;
    background: url(../images/scene_bg01.jpg) no-repeat center center/cover;
    color: #fff;
}

.scene__item:nth-child(2) {
    background: url(../images/scene_bg02.jpg) no-repeat center center/cover;
}

.scene__item:nth-child(3) {
    background: url(../images/scene_bg03.jpg) no-repeat center center/cover;
}

.scene__h3 {


    .txt {
        width: fit-content;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        line-height: 1.5;
        margin-top: 1em;
    }
}

.scens__btn {
    margin: 0 auto;
}

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

    .scene__ttl {
        & img {
            max-width: 86px;
            width: 70px;
            margin: 0 auto 1em;
        }
    }

    .scene__item {
        width: 33.33%;
        max-width: 640px;
        padding: 40px 1em;
    }

    .scene__h3 {
        margin-bottom: 1em;
        min-height: 270px;

        .txt {

            margin-top: 1em;
        }
    }


}

@media screen and (min-width:1025px) {
    .scene__top {
        padding: 120px 0 60px;
    }

    .scene__ttl {
        & img {
            max-width: 86px;
            width: fit-content;
            margin: 0 auto 1em;
        }
    }

    .scene__item {
        width: 33.33%;
        max-width: 640px;
        padding: 80px 3%;
    }

    .scene__h3 {
        margin-bottom: 1em;
        min-height: 450px;

        .txt {

            margin-top: 1em;
        }
    }
}

/*============================
   menu
============================*/
.menu {
    padding: 60px 0;
    background: url(../images/menu_bg.jpg) no-repeat center center/cover;
    color: #fff;
}

.menu__ttl {

    width: fit-content;
    margin: 0 auto 20px;

    .txt {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
    }

    & img {
        max-width: 97px;
        width: 60px;
        margin-bottom: 1em;
    }
}

.menu__items {
    display: flex;
    justify-content: space-between;
}

.menu__item {
    width: 48%;
    margin-bottom: 20px;
}

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

    .menu__container {
        display: flex;
    }

    .menu__ttlwrap {
        width: 20%;
    }

    .menu__ttl {
        width: fit-content;
        margin: 0;

        & img {
            max-width: 97px;
            width: 60px;
            margin-bottom: 1em;
        }
    }

    .menu__items {
        display: flex;
        justify-content: flex-start;
    }

    .menu__item {
        width: 35%;
        margin-right: 5%;
        margin-bottom: 20px;

        &:nth-child(3) {
            margin-left: -15%;
            margin-bottom: 0;
            ;
        }

        &:nth-child(4) {
            margin-bottom: 0;
            ;
        }
    }

    .menu__txtwrap {
        width: 30%;
        margin: -200px 0 0 auto;
    }

}

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

    .menu__ttlwrap {
        width: 20%;
    }

    .menu__ttl {
        width: fit-content;
        margin: 0;

        & img {
            max-width: 97px;
            width: fit-content;
            margin-bottom: 1em;
        }
    }


    .menu__item {
        width: 35%;
        max-width: 410px;
        margin-right: 5%;
        margin-bottom: 0;
        z-index: 9;
        position: relative;

        &:nth-child(3) {
            margin-left: -18%;
        }
    }

    .menu__txtwrap {
        width: 32%;
        margin: -340px 0 0 auto;
    }

}


/*============================
   recruit
============================*/
.recruit {
    padding: 60px 0 0;
    margin-bottom: -60px;
}

.rec__txtwrap {
    margin-bottom: 30px;
}

.rec__ttl {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.rec__imgwrap {
    display: flex;
    justify-content: space-between;
}

.rec__img01 {
    margin-left: -5%;
}

.rec__img02 {
    margin-right: -5%;
}

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

    .rec__txtwrap {
        margin-bottom: 0;
    }

    .rec__ttl {
        margin: 0 auto 30px;
    }



    .rec__img01 {
        position: absolute;
        margin-left: 0;
        max-width: 535px;
        width: calc((535/1720)*100%);
        top: 50%;
        left: 17%;
        transform: translate(-50%, -50%);
    }

    .rec__img02 {
        position: absolute;
        margin: 0;
        max-width: 370px;
        width: calc((370/1720)*100%);
        top: 50%;
        left: 85%;
        transform: translate(-50%, -50%);
    }

}

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

    .rec__ttl {
        margin: 0 auto 30px;
    }



    .rec__img01 {
        width: calc((535/1720)*100%);
        top: 50%;
        left: 17%;
    }

    .rec__img02 {
        width: calc((370/1720)*100%);
        top: 50%;
        left: 85%;
    }

}


/*============================
   infomation
============================*/
.infomation {
    padding: 200px 0 60px;
    background: url(../images/info_bg.png) no-repeat center top/cover;
    color: #fff;
}

.info__item {
    margin-bottom: 50px;
}

.info__ttl {

    & img {
        max-width: 112px;
        width: 60px;
        margin: 0 auto 1em;
    }

    .txt {
        font-size: 3rem;
    }
}

.info__img {
    width: fit-content;
    margin: 0 auto 1em;
}

.info__li {
    display: flex;
    margin-bottom: 1em;
    align-items: flex-start;

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

    & a {
        color: #fff;
    }
}

.info__th {
    white-space: nowrap;
    width: 7em;
    padding-left: 1.5em;
    position: relative;

    &::before {
        content: "";
        width: 6px;
        height: 6px;
        background-color: #fff;
        border-radius: 50%;
        position: absolute;

        left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }
}

.info__td {
    width: calc(100% - 7em);

}



@media screen and (min-width:768px) {
    .infomation {
        padding: 200px 0 60px;
    }

    .info__item {
        margin-bottom: 0;
        width: 48%;
    }

    .info__ttl {

        & img {
            max-width: 112px;
            width: 60px;
            margin: 0 auto 1em;
        }

        .txt {
            font-size: 3rem;
        }
    }

    .info__img {
        margin: 0 auto 1em;
    }

    .info__li {
        margin-bottom: 1em;

    }

    .info__th {
        width: 7em;
        padding-left: 1.5em;

        &::before {
            width: 6px;
            height: 6px;
        }
    }

    .info__td {
        width: calc(100% - 7em);

    }


}

@media screen and (min-width:1025px) {
    .infomation {
        padding: 260px 0 120px;
    }

    .info__items {
        max-width: 1200px;
        margin: 0 auto 60px;
    }

    .info__item {
        width: 48%;
        max-width: 500px;
    }

    .info__ttl {

        & img {
            max-width: 112px;
            width: fit-content;
            margin: 0 auto 1em;
        }

        .txt {
            font-size: 6.4rem;
        }
    }

    .info__img {
        margin: 0 auto 1.5em;
    }

    .info__li {
        margin-bottom: 1em;

    }

    .info__th {
        width: 7em;
        padding-left: 1.5em;

        &::before {
            width: 6px;
            height: 6px;
        }
    }

    .info__td {
        width: calc(100% - 7em);

    }

}

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

.news {
    padding: 60px 0;
}

.news__box {
    padding: 30px 5%;
    background: #fff;
    box-shadow: 0 0 20px rgba(183, 176, 160, .2);
    position: relative;

}


.news__ttl {
    margin-bottom: 1em;
}

.news__atc {

    & a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 1em 0;
        border-bottom: dashed 1.5px #c5c5c5;
    }
}

.news__date {
    white-space: nowrap;
    margin-bottom: .5em;
}


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


}

.news__btn {
    width: fit-content;
    display: block;
    text-decoration: underline;
    margin: 1.5em 0 0 auto;

    &:hover {
        color: #9a001c;
    }
}

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

    .news {
        padding: 80px 0;
    }

    .news__box {
        padding: 40px 5%;
        width: 100%;
    }

    .news__flex {
        width: 100%;
    }

    .news__ttl {
        margin-bottom: 1em;
        width: 80px;
        min-width: 80px;
        margin-bottom: 0;

        .txt {
            width: fit-content;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }
    }

    .news__atcwrap {
        width: calc(100% - 80px);

        .webgene-blog {
            width: 100%;
        }
    }

    .news__atc {
        width: 100%;

        & a {
            display: flex;
            align-items: center;
            padding: 1em 0;
            border-bottom: dashed 1.5px #c5c5c5;
        }
    }

    .news__date {
        margin-bottom: 0;
        white-space: nowrap;
        width: 100px;
    }


    .news__atc--ttl {
        width: calc(100% - 100px);
        max-width: 100%;
    }

    .news__btn {
        margin: 1.5em 0 0 auto;

    }
}

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

    .news {
        padding: 120px 0;
    }

    .news__box {
        padding: 50px 5%;
        width: 100%;
    }

    .news__flex {
        width: 100%;
    }

    .news__ttl {
        width: 15%;
        min-width: auto;
    }

    .news__atcwrap {
        width: 85%;

    }

    .news__atc {

        & a {
            border-bottom: dashed 1.5px #c5c5c5;
        }
    }

    .news__date {

        width: 140px;
    }


    .news__atc--ttl {
        width: calc(100% - 140px);
    }

    .news__btn {
        margin: 1.5em 0 0 auto;

    }
}

/* hd__pd */

@media screen and (min-width:1025px) {
    .hd__pd {
        padding-left: 160px;
    }
}