@charset "utf-8";

/*********************
* ランキング（月間・年間）
*********************/

/* PC */
@media print,screen and (min-width: 1001px) {
#ranking.monthly .page_header {
	background-image: url(../images/ranking/main_monthly.jpg);
}
#ranking.yearly .page_header {
	background-image: url(../images/ranking/main_yearly.jpg);
}

#ranking .s1 {
  margin: 120px 0;
}

#ranking .s1_list > dt {
  font-size: 1.429em;
  font-weight: 700;
  color: #fff;
  background-color: #dc000c;
  border-radius: 20px;
  padding: 3.34% 6.67%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

#ranking .s1_list > dt::after {
  content: url(../images/common/icon_arrow02_w.png);
  display: inline-block;
  margin-left: 10px;
  transform: scale(.5);
  transition: ease all .5s;
}

#ranking .s1_list > dt.active::after {
  transform: scale(.5) rotate(180deg);
}

#ranking .s1_list > dd {
  display: none;
  background-color: #e8ebe8;
  border-radius: 0 0 20px 20px;
  margin-top: -20px;
  padding: calc(3.34% + 20px) 6.67% 3.34%;
  position: relative;
  z-index: 0;
}

#ranking .s1 .list_month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

#ranking .s1 .list_month > dt {
  align-self: flex-start;
  width: 120px;
  font-size: 1.571em;
  font-weight: 700;
  margin-bottom: 10px;
}

#ranking .s1 .list_month > dd {
  width: calc(100% - 120px);
}

#ranking.yearly .s1 .btns {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

#ranking .s1 .btns li {
  font-size: 1.143em;
  font-weight: 700;
  margin-bottom: 10px;
  margin-right: 5px;
}

#ranking .s1 .btns li a {
  display: block;
  width: 70px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 3px 0;
  transition: ease all .5s;
}
#ranking.yearly .s1 .btns li a {
  width: 95px;
}

#ranking .s1 .btns li a:hover {
  opacity: .7;
}

#ranking .s2 {
  background-color: #f8f8f8;
  border-radius: 80px 80px 0 0;
  padding-bottom: 100px;
}

#ranking .s2 h2 {
  font-size: 2.143em;
  font-weight: 700;
  background: url(../images/ranking/img01.png) no-repeat left bottom;
  background-size: 50px auto;
  margin-bottom: 35px;
  padding-left: 60px;
  position: relative;
  top: -25px;
}

#ranking .s2 .contents_inner > .flex::after {
  content: "";
  display: block;
  width: 31.67%;
}

#ranking .record_box {
  width: 31.67%;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 80px;
}

#ranking .record_inner {
  padding: 10.53% 9.21%;
}

#ranking .record_inner h3 {
  font-size: 1.429em;
  line-height: 1.3;
  margin-bottom: 20px;
}

#ranking #record_tbl {
  width: 100%;
  table-layout: fixed;
}

#ranking #record_tbl tr th {
  width: calc(100% - 85px);
  font-size: 1.143em;
  text-align: left;
  line-height: 1.3;
  border-bottom: 1px solid #ddd;
  padding: 10px 0 10px 40px;
  vertical-align: middle;
}

#ranking #record_tbl tr:first-of-type th {
  border-bottom: none;
  padding: 0;
}

#ranking #record_tbl tr th.th_gold,
#ranking #record_tbl tr th.th_silver,
#ranking #record_tbl tr th.th_bronze {
  font-size: 1.286em;
  background: no-repeat left center;
  background-size: 31px auto;
}
#ranking #record_tbl tr th.th_gold {
  background-image: url(../images/ranking/img02.png);
}
#ranking #record_tbl tr th.th_silver {
  background-image: url(../images/ranking/img03.png);
}
#ranking #record_tbl tr th.th_bronze {
  background-image: url(../images/ranking/img04.png);
}

#ranking #record_tbl tr td {
  width: 85px;
	font-family: "Albert Sans", sans-serif;
	font-optical-sizing: auto;
  font-size: 1.286em;
	font-weight: 500;
	font-style: normal;
  text-align: right;
  border-bottom: 1px solid #ddd;
  padding-right: 20px;
  vertical-align: middle;
}

#ranking #record_tbl tr:first-of-type td {
  border-bottom: none;
  padding-right: 0;
}

#ranking #record_tbl tr td .time {
  display: inline-block;
  width: 100%;
  font-size: .778em;
  color: #425744;
  text-align: center;
  line-height: 1;
  letter-spacing: .1em;
  border: 1px solid #425744;
  border-radius: 20px;
  padding: 3px 0;
}

} /* @media print,screen and (min-width: 1001px) */



/* SP */
@media screen and (max-width: 1000px) {
#ranking.monthly .page_header {
	background-image: url(../images/ranking/main_monthly_sp.jpg);
}
#ranking.yearly .page_header {
	background-image: url(../images/ranking/main_yearly_sp.jpg);
}

#ranking .page_header h1 span:not([class]) {
  display: block;
}

