@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'");
/* # =================================================================
# Service
# ================================================================= */
/* -- article -- */
.article__img-warpper {
  margin-top: 28px;
}
.article__lead {
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1.7;
  margin-top: 40px;
}
.article__text {
  line-height: 1.7;
  margin-top: 20px;
}
.article__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 6px;
  margin-top: 30px;
}
.article__progress {
  margin-top: 80px;
  margin-bottom: 30px;
}
.article__banner {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .article__text {
    font-size: 16px;
    line-height: 2;
  }
  .article__tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* -- progress-tab -- */
.progress-tab {
  position: relative;
}
.progress-tab__toggle {
  width: 100%;
}
.progress-tab__toggle:first-child .progress-tab__heading {
  position: relative;
  z-index: 1;
}
.progress-tab__toggle:last-child {
  position: absolute;
  top: 0;
}
.progress-tab__toggle:last-child .progress-tab__heading {
  margin-left: 230px;
}
.progress-tab__heading {
  display: block;
  width: 230px;
  background-color: #171c61;
  padding: 18px 0 17px 0;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.progress-tab__heading h4 {
  color: #ffffff;
  font-size: 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.progress-tab__heading.is-selected {
  pointer-events: none;
  background-color: #f4f4f4;
}
.progress-tab__heading.is-selected h4 {
  color: #000;
}
.progress-tab__heading:hover {
  background-color: #171c61;
}
.progress-tab__heading:hover h4 {
  color: #D2D2D2;
}
.progress-tab__content {
  display: block;
  opacity: 0;
  width: 100%;
  background-color: #f4f4f4;
  padding: 40px 10% 55px;
}
.progress-tab__content.is-selected {
  opacity: 1;
}
.progress-tab__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.progress-tab__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  border-bottom: 0.5px solid #000000;
  padding: 8px 0;
}
.progress-tab__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: #ffffff;
  background-color: #171c61;
  border-radius: 50%;
}
.progress-tab__text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 540px) {
  .progress-tab__toggle:last-child .progress-tab__heading {
    margin-left: 40%;
  }
  .progress-tab__heading {
    width: 40%;
  }
  .progress-tab__heading h4 {
    font-size: 16px;
  }
}