.home-page div.heading {
	display: inline-block;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: -1.5px;
	text-align: center;
	color: #000000;
	background: linear-gradient(103.41deg, #000105 0%, #efbc51 85%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-size: clamp(1.5rem, 4vw, 2.875rem);
}

.heading__link {
	all: unset;
	font-size: 16px;
	cursor: pointer;
}
/*------------------FAQ------------------*/
.faq {width: 100%;margin: 0 auto;}
.faq__header {margin-bottom: 20px;}
.faq__title {
  text-align: left;
  width: fit-content;
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
  letter-spacing: -1.5px;
  background: linear-gradient(103.41deg, #000000 0.26%, #006562 85.24%);
  text-transform: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
details.faq__item:nth-child(2) {border-top: 1px solid #ddd;}
.faq__item {border-bottom: 1px solid #ddd;padding: 20px 0;}
.faq__question {
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: black;
}
.faq__item[open] .faq__question::after {transform: rotate(180deg);}
.faq__question::after {
  content: url("/image/catalog/icons/arrow.svg");
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 8px;
}
.faq__answer {font-size: 16px;line-height: 20px;margin-top: 24px;}
.faq__text {line-height: 1.5;padding: 0;}
/*------------------End FAQ------------------*/