#ranking .s1 {
  margin: 13vw 0 15vw;
}

#ranking .s1 .contents_inner {
  padding-left: 2vw;
  padding-right: 2vw;
}

#ranking .s1_list > dt {
  font-weight: 700;
  color: #fff;
  background-color: #dc000c;
  border-radius: 20px;
  padding: 7vw 3vw;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

#ranking .s1_list > dt::after {
  content: url(../images/common/icon_arrow02_w.png);
  display: inline-block;
  margin-left: 10px;
  transform: scale(.6);
  transition: ease all .5s;
}

#ranking .s1_list > dt.active::after {
  transform: scale(.6) rotate(180deg);
}

#ranking .s1_list > dd {
  display: none;
  background-color: #e8ebe8;
  border-radius: 0 0 20px 20px;
  margin-top: -20px;
  padding: calc(5vw + 20px) 5vw 2vw;
  position: relative;
  z-index: 0;
}

#ranking .s1 .list_month {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2vw;
  padding-bottom: 1.5vw;
}

#ranking .s1 .list_month > dt {
  font-size: 1.154em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5vw;
  position: relative;
}

#ranking .s1 .list_month > dt::after {
  content: url(../images/common/icon_arrow02_gry.png);
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(.65);
  transition: ease all .5s;
}

#ranking .s1 .list_month > dt.active::after {
  transform: scale(.65) rotate(180deg);
}

#ranking .s1 .list_month > dd {
  display: none;
}

#ranking .s1 .btns {
  justify-content: space-between;
  margin-top: 1vw;
}
#ranking.yearly .s1 .btns {
  border-bottom: 1px solid #ccc;
  margin-top: 0;
  margin-bottom: 3.5vw;
  padding-bottom: 2vw;
}

#ranking .s1 .btns::before,
#ranking .s1 .btns::after {
  content: "";
  display: block;
  width: calc(100% / 4 - 1vw);
}
#ranking.yearly .s1 .btns::before,
#ranking.yearly .s1 .btns::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 1vw);
}

#ranking .s1 .btns::before {
  order: 1;
}

#ranking .s1 .btns li {
  width: calc(100% / 4 - 1vw);
  font-weight: 700;
  margin-bottom: 1.5vw;
}
#ranking.yearly .s1 .btns li {
  width: calc(100% / 3 - 1vw);
}

#ranking .s1 .btns li a {
  display: block;
  width: 100%;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 1vw 0;
  transition: ease all .5s;
}

#ranking .s2 {
  background-color: #f8f8f8;
  border-radius: 20px 20px 0 0;
  padding-bottom: 6vw;
}

#ranking .s2 h2 {
  font-size: 1.538em;
  font-weight: 700;
  background: url(../images/ranking/img01.png) no-repeat left bottom;
  background-size: 9.375vw auto;
  padding-left: 11vw;
  position: relative;
  top: -5vw;
}

#ranking .record_box {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 7vw;
}

#ranking .record_inner {
  padding: 3vw;
}

#ranking .record_inner h3 {
  font-size: 1.231em;
  line-height: 1.3;
  margin-bottom: 3vw;
}

#ranking #record_tbl {
  width: 100%;
  table-layout: fixed;
}

#ranking #record_tbl tr th {
  width: calc(100% - 90px);
  text-align: left;
  line-height: 1.3;
  border-bottom: 1px solid #ddd;
  padding: 3vw 0 3vw 10vw;
  vertical-align: middle;
}

#ranking #record_tbl tr:first-of-type th {
  border-bottom: none;
  padding: 0;
}

#ranking #record_tbl tr th.th_gold,
#ranking #record_tbl tr th.th_silver,
#ranking #record_tbl tr th.th_bronze {
  font-size: 1.077em;
  background: no-repeat left center;
  background-size: 7.8125vw auto;
}
#ranking #record_tbl tr th.th_gold {
  background-image: url(../images/ranking/img02.png);
}
#ranking #record_tbl tr th.th_silver {
  background-image: url(../images/ranking/img03.png);
}
#ranking #record_tbl tr th.th_bronze {
  background-image: url(../images/ranking/img04.png);
}

#ranking #record_tbl tr td {
  width: 90px;
	font-family: "Albert Sans", sans-serif;
	font-optical-sizing: auto;
  font-size: 1.077em;
	font-weight: 500;
	font-style: normal;
  text-align: right;
  border-bottom: 1px solid #ddd;
  padding-right: 5vw;
  vertical-align: middle;
}

#ranking #record_tbl tr:first-of-type td {
  border-bottom: none;
  padding-right: 0;
}

#ranking #record_tbl tr td .time {
  display: inline-block;
  width: 100%;
  font-size: .857em;
  color: #425744;
  text-align: center;
  line-height: 1;
  letter-spacing: .1em;
  border: 1px solid #425744;
  border-radius: 20px;
  padding: 3px 0;
}

} /* @media screen and (max-width: 1000px) */