@charset "utf-8";
/* ======================================================
　業務内容
====================================================== */
.service-list {
  margin-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .10);
}
.service-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .10);
}
.service-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.service-item__title {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Sans JP", serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  position: relative;
  padding-left: 12px;
}
.service-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1.1em;
  border-radius: 999px;
  background: var(--main-color);
  opacity: .9;
}
/* =========================メイン画像========================= */
.service-item__media {
  margin: 0 0 16px;
}
.service-item__media img {
  width: 30%;
  height: auto;
  display: block;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .service-item__media img {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .service-item__media img {
    width: 100%;
  }
}

/* ===== 施工事例を見る：主役CTA（ピル型） ===== */
.works-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--base-color); /* 黄色 */
  color: var(--white);
  font-size: var(--font-xs);
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.works-link::after {
  content: "▶";
  font-size: .85em;
  transform: translateY(1px);
}
.works-link::before {
  content: none;
} /* 下線を無効化 */
.works-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, .12);
  filter: brightness(.98);
}
.works-link:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .65);
  outline-offset: 3px;
}
/* 冒頭（常に表示する文章） */
.service-item__lead {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
}
/* 追加情報（アコーディオン） */
.service-more {
  margin-top: 12px;
  background: rgba(0, 0, 0, .02);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  overflow: hidden;
}
/* ===== 続きを読む：補助（控えめリンク） ===== */
.service-more > summary {
  background: transparent;
  border: none;
  padding: 10px 0 0;
  font-weight: 800;
  color: rgba(0, 0, 0, .75);
}
.service-more > summary .label {
  padding-bottom: 0;
}
.service-more > summary .label::before {
  content: none; /* 黄色下線は消す */
}
.service-more > summary:hover {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.service-more {
  background: rgba(0, 0, 0, .02);
  border: 1px solid rgba(0, 0, 0, .08);
}
.service-more > summary {
  padding: 12px 14px;
  background: #fff;
}
.service-more__body {
  padding: 12px 14px 14px;
  line-height: 1.9;
  font-size: 15px;
}
.service-more__body p {
  margin: 0 0 10px;
}
.service-more__body h4 {
  color: var(--main-color);
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: 900;
}
.service-more__body ul {
  margin: 0;
  padding-left: 1.2em;
}
.service-more__body li {
  margin: 0 0 6px;
}
@media (max-width: 520px) {
  .service-item__title {
    font-size: 18px;
  }
  .service-item__lead, .service-more__body {
    font-size: 14.5px;
  }
}