/**
 * 事業紹介モーダル
 * body { text-align: center } より後に読み込み、index.html 直開きでも左詰めを確実にする
 */
.service-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
  background: rgba(49, 79, 106, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-popup-overlay.is-open {
  display: flex;
  opacity: 1;
}
.service-popup {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: min(85vh, 640px);
  overflow: auto;
  padding: 28px 28px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  font-family: "Noto Sans JP", "Shippori Gothic", sans-serif;
  text-align: left;
}
.service-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(49, 79, 106, 0.08);
  color: #314f6a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-popup__close:hover {
  background: rgba(49, 79, 106, 0.16);
}
.service-popup__title {
  margin: 0 40px 16px 0;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  color: #314f6a;
  letter-spacing: 0.04em;
  text-align: left;
}
.service-popup__body {
  font-size: 15px;
  line-height: 1.85;
  color: #404044;
  text-align: left;
}
.service-popup__body p {
  margin: 0 0 1em;
  text-align: left;
}
.service-popup__body p:last-child {
  margin-bottom: 0;
}
.service-popup__list {
  margin: 1em 0 0;
  padding: 0 0 0 1.25em;
  list-style: disc;
  list-style-position: outside;
  text-align: left;
}
.service-popup__list li {
  margin-bottom: 0.35em;
  text-align: left;
}
