* {
  padding: 0;
  margin: 0;
}

body.fixed {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
label,
input,
textarea {
  font-family: "M PLUS 1", sans-serif;
  color: #2e2e2e;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

a {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  ._sp {
    display: none;
  }
}

.container {
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 60px;
  background-color: #0077cd;
}
@media screen and (max-width: 1024px) {
  header {
    height: 45px;
  }
}
header .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 2.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  header .head {
    padding-right: 0;
  }
}
header .head_logo {
  font-size: clamp(13px, -0.268rem + 1.69vw, 20px);
  color: #fff;
  font-weight: 800;
  text-shadow: 3px 3px 0 #5caae2, -3px -3px 0 #5caae2, -3px 3px 0 #5caae2, 3px -3px 0 #5caae2, 0px 3px 0 #5caae2, 0 -3px 0 #5caae2, -3px 0 0 #5caae2, 3px 0 0 #5caae2;
}
@media screen and (max-width: 1024px) {
  header .head_logo {
    font-size: 15px;
    text-shadow: 2px 2px 0 #5caae2, -2px -2px 0 #5caae2, -2px 2px 0 #5caae2, 2px -2px 0 #5caae2, 0px 2px 0 #5caae2, 0 -2px 0 #5caae2, -2px 0 0 #5caae2, 2px 0 0 #5caae2;
  }
}
header .head_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 1024px) {
  header .head_nav {
    position: absolute;
    top: 45px;
    left: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    display: block;
    width: 70%;
    max-width: 250px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
header .head_nav.active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
header .head_nav_item:not(:last-of-type) {
  margin-right: clamp(10px, -7.067rem + 12.02vw, 60px);
}
@media screen and (max-width: 1024px) {
  header .head_nav_item:not(:last-of-type) {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .head_nav_item:nth-of-type(odd) {
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  header .head_nav_item:nth-of-type(even) {
    background-color: #f6f7f9;
  }
}
header .head_nav_item a {
  font-size: clamp(15px, 0.63rem + 0.48vw, 17px);
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  header .head_nav_item a {
    padding: 25px 0;
    font-size: 15px;
    color: #2e2e2e;
    text-align: center;
  }
}
header .head_ham {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .head_ham {
    position: relative;
    z-index: 10000;
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    background-color: #5caae2;
    cursor: pointer;
  }
}
header .head_ham span {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  border-radius: 1.5px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .head_ham span:first-of-type {
  top: calc(50% - 7px);
}
header .head_ham span:nth-of-type(2) {
  top: 50%;
  -webkit-transition: opacity 0.1s, visibility 0.1s, background-color 0.3s;
  transition: opacity 0.1s, visibility 0.1s, background-color 0.3s;
}
header .head_ham span:last-of-type {
  top: calc(50% + 7px);
}
header .head_ham.active span:first-of-type {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header .head_ham.active span:nth-of-type(2) {
  opacity: 1;
  visibility: hidden;
}
header .head_ham.active span:last-of-type {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.mv {
  width: 100%;
  padding: clamp(37px, 1.739rem + 1.19vw, 45px) 0 clamp(25px, 1.204rem + 0.75vw, 30px);
  background-color: #b8e5ff;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: clamp(30px, 1.563rem + 1.56vw, 37px) 0 clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.mv h1 {
  width: 80%;
  max-width: 755px;
  padding: clamp(17px, 0.489rem + 1.19vw, 25px) 0;
  margin: 0 auto clamp(17px, 0.489rem + 1.19vw, 25px);
  background-color: #fff;
  font-size: clamp(1.5rem, 0.64rem + 1.79vw, 2.25rem);
  color: #0077cd;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv h1 {
    width: 100%;
    max-width: none;
    padding: clamp(13px, 0.634rem + 0.89vw, 17px) 0;
    margin-bottom: clamp(13px, 0.634rem + 0.89vw, 17px);
    font-size: clamp(20px, 0.67rem + 2.9vw, 33px);
  }
}
.mv h2 {
  margin-bottom: clamp(17px, 0.489rem + 1.19vw, 25px);
  font-size: clamp(1.188rem, 0.614rem + 1.19vw, 1.688rem);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv h2 {
    margin-bottom: clamp(13px, 0.634rem + 0.89vw, 17px);
    font-size: clamp(17px, 0.795rem + 1.34vw, 23px);
  }
}
.mv_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 40%;
  max-width: 575px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv_img {
    width: 83%;
    max-width: 350px;
  }
}
.mv_img img:first-of-type {
  width: 57%;
}
.mv_img img:last-of-type {
  width: 40%;
}

.toc {
  width: 100%;
  padding: clamp(37px, 1.739rem + 1.19vw, 45px) 0;
  background-color: #f6f7f9;
}
@media screen and (max-width: 768px) {
  .toc {
    padding: clamp(30px, 1.563rem + 1.56vw, 37px) 0;
  }
}
.toc_title {
  margin-bottom: clamp(33px, -0.138rem + 3.28vw, 45px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .toc_title {
    margin-bottom: clamp(23px, 0.991rem + 2.23vw, 33px);
  }
}
.toc_title h2 {
  margin-bottom: clamp(23px, 0.936rem + 1.04vw, 30px);
  font-size: clamp(24px, 0.64rem + 1.79vw, 36px);
  color: #0077cd;
  font-weight: 900;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .toc_title h2 {
    margin-bottom: clamp(15px, 0.58rem + 1.79vw, 23px);
    font-size: clamp(20px, 1.027rem + 1.12vw, 24px);
  }
}
.toc_title p {
  font-size: clamp(14px, 0.732rem + 0.3vw, 16px);
  font-weight: 500;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .toc_title p {
    font-size: clamp(13px, 0.723rem + 0.45vw, 14px);
  }
}
.toc_cont {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.toc_cont_top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px clamp(20px, 0.892rem + 0.75vw, 25px);
  margin: 0 auto;
  border-radius: 7px 7px 0 0;
  background-color: #2e2e2e;
  font-size: clamp(15px, 0.794rem + 0.3vw, 17px);
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .toc_cont_top {
    padding: 3px clamp(15px, 0.714rem + 1.12vw, 20px);
    border-radius: 3px 3px 0 0;
    font-size: clamp(13px, 0.723rem + 0.45vw, 15px);
  }
}
.toc_cont_bottom {
  width: 90%;
  padding: clamp(33px, -0.138rem + 3.28vw, 45px) 3%;
  margin: 0 auto;
  border: 2px solid #2e2e2e;
  border-radius: 7px 7px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .toc_cont_bottom {
    width: 100%;
    padding: clamp(23px, 0.991rem + 2.23vw, 33px) 3%;
    border-width: 1px;
    border-radius: 3px 3px 0 0;
  }
}
.toc_cont_bottom_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
  padding: clamp(10px, 0.41rem + 0.45vw, 13px) 3%;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #e8eaee;
}
@media screen and (max-width: 768px) {
  .toc_cont_bottom_item {
    padding: clamp(7px, 0.304rem + 0.67vw, 10px) 5%;
  }
}
.toc_cont_bottom_item:not(:last-of-type) {
  margin-bottom: clamp(13px, 0.669rem + 0.3vw, 15px);
}
@media screen and (max-width: 768px) {
  .toc_cont_bottom_item:not(:last-of-type) {
    margin-bottom: clamp(10px, 0.491rem + 0.67vw, 13px);
  }
}
.toc_cont_bottom_item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(27px, 1.258rem + 0.89vw, 33px);
  aspect-ratio: 1/1;
  margin-right: clamp(13px, 0.669rem + 0.3vw, 15px);
  border-radius: 100%;
  background-color: #2e2e2e;
  font-size: clamp(17px, 0.848rem + 0.45vw, 20px);
  color: #fff;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .toc_cont_bottom_item span {
    width: clamp(23px, 1.259rem + 0.89vw, 27px);
    margin-right: clamp(10px, 0.491rem + 0.67vw, 13px);
    font-size: clamp(15px, 0.848rem + 0.45vw, 17px);
  }
}
.toc_cont_bottom_item span.gold {
  background-color: #c69518;
}
.toc_cont_bottom_item span.silver {
  background-color: #8c8c8c;
}
.toc_cont_bottom_item span.copper {
  background-color: #b96e4e;
}
.toc_cont_bottom_item h3 {
  font-size: clamp(17px, 0.848rem + 0.45vw, 20px);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .toc_cont_bottom_item h3 {
    font-size: clamp(15px, 0.848rem + 0.45vw, 17px);
  }
}

.point {
  width: 100%;
  padding: clamp(37px, 1.739rem + 1.19vw, 45px) 0;
  background-color: #f6f7f9;
}
@media screen and (max-width: 768px) {
  .point {
    padding: clamp(30px, 1.563rem + 1.56vw, 37px) 0;
  }
}
.point_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 85%;
  max-width: 450px;
  padding: clamp(13px, 0.526rem + 0.6vw, 17px) 10px clamp(13px, 0.526rem + 0.6vw, 17px) 15px;
  margin: 0 auto;
  border-radius: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #0077cd;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .point_btn {
    width: 100%;
    padding: clamp(10px, 0.491rem + 0.67vw, 13px) 10px clamp(10px, 0.491rem + 0.67vw, 13px) 15px;
    border-radius: 3px;
  }
}
.point_btn span {
  position: relative;
  display: block;
  width: clamp(25px, 1.204rem + 0.75vw, 30px);
  aspect-ratio: 1/1;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .point_btn span {
    width: clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.point_btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: clamp(25px, 1.204rem + 0.75vw, 30px);
  height: 4px;
  background-color: #5caae2;
}
@media screen and (max-width: 768px) {
  .point_btn span::before {
    width: clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.point_btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  width: clamp(25px, 1.204rem + 0.75vw, 30px);
  height: 4px;
  background-color: #5caae2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .point_btn span::after {
    width: clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.point_btn h2 {
  font-size: clamp(15px, 0.794rem + 0.3vw, 17px);
  color: #fff;
  font-weight: 700;
  line-height: 1.43;
  text-align: center;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .point_btn h2 {
    font-size: clamp(13px, 0.723rem + 0.45vw, 15px);
  }
}
.point_btn img {
  position: absolute;
  top: 50%;
  left: 97%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: clamp(65px, 3.346rem + 1.49vw, 75px);
}
@media screen and (max-width: 768px) {
  .point_btn img {
    width: clamp(55px, 2.991rem + 2.23vw, 65px);
  }
}
.point_btn.active span::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.point_cont {
  display: none;
  width: 100%;
  max-width: 450px;
  padding: 38px 14px 32px;
  margin: 0 auto;
  border-radius: 0 0 7px 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .point_cont {
    padding: clamp(23px, 0.991rem + 2.23vw, 33px) 5% clamp(20px, 1.027rem + 1.12vw, 25px);
    border-radius: 0 0 3px 3px;
  }
}
.point_cont_item:not(:last-of-type) {
  margin-bottom: clamp(25px, 1.204rem + 0.75vw, 30px);
}
@media screen and (max-width: 768px) {
  .point_cont_item:not(:last-of-type) {
    margin-bottom: clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.point_cont_item .heading {
  margin-bottom: clamp(7px, 0.223rem + 0.45vw, 10px);
  font-size: clamp(0.75rem, 0.463rem + 0.6vw, 1rem);
  font-weight: 800;
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  .point_cont_item .heading {
    margin-bottom: clamp(5px, 0.223rem + 0.45vw, 7px);
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  }
}
.point_cont_item .content {
  font-size: clamp(0.75rem, 0.463rem + 0.6vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .point_cont_item .content {
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  }
}
.point_cont_item .content span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #f1fd68));
  background: linear-gradient(transparent 0%, #f1fd68 0%);
  font-size: clamp(0.75rem, 0.463rem + 0.6vw, 1rem);
  font-weight: 500;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .point_cont_item .content span {
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  }
}

.ranking_cont_btn {
  width: 100%;
  max-width: 450px;
  padding: 13px 0;
  margin: 0 auto 100px;
  border-radius: 100px;
  background-color: #e361bf;
  -webkit-box-shadow: 2px 3px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 3px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ranking_cont_btn {
    padding: 10px 0;
    margin-bottom: 60px;
  }
}
.ranking_cont_btn:last-of-type {
  margin-bottom: 0;
}
.ranking_cont_btn p {
  font-size: clamp(17px, 0.848rem + 0.45vw, 20px);
  color: #fff;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .ranking_cont_btn p {
    font-size: clamp(15px, 0.848rem + 0.45vw, 17px);
  }
}
.ranking_cont_btn p span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 7px;
  font-size: clamp(15px, 0.794rem + 0.3vw, 17px);
  color: #fff;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .ranking_cont_btn p span {
    font-size: clamp(13px, 0.723rem + 0.45vw, 15px);
  }
}
.ranking_cont_btn p span img {
  width: clamp(15px, 0.794rem + 0.3vw, 17px);
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .ranking_cont_btn p span img {
    width: clamp(13px, 0.723rem + 0.45vw, 15px);
  }
}

.ranking_cont_btn.ranking_cont_btn--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .ranking_cont_btn.ranking_cont_btn--sp {
    display: block;
    margin-bottom: 30px;
  }
}

.ranking {
  width: 100%;
  padding: clamp(37px, 1.739rem + 1.19vw, 45px) 0;
  background-color: #f6f7f9;
}
@media screen and (max-width: 768px) {
  .ranking {
    padding: clamp(30px, 1.563rem + 1.56vw, 37px) 0;
  }
}
.ranking_cont {
  position: relative;
  width: 90%;
  padding: 20px 70px 70px 70px;
  margin: 0 auto 60px;
  border: 1px solid #2e2e2e;
  border-radius: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .ranking_cont {
    width: 100%;
    max-width: 500px;
    padding: clamp(15px, 0.848rem + 0.45vw, 17px) 5% clamp(30px, 1.563rem + 1.56vw, 37px);
    border-radius: 3px;
    margin: 0 auto 20px;
  }
}
.ranking_cont_num {
  position: absolute;
  top: -5px;
  left: 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(37px, 1.739rem + 1.19vw, 45px);
  aspect-ratio: 1/1.6666666667;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/ranking_num_bg04.png) no-repeat center/cover;
  font-size: clamp(20px, 0.892rem + 0.75vw, 25px);
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .ranking_cont_num {
    width: clamp(30px, 1.563rem + 1.56vw, 37px);
    font-size: clamp(17px, 0.929rem + 0.67vw, 20px);
  }
}
.ranking_cont_num.gold {
  background: url(../img/ranking_num_bg01.png) no-repeat center/cover;
}
.ranking_cont_num.silver {
  background: url(../img/ranking_num_bg02.png) no-repeat center/cover;
}
.ranking_cont_num.copper {
  background: url(../img/ranking_num_bg03.png) no-repeat center/cover;
}
.ranking_cont_title {
  width: 95%;
  margin: 0 0 clamp(37px, 1.739rem + 1.19vw, 45px) auto;
}
@media screen and (max-width: 768px) {
  .ranking_cont_title {
    width: 87%;
    margin-bottom: clamp(30px, 1.563rem + 1.56vw, 37px);
  }
}
.ranking_cont_title p {
  margin-bottom: clamp(10px, 0.41rem + 0.45vw, 13px);
  font-size: clamp(15px, 0.794rem + 0.3vw, 17px);
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .ranking_cont_title p {
    margin-bottom: clamp(7px, 0.304rem + 0.67vw, 10px);
    font-size: clamp(13px, 0.723rem + 0.45vw, 15px);
  }
}
.ranking_cont_title h2 {
  font-size: clamp(23px, 0.936rem + 1.04vw, 30px);
  font-weight: 800;
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  .ranking_cont_title h2 {
    font-size: clamp(17px, 0.795rem + 1.34vw, 23px);
  }
}
.ranking_cont_img {
  width: 100%;
  aspect-ratio: 775/411;
  margin-bottom: clamp(25px, 1.204rem + 0.75vw, 30px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 768px) {
  .ranking_cont_img {
    aspect-ratio: 314/167;
    margin-bottom: clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.ranking_cont_txt {
  margin-bottom: clamp(37px, 1.739rem + 1.19vw, 45px);
}
@media screen and (max-width: 768px) {
  .ranking_cont_txt {
    margin-bottom: clamp(30px, 1.563rem + 1.56vw, 37px);
  }
}
.ranking_cont_txt h3 {
  margin-bottom: clamp(30px, 1.517rem + 0.75vw, 35px);
  font-size: clamp(17px, 0.848rem + 0.45vw, 20px);
  font-weight: 800;
  line-height: 1.27;
}
@media screen and (max-width: 768px) {
  .ranking_cont_txt h3 {
    margin-bottom: clamp(23px, 1.125rem + 1.56vw, 30px);
    font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
  }
}
.ranking_cont_txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .ranking_cont_txt p {
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.ranking_cont_txt p span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FFBAF4));
  background: linear-gradient(transparent 0%, #FFBAF4 0%);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .ranking_cont_txt p span {
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.ranking_cont_detail {
  width: 100%;
  margin-bottom: clamp(37px, 1.739rem + 1.19vw, 45px);
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail {
    margin-bottom: clamp(30px, 1.563rem + 1.56vw, 37px);
  }
}
.ranking_cont_detail h3 {
  padding-bottom: 7px;
  margin-bottom: clamp(25px, 1.204rem + 0.75vw, 30px);
  border-bottom: 2px solid #0077cd;
  font-size: clamp(17px, 0.848rem + 0.45vw, 20px);
  font-weight: 800;
  line-height: 1.27;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail h3 {
    margin-bottom: clamp(20px, 1.027rem + 1.12vw, 25px);
    font-size: clamp(15px, 0.848rem + 0.45vw, 17px);
  }
}
.ranking_cont_detail ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.ranking_cont_detail ul li:not(:last-of-type) {
  margin-bottom: clamp(7px, 0.223rem + 0.45vw, 10px);
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail ul li:not(:last-of-type) {
    margin-bottom: clamp(5px, 0.223rem + 0.45vw, 7px);
  }
}
.ranking_cont_detail ul li .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(107px, 5.255rem + 2.98vw, 127px);
  padding: 7px 0px;
  margin-right: 10px;
  background-color: #e8eaee;
  font-size: clamp(15px, 0.794rem + 0.3vw, 17px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail ul li .heading {
    width: clamp(85px, 4.33rem + 4.91vw, 107px);
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.ranking_cont_detail ul li .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail ul li .content {
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.ranking_cont_detail ul li .content .num {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail ul li .content .num {
    font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
  }
}
.ranking_cont_detail ul li .content .text {
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .ranking_cont_detail ul li .content .text {
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.ranking_cont_voice {
  width: 100%;
}
.ranking_cont_voice h3 {
  padding-bottom: 7px;
  margin-bottom: clamp(25px, 1.204rem + 0.75vw, 30px);
  border-bottom: 2px solid #0077cd;
  font-size: clamp(17px, 0.848rem + 0.45vw, 20px);
  font-weight: 800;
  line-height: 1.27;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ranking_cont_voice h3 {
    margin-bottom: clamp(20px, 1.027rem + 1.12vw, 25px);
    font-size: clamp(15px, 0.848rem + 0.45vw, 17px);
  }
}
.ranking_cont_voice_items {
  margin-inline: auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .ranking_cont_voice_items {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ranking_cont_voice_items_item:nth-child(2) {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .ranking_cont_voice_items_item:nth-child(2) {
    margin-left: initial;
    margin-top: 20px;
  }
}
.ranking_cont_voice .ranking_cont_voice_items {
  width: 95%;
}
@media screen and (max-width: 768px) {
  .ranking_cont_voice .ranking_cont_voice_items {
    width: 100%;
  }
}

.ranking_cont_voice_items.ranking_cont_voice_items2 {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.ranking-voice-item2 {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #E8EAEE;
  padding: 20px 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .ranking-voice-item2 {
    padding: 20px 10px;
  }
}
.ranking-voice-item2:nth-child(2) {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .ranking-voice-item2:nth-child(2) {
    margin-left: initial;
    margin-top: 34px;
  }
}
.ranking-voice-item2_head {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ranking-voice-item2_head {
    font-size: 16px;
  }
}
.ranking-voice-item2_name {
  margin-top: 20px;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ranking-voice-item2_name {
    margin-top: 8px;
  }
}
.ranking-voice-item2_text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ranking-voice-item2_text {
    font-size: 12px;
  }
}

.identify {
  width: 100%;
  padding: clamp(37px, 1.739rem + 1.19vw, 45px) 0 clamp(75px, 3.613rem + 2.24vw, 90px);
  background-color: #f6f7f9;
}
@media screen and (max-width: 768px) {
  .identify {
    padding: clamp(30px, 1.563rem + 1.56vw, 37px) 0 clamp(60px, 3.08rem + 3.35vw, 75px);
  }
}
.identify_title {
  width: 90%;
  padding: clamp(13px, 0.669rem + 0.3vw, 15px) 3% clamp(13px, 0.669rem + 0.3vw, 15px) 120px;
  margin: 0 auto 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  background-color: rgba(0, 119, 205, 0.8);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  position: relative;
}
.identify_title::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(3.125rem, 1.692rem + 2.98vw, 4.375rem);
  height: 120px;
  background-image: url(../_img/point_img.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .identify_title::before {
    right: 5%;
    width: clamp(3.438rem, 2.543rem + 3.82vw, 4.375rem);
    height: clamp(4.375rem, 3.182rem + 5.09vw, 5.625rem);
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@media screen and (max-width: 768px) {
  .identify_title {
    width: 100%;
    max-width: 500px;
    padding: 10px 20px;
    margin-bottom: clamp(15px, 0.848rem + 0.45vw, 17px);
    font-size: clamp(0.875rem, 0.277rem + 2.55vw, 1.5rem);
  }
}
.identify_txt {
  width: 80%;
  margin: 0 auto clamp(37px, 1.739rem + 1.19vw, 45px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .identify_txt {
    width: 95%;
    max-width: 500px;
    margin-bottom: clamp(30px, 1.563rem + 1.56vw, 37px);
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.identify_cont {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .identify_cont {
    width: 95%;
    max-width: 500px;
  }
}
.identify_cont_item:not(:last-of-type) {
  margin-bottom: clamp(25px, 1.204rem + 0.75vw, 30px);
}
@media screen and (max-width: 768px) {
  .identify_cont_item:not(:last-of-type) {
    margin-bottom: clamp(20px, 1.027rem + 1.12vw, 25px);
  }
}
.identify_cont_item h3 {
  margin-bottom: clamp(13px, 0.669rem + 0.3vw, 15px);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .identify_cont_item h3 {
    margin-bottom: clamp(10px, 0.491rem + 0.67vw, 13px);
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.identify_cont_item p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .identify_cont_item p {
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}
.identify_cont_item p span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #f1fd68));
  background: linear-gradient(transparent 0%, #f1fd68 0%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .identify_cont_item p span {
    font-size: clamp(0.75rem, 0.571rem + 0.77vw, 0.938rem);
  }
}

.backtop {
  position: fixed;
  top: 97%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 93%;
  max-width: 450px;
  border-radius: 100px;
  background-color: #E361BF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.backtop.active {
  opacity: 1;
  visibility: visible;
}
.backtop p {
  font-size: clamp(15px, 0.794rem + 0.3vw, 17px);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .backtop p {
    font-size: clamp(13px, 0.723rem + 0.45vw, 15px);
  }
}
.backtop img {
  width: clamp(15px, 0.794rem + 0.3vw, 17px);
  margin-left: clamp(15px, 0.794rem + 0.3vw, 17px);
  padding: clamp(17px, 0.848rem + 0.45vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  .backtop img {
    width: clamp(13px, 0.723rem + 0.45vw, 15px);
    margin-left: clamp(13px, 0.723rem + 0.45vw, 15px);
    padding: clamp(15px, 0.848rem + 0.45vw, 17px) 0;
  }
}

.voice_cont {
  overflow: hidden;
  padding: 40px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .voice_cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.voice_cont .slick-list {
  overflow: visible;
}
.voice_cont .voice_cont_item {
  padding: 10px 12px;
  background-color: #D9D9D9;
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item {
    width: initial;
  }
}
.voice_cont .voice_cont_item:nth-child(2) {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item:nth-child(2) {
    margin-left: initial;
    margin-top: 20px;
  }
}
.voice_cont .voice_cont_item_img {
  width: 100%;
  aspect-ratio: 3/2;
}
.voice_cont .voice_cont_item_img img {
  border-radius: 7px 7px 0 0;
}
.voice_cont .voice_cont_item_txt {
  padding: 20px 5% 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 7px 7px;
}
.voice_cont .voice_cont_item_txt h4 {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item_txt h4 {
    font-size: clamp(17px, 0.969rem + 0.47vw, 20px);
  }
}
.voice_cont .voice_cont_item_txt span {
  display: block;
  margin-bottom: 17px;
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item_txt span {
    font-size: clamp(13px, 0.75rem + 0.31vw, 15px);
  }
}
.voice_cont .voice_cont_item_txt p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item_txt p {
    font-size: clamp(13px, 0.75rem + 0.31vw, 15px);
  }
}
.voice_cont .voice_cont_item_txt p.more {
  display: none;
}
.voice_cont .voice_cont_item_txt a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  font-size: 14px;
  color: #E361BF;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item_txt a {
    font-size: clamp(13px, 0.75rem + 0.31vw, 15px);
  }
}
.voice_cont .voice_cont_item_txt a img {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
}
@media screen and (max-width: 768px) {
  .voice_cont .voice_cont_item_txt a img {
    left: calc(100% + clamp(13px, 0.75rem + 0.31vw, 15px));
    width: clamp(13px, 0.75rem + 0.31vw, 15px);
  }
}
.voice_cont .voice_cont_item.active a img {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.voice_cont .slide-arrow {
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 50%;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .voice_cont .slide-arrow {
    width: 40px;
  }
}
.voice_cont .prev-arrow {
  left: 15px;
  z-index: 2;
}
.voice_cont .next-arrow {
  right: 15px;
  z-index: 3;
}