@charset "UTF-8";

/* パンくずリスト */
.breadcrumb {
  margin-bottom: 0;
}

/* オーダーの流れ */
#order {
  margin: 30px auto 100px;
}
#order .intro_wrap {
  max-width: 730px;
}

.flow {
  max-width: 924px;
  /* width: 90%; */
  width: 64%; 
    /* 100% - (18% × 2) */
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.step {
  display: flex;
  align-items: center;
  gap: 40px;
}

.step_left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.step_number {
  text-align: center;
}

.step_number h3 {
  color: #bdd6cd;
  font-family: "Shippori Mincho B1", serif;
  font-size: 4rem;
  font-weight:300;
  line-height: 1;
  position: relative;
  margin: 0;
}
.step_number h3::before {
  content: "Step";
  display: block;
  width: fit-content;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #bdd6cd;
  border-bottom: 1px solid #c4d7cd;
  padding-bottom: 10px;
}
.step_number h3::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background-color: #c4d7cd;
  margin: 10px auto 0;
}
.step:last-child .step_number h3::after {
  display: none;
}

.step_icon {
  background-color: #f3f3eb;
  border-radius: 50%;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step_text {
  flex: 1;
}

.step h4 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 16px;
}
.step p {
  font-size: 0.95rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 70px;
  }
  .intro_wrap {
    width: 80%;
  }

  .mv_wrap {
    margin-top: 80px;
  }

  .flow {
    width: 80%;
    padding-right: 40px;
    padding: 0;
  }

  .step {
    flex-direction: column;
    align-items: flex-start; /* 左寄せに */
    text-align: left; /* テキストも左揃え */
    gap:16px;
  }

  .step_left {
    flex-direction: row; /* 横並び */
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
  }

  .step_number h3::after {
    display: none; /* 縦ラインはスマホでは不要 */
  }
	
  .step_number {
    text-align: left;
  }
	
  .step_number h3 {
	font-size: 2rem;
  }
	
  .step_icon {
  display: none;
  }	

  .step_text {
    margin-top: 0;
  }

  .step_icon {
    display: none;
  }  
	
  .caption {
    margin-bottom: 20px;
    font-size: 1.75em;
    line-height: 1.66;
    text-align: center;
  }
  #lead p:last-of-type {
    margin: 0 auto;
    font-size: 0.9rem;
    width: 70%;
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  #order {
    margin-top: 30px;
    margin-bottom: 0;
  }
  #lead p:last-of-type {
    width: 90%;
  }
  .intro_wrap {
    width: 90%;
  }

  .flow {
    width: 90%;
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}
