/* =========================================================
   事業セクション
   ========================================================= */

.jigyou-section {
  padding: 60px 0;
}

.jigyou-list__inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}


/* =========================================================
   ブロック
   ========================================================= */

.jigyou-block + .jigyou-block {
  margin-top: 60px;
}

.jigyou-heading {
  font-size: 28px;
  margin-bottom: 24px;
  border-left: 4px solid #2f6b5f;
  padding-left: 12px;
}


/* =========================================================
   リスト
   ========================================================= */

.jigyou-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jigyou-item {
  padding: 20px 0;
  border-bottom: 1px solid #e3e3e3;
}

.jigyou-item__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jigyou-item__title {
  font-size: 18px;
  font-weight: 600;
}

.jigyou-item__desc {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}


/* =========================================================
   詳細ボタン
   ========================================================= */

.jigyou-btn {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #2f6b5f;
  border-radius: 20px;
  color: #2f6b5f;
  text-decoration: none;
  transition: 0.2s;
}

.jigyou-btn:hover {
  background: #2f6b5f;
  color: #fff;
}


/* =========================================================
   注釈
   ========================================================= */

.jigyou-note {
  margin-top: 60px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.jigyou-note__title {
  margin-top: 20px;
  font-weight: 600;
}

.jigyou-note__list {
  margin-top: 8px;
  padding-left: 16px;
}


/* =========================================================
   事業概要ページ アコーディオン
   ========================================================= */

.jigyou-item--accordion .jigyou-item__title-wrap {
  cursor: pointer;
}

.jigyou-accordion-icon {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.jigyou-item.is-open .jigyou-accordion-icon {
  transform: rotate(180deg);
}

.jigyou-accordion-content {
  display: none;
  margin-top: 12px;
}

.jigyou-item.is-open .jigyou-accordion-content {
  display: block;
}

.jigyou-sublist {
  margin: 0;
  padding-left: 1.2em;
}

.jigyou-sublist li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}

.jigyou-sublist li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   アコーディオン内サブタイトル
   ========================================================= */

.jigyou-subtitle {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}