.circleBadgeSimple {
  display: grid;
  grid-template-columns: 1fr repeat(12, calc(var(--jr-contain) / 12)) 1fr;
  grid-template-rows: auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .circleBadgeSimple {
    grid-template-rows: 60vh auto auto;
  }
}
@media (min-width: 1280px) {
  .circleBadgeSimple {
    grid-template-rows: 70vh auto auto;
  }
}
.circleBadgeSimple .bck_img, .circleBadgeSimple .bck_img img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  grid-column: 1/-1;
  grid-row: 1/4;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}
@media (min-width: 1280px) {
  .circleBadgeSimple .bck_img, .circleBadgeSimple .bck_img img {
    grid-row: 1/3;
  }
}
.circleBadgeSimple .gradient {
  grid-column: 1/-1;
  grid-row: 1/4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.95)), to(rgba(255, 255, 255, 0.8)));
  background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .circleBadgeSimple .gradient {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.89)), to(transparent));
    background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.89) 50%, transparent 100%);
  }
}
@media (min-width: 1280px) {
  .circleBadgeSimple .gradient {
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.89) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    grid-row: 1/3;
  }
}
.circleBadgeSimple .contents {
  padding: 0 1rem;
}
@media (min-width: 512px) {
  .circleBadgeSimple .contents {
    padding: unset;
  }
}
.circleBadgeSimple .wp_content_area {
  display: contents;
}
.circleBadgeSimple .main_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-column: 2/14;
  grid-row: 1/2;
  z-index: 1;
  margin-bottom: 2rem;
}
@media (min-width: 1280px) {
  .circleBadgeSimple .main_content {
    margin-left: auto;
    width: 70%;
  }
}
@media (min-width: 1536px) {
  .circleBadgeSimple .main_content {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .circleBadgeSimple .main_content h2 {
    font-size: 6rem;
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .circleBadgeSimple .main_content h2 {
    margin-top: 4rem;
  }
}
.circleBadgeSimple .circle_badge {
  display: grid;
  grid-column: 2/14;
  grid-row: 3/5;
  margin: 0 3rem 0 auto;
  z-index: 2;
  background-color: var(--white);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.34);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.34);
  margin-bottom: 1rem;
}
@media (min-width: 1280px) {
  .circleBadgeSimple .circle_badge {
    grid-column: 2/14;
    grid-row: 2/4;
  }
}
.circleBadgeSimple .circle_badge > * {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.circleBadgeSimple .circle_badge .badgeBorderDots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 2px var(--pc-20);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.circleBadgeSimple .circle_badge .badgeBorderDots .bDot {
  width: 18px;
  height: 18px;
  background-color: var(--pc-20);
  border-radius: 50%;
  border: 4px solid var(--white);
}
.circleBadgeSimple .circle_badge .badgeBorderDots .bDot:first-child {
  margin-top: -10px;
}
.circleBadgeSimple .circle_badge .badgeBorderDots .bDot:last-child {
  margin-bottom: -10px;
  margin-top: auto;
}
.circleBadgeSimple .circle_badge .badgeImg {
  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;
  padding: 30px;
}