.ez-toc-title-container {
  cursor: pointer;
  position: relative;
}
.ez-toc-title-container + nav {
  margin-top: 20px;
}
.ez-toc-title-toggle {
  display: block;
  width: 1em;
  height: 1em;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-75%) scale(1, 0.95) rotate(45deg);
          transform: translateY(-75%) scale(1, 0.95) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ez-toc-title-toggle.is-open {
  -webkit-transform: translateY(-25%) scale(1, 0.95) rotate(225deg);
          transform: translateY(-25%) scale(1, 0.95) rotate(225deg);
}

.access-step__title {
  padding: 0 !important;
  background: transparent !important;
  font-size: 1.5em;
  font-weight: 700 !important;
  text-align: center;
  color: var(--base-color) !important;
  margin-bottom: 2rem !important;
}
@media screen and (max-width: 767px) {
  .access-step__title {
    line-height: 1.5;
  }
}
.access-step__content + .access-step__content {
  margin-top: 6rem;
}
.access-step__sub-title {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  font-size: 1.17em;
  font-weight: 400 !important;
  text-align: center;
  color: var(--base-color) !important;
  margin-top: 0 !important;
  margin-bottom: 4rem !important;
}
.access-step__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .access-step__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access-step__item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .access-step__item {
    width: 100%;
  }
}
.access-step__figure {
  position: relative;
}
.access-step__figure:before {
  content: "";
  display: block;
  padding-top: 100%;
  position: relative;
}
.access-step__img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.access-step__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  background: #FF2200;
  color: #fff;
  margin-block: 6px;
}