/* =========================
 * 円グラフ＋一覧
 * ========================= */

.v2-ir-pie-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.v2-ir-pie-layout > [id$="-container"] {
  flex: 0 0 230px;
  width: 230px;
  min-width: 230px;
}

.v2-ir-pie-list {
  flex: 1 1 auto;
  min-width: 0;
}


/* =========================
 * 一覧
 * ========================= */

.v2-ir-pie-list-row {
  display: grid;

  grid-template-columns:
    minmax(160px, 1fr)
    minmax(110px, auto)
    minmax(65px, auto);

  align-items: center;
  column-gap: 10px;

  min-height: 44px;
}

.v2-ir-pie-list-label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.v2-ir-pie-list-dot {
  display: block;

  flex: 0 0 12px;

  width: 12px;
  height: 12px;

  border-radius: 50%;
}

.v2-ir-pie-list-name {
  overflow: hidden;

  color: #303746;

  font-size: 16px;
  font-weight: 400;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-ir-pie-list-value {
  color: #303746;

  font-size: 16px;
  font-weight: 700;

  text-align: right;
  white-space: nowrap;
}

.v2-ir-pie-list-percent {
  color: #778295;

  font-size: 12px;
  font-weight: 400;

  text-align: right;
  white-space: nowrap;
}


/* =========================
 * 円グラフ中央
 * ========================= */

.hc-pie-center {
  min-width: 140px;

  color: #303746;

  line-height: 1.4;

  text-align: center;
  white-space: nowrap;

  pointer-events: none;
}

.hc-pie-center-label {
  margin-bottom: 4px;

  color: #6d7788;

  font-size: 16px;
  font-weight: 400;
}

.hc-pie-center-value {
  color: #303746;

  font-size: 20px;
  font-weight: 700;
}


/* =========================
 * ツールチップ
 * ========================= */

.highcharts-tooltip-container {
  z-index: 99999 !important;

  pointer-events: none;
}

.hc-pie-tooltip {
  min-width: 130px;

  line-height: 1.6;
}

.hc-pie-tooltip-name {
  font-weight: 700;
}

.hc-pie-tooltip-value {
  font-weight: 700;
}

.hc-pie-tooltip-percent {
  color: #778295;

  font-size: 12px;
}


/* =========================
 * SP
 * ========================= */

@media screen and (max-width: 767px) {
  .v2-ir-pie-layout {
    display: block;
  }

  .v2-ir-pie-layout > [id$="-container"] {
    width: 100%;
    min-width: 0;
    max-width: 280px;

    margin: 0 auto 24px;
  }

  .v2-ir-pie-list-row {
    grid-template-columns:
      minmax(120px, 1fr)
      minmax(90px, auto)
      minmax(55px, auto);

    column-gap: 6px;
  }

  .v2-ir-pie-list-name,
  .v2-ir-pie-list-value {
    font-size: 14px;
  }

  .v2-ir-pie-list-percent {
    font-size: 11px;
  }
}

.v2-ir-pie-list-row {
  transition: background-color 0.2s ease;
}

.v2-ir-pie-list-row.is--hover {
  background-color: #f2f4f5;
}


/*カレンダー*/
#irp-calendar-list h2 {margin-top: 1em;}

/*260821*/
#irp-press-list .v2-list-item_icon-external {display: inherit;}