@charset "UTF-8";

/*
    procedure
------------------------------------*/

.procedure {
  margin-top: 80px;
  width: 100%;
}

.procedure__inner {
  width: 100%;
}

.procedure__title {
  color: #0031A3;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.4rem;
  letter-spacing: 0.2176rem;
}

.procedure__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 5px;
  background-color: #0031A3;
  margin: 20px auto 0;
}

@media (max-width: 767px) {
  .procedure {
    margin-top: 52px;
  }

  .procedure__title {
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: 0.2176rem;
  }

  .procedure__title::after {
    width: 20px;
    height: 4px;
  }
}

.procedure__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;

  width: 1046px;
  margin: 0 auto;
  margin-top: 48px;
  gap: 85px;
}

.procedure__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  padding: 50px 66px 50px 70px;
  border-radius: 20px;
  background: #F4F4F4;
}

.procedure__txt {
  width: 500px;
  flex-shrink: 0;
}

.procedure__item img {
  width: 287px;
  flex-shrink: 0;
}

.procedure__step {
  color: #0031A3;
  font-family: 'Sen', sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.procedure__step span {
  color: #0031A3;
  font-family: 'Sen', sans-serif;
  font-size: 3.0rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding-left: 4px;
}

.procedure__subtitle {
  color: #001045;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 28px */
  letter-spacing: 1.904px;
  display: flex;
  margin-top: 20px;
}

.procedure__subtitle::before {
  content: '';
  display: block;
  width: 5px;
  height: 27px;
  flex-shrink: 0;
  background-color: #0031A3;
  margin-right: 8px;
}

.procedure__item p {
  color: #001045;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  /* 32px */
  letter-spacing: 0.272px;

  margin-top: 15px;
}

.procedure__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 33px;
  height: 27px;
  background-image: url(../../../img/procedure-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -56px;
}

@media (max-width: 767px) {
  .procedure__list {
    width: 90%;
    gap: 40px;


  }

  .procedure__item {
    padding: 20px 20px;
    flex-direction: column;
    align-items: baseline;
    border-radius: 10px;
  }

  .procedure__step {
    font-size: 1.4rem;
  }

  .procedure__step span {
    font-size: 2.0rem;
  }

  .procedure__subtitle {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.2px;
    margin-top: 12px;
  }

  .procedure__subtitle::before {
    width: 4px;
    height: 20px;
  }

  .procedure__item p {
    font-size: 1.4rem;
    line-height: 24px;
    letter-spacing: 0.2px;
    margin-top: 14px;
  }

  .procedure__txt {
    width: auto;
    margin-bottom: 20px;
  }

  .procedure__item img {
    width: 100%;
    max-width: 287px;
    margin: 0 auto;
  }

  .procedure__item:not(:last-child)::after {
    width: 20px;
    height: 16px;
    bottom: -28px;
  }
}


/*
    contact
------------------------------------*/
.contact {
  margin-top: 80px;
  margin-bottom: 80px;
  color: #001045;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.6rem;
  letter-spacing: 0.648px;
}

.contact a {
  display: flex;
  width: fit-content;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 40px;
  color: #fff;
  background: #ff7119;
  padding: 9px 60px 9px;
  margin: 0 auto;
  margin-top: 48px;

}

@media (max-width: 767px) {

  .contact {
    width: 90%;
    margin: 0 auto;
    margin-top: 52px;
    margin-bottom: 52px;
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.4px;
  }

  .contact a {
    font-size: 1.6rem;
    margin-top: 28px;
  }
}