.guide__title {
  padding-block: 36px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

.guide__item {
  color: #333;
}

.guide__item:not(:last-child) {
  border-bottom: 1px solid #EDEDED;
}

.guide__item--header {
  padding: 20px 32px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .guide__item--header {
    padding: 20px 5%;
  }
}

.guide__item--header:before {
  content: url(/img/renewal/img/common/icons/arrow-right-gray.svg);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  transition: right 0.5s 0s ease;
}

@media screen and (max-width: 767px) {
  .guide__item--header:before {
    right: 5%;
  }
}

.guide__item--header:hover:before {
  right: 12px;
}

@media screen and (max-width: 767px) {
  .guide__item--header:hover:before {
    right: 5%;
  }
}

.guide__item--content {
  padding: 0 32px 20px;
}

@media screen and (max-width: 767px) {
  .guide__item--content {
    padding: 0 5% 20px;
  }
}

.page-guide {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .page-guide .container {
    width: 100%;
    max-width: 100%;
  }
}

main {
  flex-grow: unset !important;
  background: #F8F8F8;
}

.page-footer {
  flex-grow: 1 !important;
}