@charset "UTF-8";
.bar-chart {
    font-size: .9em;
    margin-top: 20px;
}
.bar-chart > div {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}
.bar-chart dt {
    width: 55px;
    min-width: 55px;
}
.bar-chart dd {
    width: 100%;
    margin: 0;
    border-radius: 3px;
    background-color: #f2f2f2;
}
.bar-chart dd .value{
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 15px;
}
/* 幅が変化するときのアニメーションを設定 */
.bar-chart dd > span {
    display: inline-block;
    padding: 0 15px;
    border-radius: inherit;
    background-color: #a1cbe8;
    color: #000000;
    font-weight: 600;
    line-height: 45px;
    /* text-align: right; */
    white-space: nowrap;
    transition: width 1s ease; /* ここでアニメーションを指定 */
}

#visitors .bar-chart dd > span{
    background-color: #a2d7d4;
}


.pie-chart_wrap {
    text-align: center;
    position: relative;
}
.pie-chart {
  /* max-width: 300px; */
  margin: auto;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.pie-chart + .pie-chart {
  margin-left: 40px;
}

/*真ん中の数値を静的表示したいため無理やり調整*/
.max-circ {
  display: none;
}
.max-circ.block {
  display: block;
}

.max-circ {
  width: 200px;
  height: 200px;
  margin: auto;
  padding-top: 50px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  /* box-shadow: inset 0 0 50px 0 rgba(0, 0, 0, 0.3), 0 0 7px rgba(255, 255, 255, 0.8); */
}

.visitor_attributes .max-circ {
    padding-top: 70px;
}

.max-circ span {
  display: block;
}
.max-circ .label {
  font-size: 11px;
  margin: 0 0 10px;
}
.max-circ .value {
  font-size: 1.4rem;
  font-weight: 700;
  filter: brightness(1.4);
}
.en .max-circ .value{
  line-height:1;  
}
.pie-chart .legend {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* margin: 20px 0 0; */
  font-size: 12px;
  text-align: center;
}
.pie-chart .legend li {
  /* margin: 0 5px 10px; */
  padding: 8px 8px 5px;
  border-radius: 1px;
  display: block;
  width: 46%;
  margin: 0 1%;
  /*background: rgba(0, 0, 0, 0.2);*/
  /* color: #ffffff; */
  /*text-shadow: 0 1px rgba(0, 0, 0, 0.5);*/
  transition: background 0.2s, opacity 0.2s;
}
.pie-chart .legend li span {
  /* color: #fff; */
  font-weight: 700;
}
.pie-chart .slice {
  cursor: pointer;
  filter: brightness(1) grayscale(0.15);
  transition: transform 0.2s, filter 0.2s;
}
.pie-chart .slice path {
  /* opacity: 0.75; */
  transition: opacity 0.2s;
}
.pie-chart .slice text {
  font-size: 14px;
}
.pie-chart .slice:hover, .pie-chart .slice.max {
  /*transform: scale(1.05);*/ /*太さ揃えたいとのことでコメントアウト*/
  /* filter: brightness(1.4) grayscale(0); */
}
.pie-chart .slice:hover path {
  opacity: 1;
}
/* .pie-chart .slice:hover path, .pie-chart .slice.max path {
  opacity: 1;
} */



/*大きい数字*/

.page_result .total_data {
    margin-top: -10px;
}
.page_result .total_data div{
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}
.page_result .total_data div dt,
.page_result .total_data div dd {
    font-size: 1.6rem;
    font-weight: bold;
    color: #7a7a7a;
    line-height: 1;
}
.page_result .total_data div dd span {
    font-size: 4.4rem;
    font-weight: bold;
    line-height: 1;
}


/*来場者の声*/
#visitors .forexhibitors_whyexhibit .exhibitors_voice_cont {
    background: #d1e8e2;
}



/* 英語調整 */
.en.page_result .total_data div dt{
  margin-right:5px;
}

.en .c-info-table--horizontal__wrap{
  margin-bottom: 20px;
}

.en br.sp{
  display: none;
}


@media screen and (max-width:550px){
  .en .bar-chart dd .value{font-size: 1.3rem;}
  .en .bar-chart dd > span{font-size: 1rem;}
  .en br.sp{
  display:block;
  }
}



@media screen and (max-width:480px){
  .bar-chart dd .value{font-size: 1.3rem;}
  .bar-chart dd > span{font-size: 1rem;}
}