/*
----------------------------------------

block-circle-label

----------------------------------------
*/

.block-circle-label .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, calc(100vw * 16 / 1440), 16px)
    clamp(32px, calc(100vw * 56 / 1440), 56px);
}

.block-circle-label .item {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  border-radius: 50%;
  background: #bab2aa;
  color: #fff;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.2);
  border: 5px solid #bab2aa;
  background: linear-gradient(
    217.35deg,
    #998877 -10.19%,
    #857464 37.63%,
    #998877 85.44%
  );
  border-radius: 50%;
  padding: 10px;
}

.block-circle-label .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../blocks/assets/images/circle-bg.webp) no-repeat center
    center / cover;
}

.block-circle-label .item * {
  font-family: var(--font-heisei-mincho-std);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
  .block-circle-label .item {
    width: 170px;
    height: 170px;
  }

  .block-circle-label .item * {
    font-size: 16px;
  }
}
