@charset "utf-8";

/* ===========================================
 * 手順説明ブロック
 * ======================================== */

.method-block {
  display: flex;
  align-items: center;
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .method-block {
    flex-direction: column;
  }
}

.method-block + .method-block {
  margin-top: 62px;
}

.method-block:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .method-block:nth-of-type(even) {
    flex-direction: column;
  }
}

.method-block__pic {
  position: relative;
  z-index: 0;
}

.method-block__body {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 375px;
  width: 100%;
  background-color: var(--c-white);
  margin-inline: auto;
  margin-left: -30px;
  padding: 26px 24px 36px;
}

.method-block:nth-of-type(even) .method-block__body {
  margin-right: -30px;
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .method-block__body {
    margin: 0 auto;
    margin-top: -56px;
    max-width: 90%;
  }

  .method-block:nth-of-type(even) .method-block__body {
    margin: 0 auto;
    margin-top: -56px;
  }
}

.method-block .method-block__heading {
  font-size: clamp(1.188rem, 1.131rem + 0.24vw, 1.313rem); /*21-19*/
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7;
  color: var(--c-main);
}

.method-block .method-block__body .method-block__text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 14px;
}
