@charset "UTF-8";

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: fadeIn 2s ease-in forwards;
}

.main-visual-box{
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: auto;
    overflow: hidden;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-visual-box .line-box{
    position: absolute;
    width: 80%;
    top: 0;
    right: -10%;
    height: 100%;
    z-index: 2;
}

.main-visual-box .line {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide-txt-box {
    position: absolute;
    top: 70%;
    width: auto;
    height: auto;
    margin: -100px 0 0;
    padding: 30px 20px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.8);
    color: #231815;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    left: -300px;
    opacity: 0;
    z-index: 3;
    font-size: 12px; font-size: 1.2rem;
    font-weight: 500;
}

.slide-txt-box .flex-box{
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 18px; font-size: 1.8rem;
    font-weight: 700;
}

.slide-txt-box .flex-box img{
    position: relative;
    top: -2px;
    margin: 0 5px;
    width: 24px;
    height: 24px;
}

.slide-txt-box .main-copy{
    line-height: 1.3;
    font-size: 24px; font-size: 2.4rem;
    font-weight: 900;
}

.box-content {
    opacity: 0;
}

#philosophy{
    position: relative;
    overflow: hidden;
    padding: 40px 0 0;
    /*background: url(../images/pc/bg_geo.jpg) no-repeat center center;
    background-size: cover;*/
}

#philosophy .line-box{
    position: absolute;
    width: 120%;
    left: -10%;
    height: 100%;
}

#philosophy .line {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* line1は最初からアニメーションするのでそのまま */
#line1 {
    clip-path: inset(0 100% 0 0);
    animation: slideFromLeft 3s forwards;
}

/* line2とline3は初期状態で停止しておく */
#line2 {
    clip-path: inset(0 100% 0 0); /* 左からスライド */
}

#line3 {
    clip-path: inset(0 0 0 100%); /* 右からスライド */
}

/* スクロール時に付けるアニメーションクラス */
.animate-from-left {
    animation: slideFromLeft 3s ease-out forwards;
}

.animate-from-right {
    animation: slideFromRight 3s ease-out forwards;
}

/* アニメーション定義 */
@keyframes slideFromLeft {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes slideFromRight {
    0% {
        clip-path: inset(0 0 0 100%);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

#philosophy .wrapper{
    position: relative;
    z-index: 2;
}

#philosophy .hx-philosophy{
    margin: 0 0 40px;
    font-size: 21px; font-size: 2.1rem;
    font-weight: 700;
}

#philosophy .hx-philosophy span{
    display: block;
    font-size: 16px; font-size: 1.6rem;
}

#philosophy .inner{
    margin: 0 16px;
    padding: 20px;
    background: rgba(255,255,255,0.7);
}

#philosophy .inner .hx-philosophy-sub{
    margin: 0 0 24px;
    font-size: 18px; font-size: 1.8rem;
    font-weight: 700;
}

#philosophy .inner p{
    margin: 0 0 40px;
    font-size: 14px; font-size: 1.4rem;
}

#philosophy .inner .btn-box{
    margin: 0 auto 20px;
}

.hx-top-ttl{
    margin: 0 0 30px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 25px; font-size:2.5rem;
    text-align: center;
}

.hx-top-ttl span{
    display: block;
    margin: -10px 0 0;
    font-weight: 500;
    font-size: 18px; font-size: 1.8rem;
}

.ttl-txt{
    font-size: 14px; font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}

#service{
    padding: 40px 0 0;
}

#service .img-box{
    position: relative;
    margin: 40px 0;
}

#service .img-box img{
    display: block;
}

#service .img-box .ctr-box{
    position: relative;
    width: 49%;
    margin: 0 auto;
    text-align: center;
}

#service .img-box .ctr-box img:last-of-type{
    position: absolute;
    width: 20%;
    bottom: -10%;
    right: -5%;
}

#service .img-box img.download{
    position: absolute;
    left: 0;
    width: 20%;
    top: 25%;
}

#service .img-box img.user{
    position: absolute;
    right: 0;
    width: 20%;
    top: 25%;
}

.li-top-service li{
    margin: 0 0 30px;
}

