@charset "UTF-8";
.work-detail_heading {
  font-size: 2.4rem;
  color: #333;
  text-align: left;
  font-weight: bold;
  margin-top: 50px;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .work-detail_heading {
    font-size: 2.2rem;
  }
}

.work-detail_heading--sub {
  color: #e97105;
  font-size: 2.2rem;
  margin: 100px 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.work-detail_heading--sub::before, .work-detail_heading--sub::after {
  content: "";
  width: 4px;
  height: 40px;
  background-color: rgba(202, 210, 219, 0.7);
}
.work-detail_heading--sub::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}
.work-detail_heading--sub::after {
  margin-left: 30px;
  transform: rotate(35deg);
}
@media screen and (max-width: 768px) {
  .work-detail_heading--sub {
    font-size: 2rem;
  }
}

.work-detail_page h4:first-letter {
  font-size: unset;
}

.work-detail_page .work-detail_list--wrapper {
  display: flex;
  justify-content: center;
  /* 中央揃え */
}

.work-detail_page .work-detail_list {
  list-style-position: outside;
  /* ●を外側に */
  padding-left: 2em;
  /* ●とテキストの間に余白 */
  text-align: left;
  /* テキスト左寄せ */
}

.work-detail_item {
  margin-bottom: 5px;
  list-style-type: disc;
}

.work-detail_text {
  font-size: 1.8rem;
  width: 50%;
  max-width: 550px;
  padding: 0 30px 0 60px;
}
@media screen and (max-width: 768px) {
  .work-detail_text {
    width: 100%;
    max-width: 100%;
    padding: 20px 0 0;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.work-detail_summary {
  margin-top: 100px;
}

.work-detail_img {
  height: auto;
  display: block;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .work-detail_img {
    width: 100%;
  }
}

.overlap-layout {
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .overlap-layout {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.overlap-layout::before {
  position: absolute;
  right: 0;
  z-index: -1;
  width: 60%;
  height: 100%;
  background-color: rgba(202, 210, 219, 0.7);
  content: "";
}
@media screen and (max-width: 768px) {
  .overlap-layout::before {
    width: 100%;
    bottom: 0;
    right: auto;
    left: 0;
    border-radius: 8px;
  }
}

/*work-flow*/
/* セクション全体の余白と背景 */
.work-flow {
  background-color: rgba(202, 210, 219, 0.7);
  border-radius: 8px;
  margin: 0 5% 120px 5%;
  padding: 50px 20px;
}

/* 番号付きリスト全体 */
.flow-list {
  list-style: none;
  counter-reset: step;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
}

/* 各ステップのスタイル */
.flow-list li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 24px;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #fff;
  border-left: 4px solid #e97105;
  padding: 16px 16px 16px 48px;
  border-radius: 4px;
}

/* 番号の表示 */
.flow-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background-color: #e97105;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  font-size: 1.4rem;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .flow-list li {
    font-size: 1.4rem;
    padding-left: 48px;
  }
}
.centered-header {
  text-align: center;
  color: #333;
}/*# sourceMappingURL=work-detail.css.map */