/* ================================
   ◆ ヒーローセクション（テキストのみ）
================================ */
.hero-section {
  background-color: #f7f5f2; /* 明るく柔らかいベージュ系 */
  padding: 60px 20px;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text .en-title {
  font-size: 18px;
  color: #999;
  margin-bottom: 20px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background-color: #333;
  margin: 0 auto 20px auto;
}

.hero-sub {
  font-size: 16px;
  color: #555;
}

/* ===================================
   ◆ 業務内容セクション（上品・高級感）
=================================== */

body {
  background-color: #f7f5f2; /* サイト全体の背景色 */
}

.business-section {
  padding: 50px 24px;
  margin: 60px auto;
  max-width: 1000px;
  border-radius: 12px;
  background-color: #ffffff; /* カード内背景を白に */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2ddd8; /* うっすらボーダー */
}

/* 中身横並び */
.business-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.business-inner.reverse {
  flex-direction: row-reverse;
}

/* テキスト部分 */
.business-text {
  flex: 1;
  color: #2e2e2e;
}

.business-text h3 span {
  font-size: 20px;
  font-weight: bold;
  padding-left: 10px;
  border-left: 4px solid #444;
  color: #1a1a1a;
  margin-top: -10px;
  min-width: 1000px;}

.business-text p {
  margin-top: -10px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* 画像部分 */
.business-image {
  flex: 1;
  max-width: 460px;
}

.business-image img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}
/* ===== モバイル対応（768px以下）業務内容セクション ===== */
@media screen and (max-width: 768px) {
  .business-inner {
    flex-direction: column !important;
    align-items: center;
    text-align: left;
  }

  .business-text,
  .business-image {
    width: 100%;
    max-width: 100%;
  }

  .business-text {
    order: 1 !important;
    padding: 0 24px 20px 8px;
  }

  .business-image {
    order: 2 !important;
    text-align: center;
    margin-bottom: 20px;
  }

  .business-image img {
    width: 90%;
    height: auto;
    border-radius: 10px;
  }

  .image-1 img { margin-left: -27px; }
  .image-2 img { margin-left: -27px; }
  .image-3 img { margin-left: -27px; }


  /* PCでreverseだったセクションもスマホでは順番戻す */
  .business-inner.reverse {
    flex-direction: column !important;
  }

  .business-inner.reverse .business-text {
    order: 1 !important;
  }

  .business-inner.reverse .business-image {
    order: 2 !important;
  }

    .card img {
  width: 100%;
  height: 200px; /* 統一したい高さ */
  object-fit: cover; /* 切り抜いて自然に見せる */
  border-radius: 8px;
}
.card p {
  word-break: keep-all;   /* 単語の途中で改行しない */
  line-break: strict;     /* 日本語でも自然に改行するように */
}
.card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

}
