@charset "UTF-8";
/* CSS Document */ /* CSS Document */
/* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/*
sp：640px
pad：830px
PC：831px以上
@include mq() {} → 無印の場合はSPのブレイクポイント
@include mq(pad) {} → 引数にpadが入るとPAD用のブレイクポイントが適用される
*/
.mt_10 {
  margin-top: 10px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.pt_60 {
  padding-top: 60px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.pt_70 {
  padding-top: 70px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.pt_80 {
  padding-top: 80px !important;
}

.pb_80 {
  padding-bottom: 80px !important;
}

.mt_90 {
  margin-top: 90px !important;
}

.mb_90 {
  margin-bottom: 90px !important;
}

.pt_90 {
  padding-top: 90px !important;
}

.pb_90 {
  padding-bottom: 90px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

body, html {
  margin: 0;
  padding: 0;
  color: #333;
}

html {
  font-family: "NotoSansCJKjp", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.serif {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.disp_pc {
  display: block;
}
@media screen and (max-width: 640px) {
  .disp_pc {
    display: none;
  }
}

.disp_sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .disp_sp {
    display: block;
  }
}

.center {
  text-align: center;
}

body {
  background: #1f1c1f;
}

img {
  vertical-align: bottom;
}

@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  30% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  30% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  br.pc {
    display: none;
  }
}

.header__nav {
  padding: 40px 0 20px;
  background-color: #000;
}

#sub_nav {
  background-color: #fff;
  border-width: 1px 0;
  border-style: solid;
  border-color: #555;
  font-size: 16px;
  transition: .3s;
}
#sub_nav ul {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  justify-content: space-between;
  padding: 20px 0;
}
#sub_nav li {
  list-style: none;
  width: 16.6666666667%;
  transition: all 0.3s 0s ease;
  border-left: solid 1px;
  padding: 6px;
}
#sub_nav li:last-child {
  border-right: solid 1px;
}
#sub_nav li.ac {
  position: relative;
}
#sub_nav li.ac::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: solid 2px #f00;
  -webkit-animation: border_anim 0.2s ease-in forwards;
          animation: border_anim 0.2s ease-in forwards;
}
#sub_nav a {
  color: #212121;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  #sub_nav a {
    font-size: 1.8vw;
  }
}
#sub_nav a :hover {
  color: #333;
  background: #fff;
}
#sub_nav.fix {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
@media screen and (max-width: 640px) {
  #sub_nav.fix {
    position: fixed;
    top: inherit;
    bottom: 0;
  }
}

