@charset "utf-8";
/*スライド*/
.swiper {
    aspect-ratio: 7/5;
    margin-bottom: 7%;
    max-width: 980px;
}

.swiper-slide img.slide-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.swiper-slide img.slide-logo {
    height: auto;
    width: 60px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}

.fv-text {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
    height: auto;
    width: 45%;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -40%);
    
    animation-name: fade-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 1s;
    animation-fill-mode:forwards;
}

@keyframes fade-in {
    0% {opacity: 0; margin-top: -20px;}
    100% {opacity: 1; margin-top: 0;}
}

@media only screen and (min-width: 768px) {
    .swiper {
        aspect-ratio: 16/9;
        margin-bottom: 90px;
    }
    .fv-text {
        width: 30%;
    }
}

/*企業理念*/
.home_title {
    margin: 0 0 15px;
    text-align: center;
}
.home_title img {
    max-width: 90%;
}

.home_comment {
    font-size: 14px;
    line-height: 1.75;
    margin: 0 auto 80px auto;
}
.home_info {
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .home_comment {
        width: 835px;
        font-size: 17px;
        line-height: 1.7;
    }
    .home_info {
        text-align: center;
        margin: 50px 0 90px 0;
    }
}

/*事業内容*/
.contents-lineup {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin: 30px auto;
    max-width: 920px;
}

.contents-lineup li {
    flex: 0 1 100%;
    line-height: 1.75;
}
.contents-lineup li img {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .08);
    height: auto;
    width: 100%;
}

.contents-lineup li a:hover {
    opacity: 0.9;
}

.contents-lineup-text {
    margin-top: 1em;
}
@media only screen and (min-width: 768px) {
    .contents-lineup {
        flex-wrap: nowrap;
    }
    .contents-lineup li {
        flex: 0 1 50%;
    }
}