/* ---------------------------
    共通パーツ
----------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


/* ---------------------------
    メインコンテンツ
----------------------------- */
.order__texts {
  margin-top: 60px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.7px;
}
.order__info{
  background:  #F2F8FD;
}
.order__title{
font-size: 20px;
font-weight: 600;
letter-spacing: 1px;
padding: 0 11px 20px 11px;
border-bottom: 1px solid var(--color-light-blue);
}
.order__list {
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.order__item {
  flex: 1;
}

.order__item p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.order__item-link {
  display: block;
  width: 100%;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: .5s ease;
}

.order__item-link svg {
  margin-bottom: 5px;
}

.order__item-link .white {
  color: #FFF;
}

.order__item-link .font-latin {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1.1px;
}

.order__item-link:hover {
  opacity: 0.5;
}

.order__item-link--blue {
  background: linear-gradient(180deg, #CAE6F4 0%, #3F93BC 100%);
}

.order__item-link--yelo {
  background: linear-gradient(180deg, #FFF8D4 0%, #FFA300 100%);
}

.order__item-link--pink {
  background: linear-gradient(180deg, #F0C1E2 0%, #BB5A9F 100%);
}

@media screen and (max-width: 750px) {
  .order__texts {
    margin-top: 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
  .order__title{
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
    padding: 0 0 1.1rem 0;
    }
  .order__list {
    margin-bottom: 6rem;
    flex-direction: column;
    gap: 1.2rem;
  }

  .order__item-link {
    height: 13rem;
    gap: 0.5rem;
    font-size: 1.6rem;
  }

  .order__item-link svg {
    margin-bottom: 0.5rem;
    width: 3.3rem;
    height: auto;
  }
}

.commonSection {
  padding: 90px 40px;
}

.commonSection--01 {
  background: #F2F8FD;
}

.commonSection--02 {
  background: #FAF6EC;
}

.commonSection__title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding-bottom: 15px;
}
.commonSection--01 .commonSection__title {
  border-bottom: 1px solid var(--color-light-blue);
}

.commonSection--02 .commonSection__title{
  border-bottom: 1px solid #E68135;
}
.commonSection__text {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.7px;
}

.commonSection__block {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 0 57px;
}

.commonSection__box {
  padding: 30px 60px;
  background: #FCFEFF;
}

.commonSection__box-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 2.25;
  /* 225% */
}

.commonSection__box-text {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.7px;
}

.commonSection__btn {
  margin: 70px auto 0;
  width: 410px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 100px;
  border: 1px solid #171C61;
  background: #fcfeff;
  transition: .5s ease;
}
.commonSection__btn .small{
  font-size: 16px;
  font-weight: 600;
}
.commonSection__btn:hover {
  background: var(--color-main);
  color: #FFF;
}

@media screen and (max-width: 750px) {
  .commonSection {
    padding:
      6rem 1.5rem;
  }

  .commonSection__title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    padding-bottom: 1.5rem;
    margin: 0 1.5rem;
  }

  .commonSection__text {
    margin-top: 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
    padding: 0 1.5rem;
  }

  .commonSection__block {
    margin-top: 6rem;
    gap: 2rem;
    padding: 0;
  }

  .commonSection__box {
    padding: 3rem 2.5rem;
  }

  .commonSection__box-title {
    font-size: 1.6rem;
  }

  .commonSection__box-text {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }

  .commonSection__btn {
    margin: 3rem auto 0;
    width: calc(100% - 3.2rem);
    height: 8.4rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    border-radius: 10rem;
  }
  .commonSection__btn .small{
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
  .commonSection__btn:hover {
    background: var(--color-main);
    color: #FFF;
  }
}