@charset "UTF-8";

 /* --------------
    main
-------------- */

/* carousel */
@keyframes scroll{
    from {
      transform: translateX(-100%);
    }
      to {
      transform: translateX(0%);
    }
    }
    .carousel__wrap {
      display: flex;
      overflow: hidden;
      gap: 12px;
    }
    .carousel__list {
      display: flex;
      list-style: none;
      gap: 12px;
    }
    .carousel__list__anime {
        animation : scroll 120s infinite linear;    
    }
    .carousel__items {
        width: calc(100vw / 1.3); 
      }
    .carousel__items img {
        width: 100%;
        height: auto;
    }
    @media screen and (min-width:769px) {
        .carousel__list {
            gap: 24px;
          }
        .carousel__items {
            width: calc(100vw / 3); 
            
          }
    }
            
    
/* Concept */
.concept {
    background-image:url(../img/background_top_sp.png);
    background-size: cover;
    height: 560vw;
    max-height: 2100px;
    min-height: 2100px;
    background-position: bottom;

}
.title__pcOurService {
    padding: 0 15% 90px;
}
.concept__txt {
    display: flex;
    text-align: center;
    flex-direction: column;
}
.concept__txtWrap {
    margin-top: 136px;
}
.concept__txtWrap:nth-child(1) {
    margin-top: 40px;
}
.concept__JpTxt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
}
.concept__EnTxt {
    color: var(--primarylightdark);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%;
    margin-top: 12px;
}
.concept__wrap {
    margin-top: 150px;
}
.concept__group {
    max-width: 210px;
    margin: 0 auto;
}
.concept__group__line {
    display: flex;
    gap: 16px;
    margin-top: 36px;
}
.concept__JpTxt__small {
    font-size: 1.4rem;
    line-height: 150%;
    text-align: center;
}
.extra__txt {
    margin-top: 54px;
    text-align: center;
}
.message__txt {
    margin-top: 150px;
}
@media screen and (min-width:769px) {
    .concept {
        background-image:url(../img/background_top.png);
        height: 177vw;
        min-height: 2400px;
        background-size: cover;
        background-position: bottom;
    }
    .concept__wrap {
        margin-top: 80px;
    }
    .concept__txt {
        margin-bottom: 180px;
    }
    .concept__group {
        max-width: 360px;
        margin: 0 auto;
    }
    .concept__group__line {
        gap: 28px;
        margin-top: 12px;
    }
    .concept__group__line:first-child {
        margin-top: 0;
    }
    .concept__JpTxt__pc {
        font-size: 2rem;
    }
    .concept__gJpTxt__pc {
        font-size: 2.8rem;
    }
    .concept__EnTxt {
        color: var(--primarylightdark);
        font-size: 1.6rem;
    }
    .concept__JpTxt__small {
        font-size: 1.6rem;
    }
    .extra__txt {
        margin-top: 24px;
    }
    .message__txt {
        margin-top: 68px;
    }
}

/* fade in */
.fadeIn {
    opacity: 0;
    transform: translateY(-10px);
}
.fadeIn.fadeInaddClass {
    opacity: 1;
    transition: 3s;
    transform: translateY(0);
}

/* our service */
.service__container {
    text-align: center;
}
.service__wrap {
    padding-bottom: 40px;
}
.service__img {
    width: 200px;
    margin: 0 auto;
}
.service__JpTxt {
    font-size: 1.6rem;
    font-weight: 400;
}
.service__EnTxt {
    color: var(--primarylightdark);
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 14px;
}
.service__wrapTxt {
    margin-top: 24px;
}
@media screen and (min-width:769px) {
    .ourService {
        margin-bottom: 40px;
    }
    .service__container { 
        display: flex;
        justify-content: space-between;
        margin: 0 28%;
    }
    .service__wrap {
        padding-bottom: 0;
    }
}

/* about */
.about__wrap {
    display: flex;
    margin-top: 22px;
    font-size: 1.4rem;
    font-weight: 400;
}
.about__wrap:first-child {
    margin-top: 0px;
}
.about__wrap dt {
    width: 30%;
}
.about__wrap dd {
    line-height: 150%;
}
.about dl {
    margin-left: 4%;
}
@media screen and (min-width:769px) {
    .about {
        margin-bottom: 180px;
    }
    .about__wrap {
        margin-top: 24px;
        font-size: 1.6rem;
      }
      .about__wrap:first-child {
        margin-top: 0px;
    }
    .about__wrap dt {
        width: 20%;
    }
    .about dl {
        margin-left: 34%;
    }
}