@charset "utf-8";

/* スタイルシート　製品セットアップダウンロード */


:root {
  --circle-size: clamp(1.5rem, 5vw, 6rem);
  --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

.conft-stepper {
  display: flex;
}

.conft-stepper_item {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.conft-stepper_item:before {
  --size: 3rem;
  content: "";
  display: block;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background-color:#D82D67;
//    opacity: 0.5;
  margin: 0 auto 1rem;
}

.conft-stepper_item:not(:last-child):after {
  content: "";
  position: relative;
  top: calc(var(--circle-size) / 2);
  width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
  left: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
  height: 2px;
  background-color: #e0e0e0;
  order: -1;
}

.conft-stepper__item {
  position: relative;
  display: flex;
  gap: 1rem;
  padding-bottom: 4rem;
}

.conft-stepper__item:before {
  content: "";
  flex: 0 0 var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  background-color:#D82D67;
}

.conft-stepper__item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--circle-size) + var(--spacing));
  bottom: var(--spacing);
  z-index: -1;
  transform: translateX(calc(var(--circle-size) / 2));
  width: 2px;
  background-color: #e0e0e0;
}

.conft-stepper_title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.conft-stepper_desc {
  font-size: 1.2rem;
}

.conft-stepper__content {
  max-width: 700px;
}

.conft_step {
  max-width: 1000px;
  margin: 2rem auto 0;
}


