.rank-main-content{
	display:flex;
  flex-wrap: wrap;
	justify-content:space-between;
  width: 96%;
  margin: 0 auto;
}
.ranking__firstBlock{
  width:35%;
}
.ranking__secondBlock{
  width:63%;
}

.totalPoint_block {
  width: 100%;
  text-align: center;
}

.rankingTitle {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  padding: .5em 0;
  position: relative;
  margin: 0 auto .5em;
  line-height: 1.2em;
}

.rankingTitle::before,
.rankingTitle::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
}

.rankingTitle::before {
  left: 0;
  top: 0;
  box-shadow: -2px -2px 0 #fe5882;
}

.rankingTitle::after {
  right: 0;
  bottom: 0;
  box-shadow: 2px 2px 0 #fe5882;
}

.itemTable_industry {
  width: 100%;
  border: solid 2px #FBD356;
  font-weight: bold;
  border-collapse: separate;
  border-radius: 16px;
  margin: .5em auto;
}

.itemTable_industry th,
.itemTable_industry td {
  text-align: center;
  padding: .75em 0;
}

.itemTable_industry th {
  background-color: #FBD356;
  text-shadow: 2px 2px 0 #fff;
  border-radius: 14px 0 0 14px;
  width: 35%;
}

.itemTable_industry td {
  width: 65%;
}

.itemTable {
  width: 100%;
}

.itemTable th,
.itemTable td {
  width: 50%;
  padding: .75em 0;
  font-weight: bold;
  border: solid 2px #fff;
  text-align: center;
}

.itemTable th {
  background: #fe5882;
  color: #fff;
}

.itemTable td {
  background-color: #ffeaf4;
}

.itemImage_logo {
  display: flex;
  height: 209px;
  background-image: url(/wp-content/themes/custom-theme/images/itemImg_bg.png);
  background-size: contain;
}

.itemImage_logo img{
  align-items: center;
  object-fit: contain;
}

@media screen and (max-width : 480px) {
  .ranking__firstBlock,
  .ranking__secondBlock {
    width: 100%;
  }
  .ranking__firstBlock .itemImage{
    display: block;
    width: 75%;
    margin: 0 auto;
  }

  .itemTable_industry {
    font-size: 4vw;
  }

  .rankingTitle {
    font-size: 5vw;
  }

  .itemTable {
    font-size: 4vw;
  }
}