.two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.two::after {
  display: block;
  content: "";
  width: 50%;
}
.two article {
  width: 49%;
  min-height: 380px;
  box-sizing: border-box;
  margin-bottom: 2%;
}
@media screen and (max-width: 640px) {
  .two article {
    width: 96%;
  }
}
.two .img .single {
  height: 320px;
  position: relative;
  overflow: hidden;
}
.two .img .single img {
  width: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.two .img .before_and_after::before, .two .img .before_and_after::after {
  width: 64px;
  height: 64px;
}
.two__information {
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 8px;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 640px) {
  .two__information {
    flex-wrap: wrap;
    font-size: 16px;
  }
}
.two__information span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.two__information .rank {
  margin-right: 8px;
}
.two__information .rank b {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .two__information .rank b {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .two__information .point,
.two__information .name {
    width: 70%;
  }
}
.two__information .point b,
.two__information .name b {
  font-size: 26px;
  font-family: Noto Sans JP;
  margin-right: 4px;
}
@media screen and (max-width: 640px) {
  .two__information .point b,
.two__information .name b {
    font-size: 22px;
  }
}
.two__information .point {
  margin-right: 20px;
}
.two__information .store {
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .two__information .store {
    margin: 0;
  }
}
.two__information .store.small-text {
  font-size: xx-small;
}
@media screen and (max-width: 640px) {
  .two__information .store.small-text {
    font-size: initial;
  }
}
.two .winner {
  background-color: #fff;
  margin-top: 0;
}
.two .winner h3 {
  font-size: 24px;
  text-align: center;
  margin: 0;
  padding: 40px 0 0;
}
@media screen and (max-width: 640px) {
  .two .winner h3 {
    padding: 20px 0 0;
    font-size: 20px;
  }
}
.two .winner dl {
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .two .winner dl {
    font-size: 11px;
  }
}
.two .winner dt,
.two .winner dd {
  padding: 20px 0 8px;
}
.two .winner dt {
  width: 25%;
}
.two .winner dd {
  width: 24%;
}

article {
  width: 100%;
  max-width: 800px;
  margin: auto auto 40px auto;
}
@media screen and (max-width: 640px) {
  article {
    width: 96%;
  }
}

.result {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.result .result_title {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../2023/area1/img/gp_ttl_bg.png");
  border: solid 5px #bd9b39;
  color: #fff;
  font-family: Hiragino Mincho Pro;
  font-size: 40px;
  height: 116px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .result .result_title {
    font-size: 24px;
    height: 60px;
  }
}
.result dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  font-size: 20pt;
}
@media screen and (max-width: 640px) {
  .result dl {
    width: 96%;
    font-size: 4vw;
    padding: 2%;
  }
}
.result dl h3 {
  width: 100%;
  margin: 0 0 10px 0;
  padding-left: 10px;
}
.result dt {
  width: 14%;
  margin: 0;
  padding: 0 0 0 1%;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 640px) {
  .result dt {
    padding-top: 6px;
    width: 29%;
  }
}
.result dd {
  width: 34%;
  margin: 0 1% 0 0;
  padding: 0 0 0 1%;
  border-bottom: 1px solid #333;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .result dd {
    padding-top: 6px;
    width: 69%;
  }
}

.img {
  position: relative;
}
.img .before_and_after {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-height: 332px;
}
@media screen and (max-width: 640px) {
  .img .before_and_after {
    min-height: auto;
  }
}
.img .before_and_after::before, .img .before_and_after::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 110px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .img .before_and_after::before, .img .before_and_after::after {
    width: 60px;
    height: 60px;
  }
}
.img .before_and_after::before {
  background-image: url("../area1/img/before_icon.svg");
  left: 0;
}
.img .before_and_after::after {
  background-image: url("../area1/img/after_icon.svg");
  right: 0;
}
.img .before_and_after img {
  width: 49%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img .single {
  display: flex;
  justify-content: center;
  background-color: #000;
}
.img img:nth-child(3) {
  position: absolute;
  left: 0;
  top: 0;
  width: 9%;
  height: auto;
}
.img img:nth-child(4) {
  position: absolute;
  right: 0;
  top: 0;
  width: 9%;
  height: auto;
}

.comment {
  width: 100%;
  padding: 20px;
  margin-top: 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.comment .ranking {
  display: flex;
  align-items: center;
  border-bottom: solid #000 1px;
  position: relative;
  padding: 0 0 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .comment .ranking {
    flex-direction: column;
  }
}
.comment .ranking__points {
  position: relative;
  width: 130px;
  height: 100px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .comment .ranking__points {
    width: 100px;
    height: 80px;
    margin-bottom: 12px;
  }
}
.comment .ranking__points::before {
  content: "";
  display: block;
  background-image: url("../../2023/area1/img/no1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 100px;
  position: absolute;
}
@media screen and (max-width: 640px) {
  .comment .ranking__points::before {
    width: 100px;
    height: 80px;
  }
}
.comment .ranking__points.no-2::before {
  background-image: url("../../2023/area1/img/no2.svg");
}
.comment .ranking__points.no-3::before {
  background-image: url("../../2023/area1/img/no3.svg");
}
.comment .ranking__points span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  font-family: Hiragino Mincho Pro;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .comment .ranking__points span {
    font-size: 10px;
    bottom: 2px;
  }
}
.comment .ranking__points span b {
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .comment .ranking__points span b {
    font-size: 14px;
  }
}
.comment .ranking__name {
  font-size: 26px;
  font-weight: bold;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .comment .ranking__name {
    font-size: 18px;
    margin-left: 0;
    margin-bottom: 16px;
  }
}
.comment .ranking__name span {
  font-size: 34px;
  margin-right: 8px;
}
@media screen and (max-width: 640px) {
  .comment .ranking__name span {
    font-size: 28px;
  }
}
.comment .ranking__trainer {
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .comment .ranking__trainer {
    margin-left: 0;
  }
}
.comment .ranking__trainer img {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  margin-right: 20px;
}
.comment .ranking__trainer figcaption {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 640px) {
  .comment .ranking__trainer figcaption {
    font-size: 18px;
  }
}
.comment .ranking__trainer figcaption .trainer_gym {
  display: flex;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .comment .ranking__trainer figcaption .trainer_gym {
    font-size: 12px;
  }
}
.comment .judges_comment {
  font-size: 16px;
  font-weight: 700;
}
.comment .judges_comment p {
  line-height: 1.4;
  color: #333;
  margin: 8px 0 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .comment .judges_comment p {
    font-size: 14px;
  }
}

.area_2023 {
  background-image: url(../images/area_bg.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.area_2023 .main_title {
  color: #fff;
  font-weight: 600;
  line-height: 140%; /* 56px */
  letter-spacing: 1.6px;
  text-shadow: none;
  margin: 92px 0 68px;
}

.area_result {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 840px;
}
.area_result.block-4 {
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .area_result.block-4 {
    justify-content: center;
  }
}
.area_result div {
  width: 48%;
  max-width: 400px;
  margin-bottom: 40px;
  background: #c0a650;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .area_result div {
    width: 92%;
  }
}
.area_result div.new::before {
  content: "";
  background-image: url(../images/new_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 88px;
  height: 88px;
  position: absolute;
  top: -13px;
}
@media screen and (max-width: 830px) {
  .area_result div.new::before {
    width: 64px;
    height: 64px;
    left: 8px;
    top: -14px;
  }
}
.area_result a,
.area_result .pre_release__a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 16px 0;
}
@media screen and (max-width: 640px) {
  .area_result a span,
.area_result .pre_release__a span {
    font-size: 4vw;
  }
}
.area_result a span::after,
.area_result .pre_release__a span::after {
  content: "→";
  margin-left: 24px;
}
@media screen and (max-width: 640px) {
  .area_result a span::after,
.area_result .pre_release__a span::after {
    margin-left: 12px;
  }
}
.area_result h2 {
  color: #fff;
  margin: 0;
  margin-bottom: 4px;
  padding: 0;
  font-size: 30px;
  text-shadow: none;
}
@media screen and (max-width: 640px) {
  .area_result h2 {
    font-size: 6vw;
  }
}
.area_result h2 span {
  font-size: 14pt;
  color: #c00;
}
@media screen and (max-width: 640px) {
  .area_result h2 span {
    font-size: 4vw;
  }
}

.mai_title h2 {
  color: #8b52a1;
  text-shadow: none;
  margin-bottom: 0;
}
.mai_title h3 {
  color: #ffc000;
  text-align: center;
  margin-top: 0;
}

.mai ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.mai li {
  width: 48%;
  list-style: none;
  margin: 0;
  padding: 0 0 40px 0;
}
@media screen and (max-width: 640px) {
  .mai li {
    width: 100%;
  }
}
.mai li img {
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=result.css.map */