/* サービスご利用の流れページ */

/* 基本レイアウト */
.PageFlow {
  padding: 60px 0;
  background: #fff;
}
@media (width >= 769px) {
  .PageFlow {
    padding: 100px 0;
  }
}

.PageFlow_inner {
  max-width: 900px;
}

/* 英語タイトル */
.pageTtl_en {
  font-size: 1.4rem;
  color: #999;
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

/* イントロ文 */
.PageFlow_intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.PageFlow_intro p {
  font-size: 1.5rem;
  line-height: 2;
  color: #666;
}
@media (width >= 769px) {
  .PageFlow_intro p {
    font-size: 1.6rem;
  }
}

/* セクション */
.PageFlow_section {
  padding: 40px 25px;
  background: #fafafa;
  border-radius: 8px;
}
@media (width >= 769px) {
  .PageFlow_section {
    padding: 50px 40px;
  }
}

.PageFlow_section-title {
  font-size: 2rem;
  color: #c41e3a;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media (width >= 769px) {
  .PageFlow_section-title {
    font-size: 2.4rem;
  }
}
.PageFlow_section-title span {
  font-size: 1.4rem;
  color: #666;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
@media (width >= 769px) {
  .PageFlow_section-title span {
    display: inline;
    font-size: 1.6rem;
  }
}

.PageFlow_section-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
@media (width >= 769px) {
  .PageFlow_section-desc {
    font-size: 1.6rem;
  }
}

/* ステップリスト */
.PageFlow_steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.PageFlow_step {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
}
.PageFlow_step:last-child {
  border-bottom: none;
}

.PageFlow_step-num {
  width: 50px;
  height: 50px;
  background: #c41e3a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  flex-shrink: 0;
}

.PageFlow_step-content {
  flex: 1;
}
.PageFlow_step-content h4 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (width >= 769px) {
  .PageFlow_step-content h4 {
    font-size: 1.8rem;
  }
}
.PageFlow_step-content p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
@media (width >= 769px) {
  .PageFlow_step-content p {
    font-size: 1.5rem;
  }
}

/* 当日スケジュール */
.PageFlow_dayschedule {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.PageFlow_dayblock {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #c41e3a;
}

.PageFlow_dayblock-title {
  font-size: 1.6rem;
  color: #c41e3a;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (width >= 769px) {
  .PageFlow_dayblock-title {
    font-size: 1.8rem;
  }
}
.PageFlow_dayblock-title span {
  font-size: 1.3rem;
  color: #666;
  font-weight: 400;
}

.PageFlow_dayblock-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.PageFlow_dayblock-list li {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
}
@media (width >= 769px) {
  .PageFlow_dayblock-list li {
    font-size: 1.5rem;
  }
}
.PageFlow_dayblock-list li:last-child {
  border-bottom: none;
}
.PageFlow_dayblock-list li strong {
  color: #333;
  font-weight: 600;
}
