@charset "UTF-8";

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

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

    100% {
        opacity: 1;
    }
}


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

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

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

.kv__swiper-area {
    position: relative;
    z-index: 99;
}

.kv__img {

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


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

.kv__copy {
    position: absolute;
    max-width: 1190px;
    width: 90%;
    z-index: 99;
    transform: translate(-50%, -50%);
    top: 90%;
    left: 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: 50%;
    bottom: 5%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transform: translate(-50%);
}


.kv .swiper-pagination-bullet {
    display: block;
    width: 15px;
    height: 1px;
    z-index: 9;
    background: #fff;
    border-radius: 50% !important;
    margin: 0 10px !important;
    opacity: 1;

}

.kv .swiper-pagination-bullet-active {
    opacity: 1;
    background: #19420d;
}




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

    .kv__copy {
        max-width: 1190px;
        width: calc((1190 / 1920)* 100%);
        top: 90%;
        left: 50%;
    }

}



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

    .kv__copy {
        width: calc((1190 / 1920)* 100%);
        top: 90%;
        left: 50%;
    }
}





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

.news {
    padding: 60px 0;
}

.news__ttlwrap {
    display: flex;
    align-items: flex-end;
}

.news__ttl {
    .txt {
        margin-top: .5em;
    }
}

.news__atc {


    & a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 1em 0;
        border-bottom: solid 1px #cecece;
    }
}

.news__img {
    width: 100px;
}

.news__txtwarp {
    width: calc(100% - 100px);
    padding-left: 5%;
}

.news__date {
    padding-left: 1em;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #74b88d;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }
}

.news__atc--ttl {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;

}



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

    .news {
        padding: 80px 0;
    }

    .news__atcwrap {
        .webgene-blog {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
    }

    .news__atc {
        width: 48%;

        & a {
            padding: 1.5em 0;
        }
    }

    .news__img {
        width: 120px;
    }

    .news__txtwarp {
        width: calc(100% - 120px);
        padding-left: 5%;
    }

    .news__date {
        padding-left: 1em;

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

}

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

    .news__atc {
        width: 48%;

        & a {
            padding: 1.5em 0;
        }
    }

    .news__img {
        width: 140px;
    }

    .news__txtwarp {
        width: calc(100% - 140px);
        padding-left: 5%;
    }
}

/*============================
   commitment
============================*/
.comm__ttlwrap {
    padding: 60px 5%;
    background: url(../images/commit_bg.jpg) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm__ttl {
    max-width: 813px;
    max-width: 360px;
}

.comm__main {
    padding: 60px 0;
}

.comm__copy {
    font-size: 2rem;
    margin-bottom: 20px;
}

.comm__btn {
    margin-bottom: 10px;

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

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

    .comm__ttl {
        max-width: 813px;
        max-width: 460px;
    }

    .comm__main {
        padding: 80px 0;
    }

    .comm__copy {
        font-size: 3rem;
        margin: 0 5% 0 0;

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

    .comm__btn {
        margin: 5px 0;
        max-width: 48%;

        &:first-child {
            margin: 5px 4% 5px 0;
        }

        &:last-child {
            margin: 5px 0;
        }
    }

}

@media screen and (min-width:1025px) {
    .comm__ttlwrap {
        padding: 150px 1%;
    }

    .comm__ttl {
        max-width: 813px;
    }

    .comm__main {
        padding: 80px 0;
    }

    .comm__copy {
        font-size: 4.4rem;
        margin: 0 5% 0 0;

    }

    .comm__txt {
        line-height: 3;
    }

    .comm__btn {
        margin: 5px 0;
        max-width: 48%;

        &:first-child {
            margin: 5px 4% 5px 0;
        }

        &:last-child {
            margin: 5px 0;
        }
    }
}

/*============================
   style
============================*/
.style {
    padding: 60px 0 0;
    background: #f2f2f2;
}

.style__ttl {
    .txt {
        margin-top: .5em;
    }
}

.style__swiper {
    overflow: visible;
}

.style__img {
    max-width: 400px;
    width: 300px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(116, 184, 141, .7);
        top: 0;
        left: 0;
        transition: .3s;
    }
}

.style__img.swiper-slide-active {
    &::before {
        opacity: 0;
    }
}

.s-swiper-button-prev {
    position: absolute;
    margin: 0;
    width: 50px;
    height: 12px;
    left: calc(50% - 150px);
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.s-swiper-button-next {
    position: absolute;
    margin: 0;
    width: 50px;
    height: 12px;
    left: calc(50% + 150px);
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.s-swiper-button-prev::before {
    content: "";
    position: absolute;
    background: url(../images/sw_arw_prv.png) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.s-swiper-button-next::before {
    content: "";
    position: absolute;
    background: url(../images/sw_arw_next.png) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;

}

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


    .style__img {
        max-width: 400px;
        width: 300px;
        margin: 0 10px;
        border-radius: 10px;
    }

    .s-swiper-button-prev {
        margin: 0;
        width: 50px;
        height: 12px;
        left: calc(50% - 150px);
    }

    .s-swiper-button-next {
        width: 50px;
        height: 12px;
        left: calc(50% + 150px);
    }
}

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


    .style__img {
        max-width: 400px;
        width: 400px;
        margin: 0 15px;
        border-radius: 10px;
    }

    .s-swiper-button-prev {
        width: 70px;
        height: 22px;
        left: calc(50% - 200px);
    }

    .s-swiper-button-next {
        width: 70px;
        height: 22px;
        left: calc(50% + 200px);
    }
}


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

.menu__ttl {
    max-width: 424px;
    width: 200px;
    margin: 0 auto 40px;
}

.menu__txtwrap {
    margin-bottom: 30px;
}

.menu__h3 {
    width: fit-content;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 5em;
        height: 1px;
        background: #999797;
        top: 50%;
        right: -6em;
        transform: translate(0, -50%);
    }
}

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

    .menu__ttl {
        max-width: 424px;
        width: 300px;
        margin: 0 auto 50px;
    }

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

    .menu__img {
        width: 45%;
    }

    .menu__h3 {

        &::before {
            width: 5em;
            top: 50%;
            right: -6em;
        }
    }
}

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

    .menu__ttl {
        max-width: 424px;
        width: fit-content;
        margin: 0 auto 100px;
    }

    .menu__flex {
        max-width: 1080px;
        margin: 0 auto;
    }

    .menu__txtwrap {
        width: 48%;
    }

    .menu__img {
        width: 45%;
    }

    .menu__h3 {

        &::before {
            width: 8em;
            top: 50%;
            right: -9em;
        }
    }
}

