/* =========================================
  Services Detail
========================================= */
.services-detail {
  position: relative;
}

/* =========================================
  Service BG（1ブロック単位）
========================================= */
.service-bg {
	margin-top: 100px;
	padding: 0 0 40px;
	background: var(--color-bg-light);
	border-radius: 0 0 0 40px;
}

/* =========================================
  Service Item
========================================= */
.service-item {
	position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* 画像 */
.service-item__image {
	background: transparent;
	position: relative;
	z-index: 2;
	flex: 0 0 406px;
	max-width: 406px;
	margin-top: -36px;
}

.service-item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* テキスト */
.service-item__content {
	background: transparent;
	position: relative;
	z-index: 2;
	flex: 1;
	margin-top: -36px;
}

/* タイトル */
.service-item__title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-left: 26px;
}

/* タイトル左の線 */
.service-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 3px;
  background: var(--color-main);
  transform: translateY(-50%);
}

/* リスト */
.service-item__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-item__list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
	display: flex;
	align-items: center;
	gap: 16px;
}

/* ○マーク */
.service-item__list li::before {
  content: "";
	width: 10px;
	height: 10px;
  border: 2px solid var(--color-main);
  border-radius: 50%;
	margin-top: -3px;
}


/* =========================================
  License（資格一覧）
========================================= */
.license {
	padding: 0 0 80px;
}

.license-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  table-layout: fixed;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.license-table th,
.license-table td {
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
}

/* 左列 */
.license-table th {
  width: 180px;
  padding: 18px 14px;
  background: var(--color-bg-light);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-main);
  text-align: left;
  word-break: break-word;
}

/* 右列 */
.license-table td {
  padding: 18px 20px;
  background: var(--color-white);
  font-size: 14px;
  line-height: 1.9;
}

.license-table td br {
  line-height: 2;
}

/* =========================================
  Responsive
========================================= */
@media screen and (max-width: 768px) {
	/* Service */
  .service-bg:first-of-type {
    margin-top: 60px;
  }

  .service-item {
    flex-direction: column;
    gap: 20px;
  }

  .service-item__image {
    width: 100%;
    max-width: 100%;
		flex: 1;
  }

  .service-item__content {
		margin-top: 0;
  }

  .service-item__title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .service-item__list li {
    font-size: 14px;
  }

  /* License */
	.license {
    margin-top: 60px;
		padding: 0;
  }

  .license-table {
    margin-top: 24px;
  }

  .license-table th {
    width: 110px;
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.8;
  }

  .license-table td {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.8;
  }
}