@charset "utf-8";

/* 事業内容ページ専用：2カラム本文（画像左・テキスト右）。ヘッダー/パンくず/バナー/Contact/Footerは共通 */

/* ========== 本文：2カラム（画像左・テキスト右） ========== */
.service-main {
  padding: 60px 0px 100px;
  background: #fff;
}
.service-main .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.service-main__body {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.service-main__img {
  flex: 0 0 42%;
  max-width: 420px;
}
.service-main__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.service-main__text {
  flex: 1;
  min-width: 0;
}
.service-main__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0073a8;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0073a8;
}
.service-main__body p {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin: 0 0 20px;
}
.service-main__body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 834px) {
  .service-main {
    padding: 30px 0px 40px;
  }
  .service-main__body {
    flex-direction: column;
    gap: 32px;
  }
  .service-main__img {
    flex: none;
    max-width: 100%;
  }
  .service-main__ttl {
    font-size: 2rem;
  }
  .service-main__body p {
    font-size: 1.4rem;
  }
}
