@charset "utf-8";
/********************
common
********************/
.ml24 {
  margin-left: 24px;
}
.area-txt-content p {
  margin-bottom: 1rem;
}

/********************
reason  /fie030/det004/と同じパーツ 後ほど共通化
********************/
.p-reason__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.p-reason__list__item {
	padding: 1rem;
	border: solid 1px #aaa;
}
.p-reason__list__ttl {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 40px;
	margin-bottom: 0.75rem;
	padding-left: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: #204E48;
}
.p-reason__list__ttl::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 32px;
	height: 39px;
	background: url(/common/img/icon_medal_check.svg) no-repeat center center/contain;
	content: "";
}
.p-reason__list__txt {
	line-height: 2;
}
.p-reason__list__txt sup {
	font-size: 0.625rem;
}
@media screen and (min-width:769px) {
	.p-reason__list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem 0.625rem;
	}
	.p-reason__list__item {
		padding: 1.5rem;
		width: calc(100% / 2 - 5px);
	}
	.p-reason__list__ttl {
		min-height: 50px;
		margin-bottom: 1rem;
		padding-left: 3rem;
		font-size: 1.125rem;
	}
	.p-reason__list__ttl::before {
		width: 40px;
		height: 49px;
	}
}

/********************
弁護士リスト  /field/fie031/と同じパーツ 後ほど共通化
********************/
.p-team__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.p-team__list-item {
  position: relative;
  display: flex;
  height: 100px;
  text-decoration: none;
  line-height: 1;
}
.p-team__list-item::after {
  position: absolute;
  width: 14px;
  height: 12px;
  bottom: 8px;
  right: 8px;
  background: url(/common/img/icon_blank.svg) no-repeat 0 0/contain;
  content: "";
}
.p-team__list__img-wrapper {
  width: 100px;
}
.p-team__list__img-wrapper img {
  width: 100px;
  height: 100px;
  padding: 0;
  object-fit: cover;
  object-position: top;
}
.p-team__list__txt-area {
  width: calc(100% - 100px);
  padding: 14px;
  background: #EFEFEF;
}
.p-team__list__lawyer {
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: 0.9375rem;
  font-weight: bold;
  border-bottom: solid 1px #AAAAAA;
}
.p-team__list__name {
  margin-bottom: 8px;
  font-size: 1.0625rem;
  font-weight: bold;
}
.p-team__list__note {
  font-size: 0.75rem;
}

@media only screen and (min-width: 769px) {
  .p-team__list {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .p-team__list-item {
    width: 150px;
    height: auto;
    flex-direction: column;
  }
  .p-team__list__img-wrapper {
    width:  100%;
  }
  .p-team__list__img-wrapper img {
    width: 150px;
    height: 210px;
  }
  .p-team__list__img-wrapper img:hover {
    opacity: 1;
  }
  .p-team__list-item:hover .p-team__list__img-wrapper img {
    opacity: .7;
    transition: .3s;
  }
  .p-team__list__txt-area {
    width: 100%;
    padding: 12px;
  }
  .p-team__list__lawyer {
    margin-bottom: 8px;
    padding-bottom: 6px;
    font-size: 0.75rem;
  }
  .p-team__list__name {
    font-size: 0.875rem;
  }
  .p-team__list__note {
    font-size: 0.625rem;
  }
}