@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;
}


.ly_hd_pgn-house_doc {
  padding: 20px 20px;
  color: #FFFFFF;
  background: #171C61 url("../../img/program/house-doc_v7_bg.webp") no-repeat top right;
  background-size:auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.ly_hd_pgn-house_doc:before { 
  content: '';
  background: inherit;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.ly_hd_pgn-house_doc img {
  filter: drop-shadow(1px 1px 2px #171C61);
}