/*============================
   staff
============================*/
.staff {
    padding: 60px 0 0;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 150px);
        background: url(../images/staff_bg.png) no-repeat center center/cover;
        top: 0;
        left: 0;
        z-index: -1;

    }
}

.staff__flex {
    display: flex;
    flex-direction: column-reverse;
}

.staff__txtwrap {
    margin-bottom: 30px;
}

.staff__ttl {
    .txt {
        margin-top: .5em;
    }
}

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

        &::before {
            height: calc(100% + 300px);
        }
    }

    .staff__flex {
        flex-direction: row;
    }

    .staff__img {
        width: 45%;
        max-width: 480px;
    }

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

}

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

        &::before {
            height: calc(100% + 500px);
        }
    }

    .staff__img {
        width: 45%;
    }

    .staff__txtwrap {
        width: 50%;
    }
}

/*============================
   access
============================*/
.access {
    padding: 60px 0;

    .g-map {
        width: 100%;

        & iframe {
            display: block;
            width: 100%;
            height: 220px;
        }
    }


}

.acc__box {
    padding: 30px 5%;
    background: #fff;
    border-radius: 10px;
}

.acc__ttl {
    max-width: 425px;
    max-width: 260px;
    margin: 0 auto 30px;
}

.acc__txtwrap {
    margin-bottom: 30px;
}

.acc__li {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #cecece;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 6em;
        height: 2px;
        background: #5dc613;
        left: 0;
        bottom: -1.5px;
    }
}

.acc__th {
    white-space: nowrap;
    width: 6em;
    padding: 1em;
    position: relative;

}

.acc__td {
    padding: 1em;
    width: calc(100% - 6em);
}

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

        .g-map {
            width: 48%;

            & iframe {
                height: 340px;
            }
        }
    }

    .acc__box {
        padding: 50px 5%;
        border-radius: 10px;
    }

    .acc__ttl {
        max-width: 425px;
        max-width: 320px;
        margin: 0 auto 30px;
    }

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

    .acc__li {

        &::before {
            width: 6em;
            height: 2px;
            bottom: -1.5px;
        }
    }

    .acc__th {
        width: 6em;
        padding: 1em;
    }

    .acc__td {
        padding: 1em;
        width: calc(100% - 6em);
    }
}

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

    .access {
        padding: 150px 0;

        .g-map {
            width: 48%;

            & iframe {
                height: 460px;
            }
        }

    }

    .acc__box {
        padding: 100px 5%;
        border-radius: 10px;
    }

    .acc__ttl {
        max-width: 425px;
        margin: 0 auto 60px;
    }

    .acc__txtwrap {
        width: 48%;
    }

    .acc__li {

        &::before {
            width: 6em;
            height: 2px;
            bottom: -1.5px;
        }
    }

    .acc__th {
        width: 6em;
        padding: 1em;
    }

    .acc__td {
        padding: 1em;
        width: calc(100% - 6em);
    }

}

/* hd__pd */

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