@charset "utf-8";
/*****************************************
*
* 事業内容
*
******************************************/


/*------------------------------------------*/
/* イントロテキスト
/*------------------------------------------*/

.service-intro {
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .service-intro {
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .service-intro br {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  .service-intro {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2.4;
  }
}


/*------------------------------------------*/
/* 業務内容
/*------------------------------------------*/


/*------------------------------------------*/
/* 業務システム
/*------------------------------------------*/

.service-operation__intro {
  position: relative;
}

/* 文字 --------------------------------*/
.service-operation__intro-copy {
  text-align: left;
  color: white;
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 2;
  position: absolute;
  top: 10px;
  left: 10px;
}

@media screen and (max-width: 767px) {
  .service-operation__intro-copy br {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .service-operation__intro-copy {
    font-size: 1rem;
    top: 20px;
    left: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .service-operation__intro-copy {
    font-size: 1.6rem;
    font-weight: 500;
    position: absolute;
    top: 40px;
    left: 40px;
  }
}

/* 画像 --------------------------------*/
.service-operation__intro-image {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/service/service_operation_main.jpg') no-repeat;
  background-size: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 11/5;
  width: 100%;
  height: auto;
}

