.p-registrationGuide {}


.p-registrationGuide__mainVisual {
  margin: 16px 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
    .p-registrationGuide__tableWrapper {
    overflow-x: scroll;
  }
}

.p-registrationGuide__image {
  width: 100%;
  height: auto;
}

.p-registrationGuide__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .p-registrationGuide__table {
    width: 700px;
  }
}

.p-registrationGuide__table th {
  background-color: #f0f0f0 !important;
}

.p-registrationGuide__table th:hover {
  background-color: #f0f0f0 !important;
}

.p-registrationGuide__table td {
  background-color: transparent !important;
  font-size: 14px;
}

.p-registrationGuide__list {
  margin: 0 0 20px 0;
  list-style: none;
  padding-left: 0;
  counter-reset: guide-step;
}

.p-registrationGuide__item {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  line-height: 1.8;
  counter-increment: guide-step;
}

.p-registrationGuide__item::before {
  content: counter(guide-step);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 14px;
}

.p-registrationGuide__item-title {
  position: relative;
  font-weight: bold;
  white-space: nowrap;
  min-width: 150px;
}

@media screen and (max-width: 767px) {
  .p-registrationGuide__item-title {
    font-size: 14px;
    min-width: 130px;
  }
}

.p-registrationGuide__item-title::after {
  position: absolute;
  right: 4px;
  content: "・・・";
}

.p-registrationGuide__item-desc {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .p-registrationGuide__item-desc {
    font-size: 14px;
  }
}

.p-registrationGuide__step-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}

.p-registrationGuide__step-item {
  display: flex;
  align-items: baseline;
  margin:0 0 8px 0;
  font-size: 16px;
  line-height: 1.8;
  counter-increment: step;
}

@media screen and (max-width: 767px) {
  .p-registrationGuide__step-item {
    font-size: 14px;
  }
}

.p-registrationGuide__step-item::before {
  content: counter(step);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: #FFC107;
  color: #000;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
}

.p-registrationGuide__badge {
  display: inline-block;
  margin: 0 0 8px 0;
  padding: 2px 8px;
  border-radius: 999px;
  color: #FFC107;
  background-color: #fffbea;
  font-size: 14px;
  font-weight: bold;
}

