@charset "utf-8";

/**********************************************/
/*トップページ*/
/**********************************************/

/*動画*/
/****************************/
#main-theme {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px - 50px);  /*JSで計算*/
    max-height: calc(100vh - 80px - 50px);
    margin: 0 auto;
    padding: 0;    
    overflow: hidden;
}
.movibox {
    width: 100%;
    margin: 0 auto;
    height: 100%;
}
/*
.movibox video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
*/
.movibox .multiple-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index:-1; /*フィルタリングするため*/
    margin:0;
    padding:0;
    opacity:0;
}
.movibox .multiple-item .slick-prev,
.movibox .multiple-item .slick-next {
    display:none;
}
.movibox .multiple-item .slick-prev:before,
.movibox .multiple-item .slick-next:before {
    display:none;
}

/*スライダー調整*/
.movibox .multiple-item li img {
    /* トリミング */
    /*object-fit: scale-down;*/
    /*object-fit: contain;*/
    object-fit: cover;
    width:100%;
    display: block;
    margin: 0 auto;
}

/*リード枠*/
#vision {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color:#fff;
}

.theme .symbol {
    margin-top: 20px;
}
.theme .symbol img {
    max-width:220px;
    margin-left: -20px;
}
.theme .read {
    font-size: 4.5vh;
    font-family: serif;
    font-weight: bold;
    color:#fff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px #2C5163;
}
.theme .text {
    margin: 0px;
    font-size: 2vh;
    text-shadow: 1px 1px 3px #2C5163;
}

/* アニメーション */
.theme {   
  -webkit-animation: seconds 1.0s forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-delay: 1s;
  animation: seconds 1.0s forwards;
  animation-iteration-count: 1;
  animation-delay: 1s;
  opacity: 0;
}

@-webkit-keyframes seconds  {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes seconds {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*見出し*/
.service-ttl {
    margin: 80px 0;
    font-size: 2.0rem;
}
.service-ttl::before {
    bottom: -25px;
}
.service-ttl span {
    margin-top: 30px;
    font-size: 1.2rem;
}

/*コンテンツ*/
.business {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.business .item {
    width: calc((100% / 3) - 40px);
    margin: 0 20px 50px 20px;
}
.business .item h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}
.business .item p {
    margin: 0;
    line-height: 140%;
}

.business .item .item-img {
    margin-bottom: 15px;
}
.business .item .item-img img {
    display: block;
    width: 100%;
}

.business .item .tag {
    font-size: 0.8rem;
    line-height: 100%;
    margin-bottom: 15px;
}
.business .item .tag span {
    padding: 2px 10px;
    border-radius: 3px;
    color:#fff;
}

.business .item .tag .sys {
    background-color: #1ca1aa;
}
.business .item .tag .outs {
    background-color: #f57545;
}

.link {
    margin: 20px 0;
    text-align: center;
}



/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 780px) {

    .theme .read {
        font-size: 4.5vw;
    }
    .theme .text {
        font-size: 1.6vh;
    }

    .service-ttl {
        margin: 60px 0;
        font-size: 1.6rem;
    }
    .business .item {
        width: calc((100% / 2) - 20px);
        margin: 0 10px 50px 10px;
    }
}
@media screen and (max-width: 580px) {

    .theme .text {
        display: none;
    }
    .theme .symbol img {
        max-width:180px;
        margin-left: -20px;
    }

    #sp-topmess {
        text-align: center;
        margin-bottom: 40px;
    }
    #sp-topmess br {
        display: none;
    }

    .service-ttl {
        margin: 60px 0 50px;
        font-size: 1.4rem;
        line-height: 140%;
    }
    .service-ttl::before {
        bottom: -15px;
    }
    .service-ttl span {
        margin-top: 20px;
        font-size: 1.0rem;
    }
}
@media screen and (max-width: 380px) {

    .service-ttl {
        margin: 30px 0 40px;
        font-size: 1.2rem;
    }
    .service-ttl::before {
        bottom: -10px;
    }
    .service-ttl span {
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .business .item {
        width: 100%;
        margin: 0 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content:flex-start;
        align-items: self-start;
        border-bottom: 1px #ddd solid;
        padding-bottom: 10px;
    }
    .business .item .item-img {
        width: 80px;
        margin-right: 10px;
        margin-bottom: 0;
    }
    .business .item .item-img img {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }
    .business .item .item-txt {
        width: calc(100% - 90px);
    }
    .business .item h2 {
        margin: 0 0 5px;
        font-size: 1.0rem;
    }
    .business .item p {
        font-size: 0.9rem;
        line-height: 120%;
    }
    .business .item .tag {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    .business .item .tag span {
        padding: 1px 8px;
    }
}
