.step {
  container-type: inline-size;
}

.step .step-container {
  width: 100%;
}

.step .step-container .step-menu {
  display: flex;
  align-items: stretch;
  gap: 4cqw;
  padding: 7cqw 4cqw 0.5cqw;
}

.step .step-container .step-menu .step-btn {
  flex: 1;
  cursor: pointer;
  text-align: center;
  border: none;
  background: none;
  background-color: rgba(238, 238, 238, 0.5019607843);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 2.67cqw, 36px);
  line-height: 1.6;
  color: #757575;
  letter-spacing: 0;
  padding: 2cqw 0;
}

.step .step-container .step-menu .step-btn.active {
  background-color: #EEEEEE;
}

.step .step-container .step-content__wrapper {
  background-color: #EEEEEE;
  padding: 10cqw 3cqw 7cqw;
}

.step .step-container .step-content__wrapper .step-content {
  display: none;
}

.step .step-container .step-content__wrapper .step-content__img {
  display: block;
  width: 100%;
  height: auto;
}

.step .step-container .step-content__wrapper .step-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step .step-container .step-content__wrapper .step-content__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  -moz-column-gap: 4cqw;
  column-gap: 4cqw;
  margin-bottom: 12cqw;
}

.step .step-container .step-content__wrapper .step-content__body {
  display: flex;
  flex-direction: column;
}

.step .step-container .step-content__wrapper .step-content__name {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(9px, 3cqw, 36px);
  color: #757575;
  letter-spacing: 0;
  display: inline-block;
  width: 35cqw;
  margin: 1cqw 0 2cqw;
  border-bottom: 1px solid #B3B2AC;
  padding-bottom: 2cqw;
}

.step .step-container .step-content__wrapper .step-content__catch {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 3.33cqw, 40px);
  color: #686B6E;
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 2cqw;
}

.step .step-container .step-content__wrapper .step-content__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(6px, 2cqw, 24px);
  color: #686B6E;
  letter-spacing: 0;
  line-height: 1.9;
}

.step .step-container .step-content__wrapper .step-content__btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 3.2cqw, 36px);
  color: #fff;
  background-color: #B3B2AC;
  border-radius: 9999px;
  padding: 3cqw 6cqw;
}

.step .step-container .step-content__wrapper .step-content__btn:hover {
  opacity: 0.8;
  cursor: pointer;
  text-decoration: none;
}