.li-top-service.col5{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.li-top-service.col5 li{
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.li-top-service li .inner{
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    box-sizing: border-box;
    background: #fff;
}

.li-top-service li a::before{
    content: attr(data-hover);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    padding: 0 20px;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-size: 18px; font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    white-space: pre;
    z-index: 4;
}

.li-top-service li a::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #002d00;
    opacity: 0;
    transition: opacity 0.3s;
}

.li-top-service li a:hover::before{
    opacity: 1;
}


.li-top-service li a:hover::after{
    opacity: 0.6;
}

.li-top-service li a{
    display: block;
    position: relative;
    height: 100%;
    padding: 0 10px 20px;
    box-sizing: border-box;
    text-decoration: none;
    z-index: 3;
}

.li-top-service li .patent{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #2e6b36;
    font-size: 12px; font-size: 1.2rem;
}

.li-top-service li .ico-new{
    position: absolute;
    display: block;
    top: -20px;
    right: -10px;
    width: 34px;
    height: 34px;
}

.li-top-service li .ico-service{
    display: block;
    margin: 0 auto;
}

.li-top-service.col5 li .ico-service{
    max-width: 58px;
    padding: 20px 0;
}

.li-top-service li dt{
    line-height: 1;
    margin: 0 0 20px;
    font-size: 18px; font-size: 1.8rem;
    color: #323232;
    font-weight: 700;
    text-align: center;
}

.li-top-service.col5 li dt{
    line-height: 1.4;
    margin: 0 0 10px;
    min-height: 45px;
}

.li-top-service li dd{
    line-height: 1.5;
    font-size: 14px; font-size: 1.4rem;
    font-weight: 500;
    color: #2e6b36;
}

.li-top-service li dd span{
    display: block;
    margin: 8px 0 0;
    color: #323232;
    font-weight: 400;
    font-size: 13px; font-size: 1.3rem;
}

.li-top-service li img{
    z-index: 1;
}

#achievements{
    padding: 75px 0 0;
    /*background: url(../images/pc/bg_achievements.jpg) no-repeat center center;
    background-size: cover;*/
}

#achievements .inner{
    margin: 30px 0 0;
    padding: 20px;
    background: rgba(255,255,255, 0.85);
}

.li-achievements li{
    position: relative;
    margin: 0 0 40px;
}

.li-achievements li .ico-interview{
    position: absolute;
    display: block;
    top: -20px;
    right: 0;
}

.li-achievements li .ico-interview img{
    width: 40px;
    height: 40px;
}

.li-achievements li .c-logo{
    display: flex;
    align-items: center;
    height: 77px;
    margin: 0 auto 20px;
}

.li-achievements li .c-logo img{
    display: block;
    margin: 0 auto;
    width: auto;
}

.li-achievements li:first-child .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(2) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(3) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(4) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(5) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(6) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(7) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(8) .c-logo img{
    max-height: 100%;
}
.li-achievements li:nth-child(9) .c-logo img{
    max-height: 100%;
}

.li-achievements li .c-name{
    margin: 0 auto 20px;
    font-size: 14px; font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.li-achievements li .li-tag li{
    display: inline-block;
    width: auto;
    line-height: 1;
    margin: 0 3px 0 0;
    padding: 2px 8px;
    border: 1px solid #1d6b36;
    border-radius: 8px;
    color: #1d6b36;
    font-size: 11px; font-size: 1.1rem;
    text-align: center;
}

.li-achievements li .li-tag li:last-child{
    margin: 0;
}

#news{
    padding: 40px 0 0;
}

#blog{
    padding: 40px 0 0;
    overflow: hidden;
}

.slick-blog {
    display: flex;
    align-items: stretch;
    margin: 50px 0 40px;
}

.slick-blog li{
    margin: 20px;
}

.slick-blog li .inner{
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background: #fff;
}

.slick-blog li .inner a{
    text-decoration: none;
    color: #323232;
}

.slick-blog li .inner .ico-new{
    position: absolute;
    display: block;
    top: -20px;
    left: -5px;
    width: 40px;
    height: 40px;
}

.slick-blog li .inner img{
    display: block;
    margin: 0 0 20px;
    border-radius: 8px 8px 0 0;
}

.slick-blog li .inner .ttl{
    min-height: 67px;
    margin: 0 0 10px;
    padding: 0 20px;
    font-size: 14px; font-size: 1.4rem;
    font-weight: 500;
}

.slick-blog li .inner .date{
    padding: 0 20px 20px;
    font-size: 11px; font-size: 1.1rem;
    font-weight: 400;
}

.slick-arrow:before{
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
}





.fixed-btn-box{
    display: none;
}


.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%; /* 余分な高さを確保して動きを出す */
  z-index: -1;
  background-size: cover;
  background-position: center;
}

#service .parallax-background,
#blog .parallax-background {
    background: #fff;
}

#philosophy .parallax-background {
    background: url('../images/pc/bg_geo.jpg') no-repeat center center;
    background-size: cover;
}

