@charset "utf-8";

/*----------------------------------------------------------------------
* results
--------------------------------------------------------------------- */
.main-ttl {
  background-image: url(/assets/img/results/mv.jpg);
}
.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 110px 0 160px;
}
@media screen and (max-width: 767px) {
  .main-content {
    padding: 11rem 0 20rem;
  }
}


/* article
---------------------------------------------- */
.results-wrapper section + section {
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .results-wrapper section + section {
    margin: 2rem 0 0;
  }
}

.results-lead {
  margin: 0 0 80px;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .results-lead {
    padding: 0 4rem;
    margin: 0 0 8rem;
    text-align: left;
  }
}

/* results-year */
.results-year {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px;
  background: #21739d;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
.results-year::before {
  content: '';
  position: absolute;
  right: 40px;
  top: calc(50% - 1px);
  width: 31px;
  height: 1px;
  background: #fff;
  transition: 0.4s;
}
.results-year::after {
  content: '';
  position: absolute;
  right: 55px;
  top: calc(50% - 16px);
  width: 1px;
  height: 31px;
  background: #fff;
  transition: 0.4s;
}
.results-year.active::before {
  transform: rotate(180deg);
}
.results-year.active::after {
  transform: rotate(270deg);
}
@media screen and (max-width: 767px) {
  .results-year {
    padding: 4rem;
    font-size: 3rem;
  }
  .results-year::before {
    content: '';
    position: absolute;
    right: 4rem;
    top: calc(50% - 1px);
    width: 4.2rem;
  }
  .results-year::after {
    right: 6.1rem;
    top: calc(50% - 2.1rem);
    height: 4.2rem;
  }
}

/* results-content */
.results-content {
  display: none;
  padding: 0 0 30px;
}

/* results-table */
.results-table {
  width: 100%;
}
.results-table th{
  padding: 17px;
  background: #c7dce6;
  border-bottom: 3px solid #333333;
  border-left: 1px solid #333333;
  text-align: center;
}
.results-table th:nth-child(1) {
  width: 580px;
  border-left: none;
}
.results-table th:nth-child(2) {
  width: 165px;
}
.results-table td{
  padding: 17px 30px;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
}
.results-table td:first-child {
  border-left: none;
}
@media screen and (max-width: 767px) {
  .results-table {
    font-size: 2.8rem;
  }
  .results-table thead {
    display: none;
  }
  .results-table tr {
    width: 100%;
  }
  .results-table th:nth-child(1) {
    width: 100%;
    border-left: none;
  }
  .results-table th:nth-child(2) {
    width: auto;
  }
  .results-table td {
    display: block;
    padding: 0;
    border-top: none;
    border-left: none;
  }
  .results-table td:first-child {
    display: block;
    text-align: center;
    padding: 3rem;
  }
  .results-table td:before {
    display: inline-block;
    padding: 3rem;
    content: attr(data-label);
    margin-right: 3rem;
    width: 6em;
    height: 100%;
    background: #c7dce6;
    border-right: 2px solid #333;
    text-align: center;
  }
  .results-table td:first-child:before{
    display: none;
  }
}

