.main-judges {
  margin: 0 auto -60px;
}
.section-label {
  text-align: center;
  color: #E75297;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Noto Sans JP";
  font-size: 70px;
  font-style: normal;
  font-weight: 300;
  line-height: 100px;
  letter-spacing: 8.25px;
  position: relative;
  z-index: 3;
}

.judges-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 90px clamp(8px, 2vw, 24px) 4px;
  gap: 64px;
  overflow: hidden;
  flex-direction: column;
  top: -60px;
  position: relative;
  margin: 0 0 -24px;
}

.judge-strip-item__icon {
  width: 147px;
  height: 147px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.judge-strip-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.judges-note {
  font-family: var(--font-noto);
  font-size: 12px;
  text-align: left;
  color: var(--text-main);
  position: relative;
  padding: 0 0 0 115px;
  z-index: 1;
  top: 0;
}

.btn-back2top-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0 48px;
}
.btn-back2top {
  display: block;
  border: none;
  border-radius: 6.38px;
  font-size: 41px;
  font-weight: 500;
  color: #ffff;
  cursor: pointer;
  text-align: center;
  line-height: 100%;
  transition: background 0.15s;
  font-family: inherit;
  padding: 20px 48px;
  background-image: url("../img/viewAwardbtn.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.judge-card {
    background: white;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 935px;
    width: 100%;
}
.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
    border-bottom: 1px solid #f0f0f0;
    background: #f0f0f0;
    height: 59px;
}

.dots {
    display: flex;
    gap: 8px;
}
.dot {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #202020;
}
.dot.empty {
    background: white;
    border: 2px solid #000;
}
.title {
    color: var(--text-main);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.title-sm {
    font-size: 24px;
    font-weight: 500;
}
.main-content {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    grid-template-rows: auto auto;
    margin: 0 auto;
    padding: 20px 25px;
    gap: 24px 15px;
    align-items: flex-start;
}
.left-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d5d5d5;
    flex-shrink: 0;
}
.desc-text {
  color: var(--text-black);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  padding: 0 70px 0 0;
}
.right-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bottom-section {
  grid-column: 1 / -1;
  justify-content: center;
  display: flex;
  padding: 0 30px;
}

.speech-bubble {
  position: relative;
  background: #F558A1;
  border-radius: 20px;
  padding: 14px 35px;
  width: 100%;
}
/* 吹き出しの三角（左上） */
.speech-bubble::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 24px solid #F558A1;
}
.speech-bubble p {
  margin: 0;
  color: #ffffff;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Noto Sans JP";
  font-size: 18px;
  line-height: 142%;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-label { font-size: 44px; }
  .judges-strip {
    padding: clamp(64px, 8vw, 72px) var(--gutter-sp) 4px;
    flex-wrap: wrap;
    gap: 24px;
  }
  .judge-label {
    text-align: right;
    padding: 0 24px 0 0;
  }
  .judge-strip-item__icon {
    width: 120px;
    height: 120px;
  }
  .main-content {
      padding: 16px 16px;
      gap: 16px;
  }
  .icon-group {
    gap: 4px;
  }
  .icon-circle {
    width: 30px;
    height: 30px;
  }
  .dots {
      gap: 4px;
  }
  .dot {
      width: 9px;
      height: 9px;
  }
  .dot.empty {
    border: 1px solid #000;
  }
  .header {
    height: calc(11px * 1.8);
    padding: 8px 15px;
  }
  .title {
      font-size: 11px;
  }
  .title-sm {
      font-size: 9px;
  }
  .desc-text {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    padding: 0 10px 0 0;
 }
  .bottom-section {
    padding: 0 10px 0 0;
  }
  .speech-bubble {
   padding: 12px 8px 12px 15px;
    border-radius: 9px;
  }
/* 吹き出しの三角（左上） */
.speech-bubble::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 24px solid #F558A1;
}
  .speech-bubble p {
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
  }
  .judges-note {
    font-size: 8px;
    text-align: left;
    padding: 0 0 0 10px;
    top: -10px;
  }
  .btn-back2top-wrap {
    padding: 16px 0 35px;
  }
  .btn-back2top {
    font-size: 0.9rem;
    width: 100%;
    font-weight: 500;
    padding: 20px 24px;
  }
}
