* {
  box-sizing: border-box;
}
.relation-container {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
  margin-top: -120px;
  padding: 6px 30px 30px;
  line-height: 32px;
  border-radius: 5px;
  border: solid 1px #eeeeee;
  background-color: #fff;
  color: #161616;
}

.relation-title {
  padding: 24px 0;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 24px;
  color: #2c2c2c;
  line-height: 1;
  font-weight: 600;
  border-bottom: 1px solid #eeeeee;
}

.relation-container p {
  text-indent: 2em;
  letter-spacing: 0px;
}
.relation-sub-title--orange, .relation-sub-title--gree {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #2c2c2c;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin: 30px 0 20px;
}
.relation-sub-title--gree::before, .relation-sub-title--orange::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: calc(100% - 8px);
  height: 8px;
  background-image: linear-gradient(90deg, 
		#b8f1ff 0%, 
		#dcfabb 100%), 
	linear-gradient(
		#c9dfff, 
		#c9dfff);
	background-blend-mode: normal, 
		normal;
	border-radius: 4px;
  z-index: -1;
}
.relation-sub-title--orange::before {
  background-image: linear-gradient(90deg, 
		#ffdeb2 0%, 
		#fff0bc 100%), 
	linear-gradient(
		#c9dfff, 
		#c9dfff);
}
.relation-tip {
    margin: 30px 0 12px;
    font-weight: 600;
    color: #0a76ff;
}