#achievements .parallax-background {
  background: url('../images/pc/bg_achievements.jpg') no-repeat center center;
  background-size: cover;
}


.item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.item.show {
     opacity: 1;
     transform: translateY(0);
}


#top .flex-box{
    margin: 0 0 60px;
}

#top .flex-box .img-box{
    margin: 0 0 40px;
}

#top .flex-box .txt-box{
    margin: 0 0 40px;
}

#top .txt-box p{
    margin: 0 0 20px;
}

#philosophy.parallax-bg {
    height: 100%;
    box-sizing: border-box;
  background-image: url(../images/pc/bg_geo.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#achievements.parallax-bg {
    height: 100%;
    box-sizing: border-box;
    background-image: url(../images/pc/bg_achievements.jpg);
    background-position: 40% bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

#service.parallax-bg {
    height: 100%;
    box-sizing: border-box;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*スクロールするコンテンツ*/
.scrollbox {
    height: 100%;
    box-sizing: border-box;
}

.hx-news{
    margin: 0 0 40px;
    font-weight: bold;
    font-size: 24px; font-size: 2.4rem;
}

.li-news{
    margin: 0 0 60px;
}

.li-news dt{
    line-height: 1;
    margin: 0 0 16px;
    font-size: 12px; font-size: 1.2rem;
}

.li-news dd{
    margin: 0 0 20px;
    padding: 0 0 20px;
    /*border-bottom: 1px solid #E7E7E7;*/
}

.li-news dd a{
    color: #343434;
}

.li-news li{
    opacity: 1;
}
.li-news li.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.li-news li.is-hidden dt,
.li-news li.is-hidden dd{
    margin: 0;
    padding: 0;
}

.news-btn.btn-box{
    position: relative;
    z-index: 10;
    margin: -40px 0 0;
}

.news-btn.is-btn-hidden{
  display: none;
}

.news-btn.btn-box .btn-green-3gradient:hover{
    opacity: 1;
}

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


    .slide-txt-box {
        top: 50%;
        margin: -210px 0 0;
        padding: 60px;
        font-size: 18px;
        left: -600px;
        font-size: 25px; font-size: 2.5rem;
    }

    .slide-txt-box .flex-box{
        margin: 20px 0;
        font-size: 43px; font-size: 4.3rem;
    }

    .slide-txt-box .flex-box img{
        width: 55px;
        height: 55px;
    }

    .slide-txt-box .main-copy{
        font-size: 68px; font-size: 6.8rem;
    }

    .slideshow-container {
        height: 950px;
    }

    #philosophy{
        padding: 120px 0 0;
    }

    #philosophy .hx-philosophy{
        margin: 0 0 100px;
        font-size: 51px; font-size: 5.1rem;
        text-align: center;
    }

    #philosophy .hx-philosophy span{
        display: block;
        font-size: 36px; font-size: 3.6rem;
    }

    #philosophy .inner{
        margin: 0;
        padding: 100px 170px 40px;
    }

    #philosophy .inner .hx-philosophy-sub{
        margin: 0 0 50px;
        font-size: 24px; font-size: 2.4rem;
    }

    #philosophy .inner p{
        font-size: 17px; font-size: 1.7rem;
    }

    #philosophy .inner .btn-box{
        margin: 0 auto 60px;
    }

    .hx-top-ttl{
        margin: 0 0 30px;
        font-size: 50px; font-size: 5.0rem;
    }

    .hx-top-ttl span{
        margin: -20px 0 0;
        font-size: 40px; font-size: 4.0rem;
    }

    .ttl-txt{
        font-size: 20px; font-size: 2.0rem;
    }

    #service{
        padding: 120px 0 0;
    }

    #service .img-box{
        position: relative;
        margin: 80px 0 120px;
    }

    #service .img-box img{
        display: block;
    }

    #service .img-box .ctr-box{
        position: relative;
        width: 48%;
        margin: 0 auto;
        text-align: center;
    }

    #service .img-box .ctr-box img:last-of-type{
        position: absolute;
        width: 20%;
        bottom: -10%;
        right: -5%;
    }


    .service-box{
        width: 1090px;
        margin: 0 auto;
    }

    .li-top-service.col3{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 -30px;
    }

    .li-top-service.col4{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 -20px;
    }

    .li-top-service.col3 li{
        width: 33.3%;
        margin: 0 0 60px;
        padding: 0 30px;
        box-sizing: border-box;
    }

    .li-top-service.col4 li{
        width: 25%;
        margin: 0 0 60px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .li-top-service.col5{
        margin: 0 -20px;
    }

    .li-top-service.col5 li{
        width: 20%;
        margin: 0 0 56px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .li-top-service li .inner{
        height: 100%;
    }

    .li-top-service.col3 li a{
        padding: 0 40px 30px;
    }

    .li-top-service.col5 li a{
        padding: 0 20px 20px;
    }

    .li-top-service li .patent{
        top: 10px;
        right: 10px;
        font-size: 13px; font-size: 1.3rem;
    }

    .li-top-service li .ico-new{
        top: -58px;
        right: -10px;
        width: 67px;
        height: 67px;
    }

    .li-top-service li .ico-service{
        margin: 0 auto;
    }

    .li-top-service.col5 li .ico-service{
        padding: 30px 0;
    }

    #achievements{
        padding: 150px 0 0;
    }

    #achievements .inner{
        margin: 70px 0 0;
        padding: 70px 60px 0;
    }

    .li-achievements{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -45px;
    }

    .li-achievements li{
        width: 33.3%;
        margin: 0 0 80px;
        padding: 0 45px;
        box-sizing: border-box;
    }

    .li-achievements li .ico-interview{
        top: -40px;
    }

    .li-achievements li .ico-interview img{
        width: 67px;
        height: 67px;
    }

    .li-achievements li .c-logo{
        height: 87px;
    }

    .li-achievements li:first-child .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(2) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(3) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(4) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(5) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(6) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(7) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(8) .c-logo img{
        max-height: 100%;
    }
    .li-achievements li:nth-child(9) .c-logo img{
        max-height: 100%;
    }

    #news{
        padding: 120px 0 0;
    }


    #blog{
        padding: 120px 0 0;
    }

    .slick-blog {
        display: flex;
        align-items: stretch;
        margin: 100px 0 90px;
    }

    .slick-blog li{
        margin: 20px;
        padding-top: 20px;
    }

    .slick-blog li .inner .ico-new{
        position: absolute;
        display: block;
        top: -37px;
        left: -5px;
        width: 73px;
        height: 73px;
    }

    .slick-blog li .inner .ttl{
        padding: 0 30px;
    }

    .slick-blog li .inner .date{
        padding: 0 30px 20px;
    }

    .slick-prev,
    .slick-next
    {
        width: 64px;
        height: 64px;
    }

    .fixed-btn-box{
        display: block;
        position:fixed;
        line-height: 1;
        right: 0;
        bottom: 100px;
        z-index: 3;
    }

    .fixed-btn-box a{
        display: block;
        height: 70px;
        line-height: 70px;
        padding: 0 30px;
        border-radius:10px 0 0 10px;
        box-sizing: border-box;
        text-decoration: none;
        text-align: center;
        font-size: 16px; font-size: 1.6rem;
        font-weight: 500;
        color: #fff;
    }

    .item {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.5s, transform 0.5s;
    }

    .item.show {
         opacity: 1;
         transform: translateY(0);
    }





    #top .flex-box{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 0 80px;
    }

    #top .flex-box.top01 .img-box{
        margin: 0;
        max-width: 600px;
    }

    #top .flex-box.top01 .txt-box{
        margin: 40px 0 0 16px;
    }

    #top .flex-box.top02{
        margin: 0;
    }

    #top .flex-box.top02 .img-box{
        max-width: 500px;
        margin: 0 0 0 80px;
    }

    #top .txt-box p{
        margin: 0 0 30px;
    }

    #top .txt-box.top02{
        margin: 0 0 80px;
    }

    .hx-news{
        font-size: 30px; font-size: 3.0rem;
        text-align: center;
    }

    .li-news{
        max-width: 1152px;
        margin: 0 auto 40px;
    }

    .li-news li{
        padding: 20px 0;
        /*border-bottom: 1px solid #e7e7e7;*/
    }

    .li-news li dl{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        align-items: stretch;
    }

    .li-news li dt{
        width: 120px;
        margin: 2px 0 0;
        font-size: 14px; font-size: 1.4rem;
    }

    .li-news li dd{
        margin: 0;
        padding: 0;
        border: none;
    }

    .li-news dd a{
        text-decoration: none;
    }

    .li-news dd a:hover{
        text-decoration: underline;
    }

    .news-btn.btn-box{
        margin: 0;
    }

    .news-btn.btn-box .btn-green-3gradient:hover{
        opacity: 0.5;
    }

    #philosophy.parallax-bg,
    #achievements.parallax-bg,
    #service.parallax-bg  {
        background-attachment: fixed;
    }

    #achievements.parallax-bg{
        background-position: center;
    }

}

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

    #top .txt-box.top02{
        width: 60%;
    }

}

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



}