html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  color: #072d69;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", "Jost", sans-serif;
}

input {
  font-family: "Noto Sans JP", "Jost", sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font: inherit;
  background: #f4f8ff;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadein,
.fadei {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  transition: all 500ms;
}

.fadein.scrollin,
.fadei.scrollin,
.fadein.is-visible,
.fadei.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #072d69;
  text-decoration: none;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.8;
}

img,
iframe {
  vertical-align: bottom;
  max-width: 100%;
  background: transparent;
  transition: 0.3s;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

.grecaptcha-badge {
  display: none;
}

.clear:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.df {
  display: flex;
}

.sb {
  justify-content: space-between;
}

.fw {
  flex-wrap: wrap;
}

.dg {
  display: grid;
}

.w90 {
  margin: 0 auto;
  width: 90%;
}

header {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  padding: 1vw;
  box-sizing: border-box;
  align-items: center;
  z-index: 20;
  box-shadow: 0 0 30px #034aa71a;
}

header h1 {
  width: 12vw;
}

.headRight {
  display: flex;
  flex-direction: row-reverse;
}

.headMenu ul li {
  margin-left: 2vw;
}

.headMenu ul li a {
  font-size: 1.2vw;
  position: relative;
  font-weight: 600;
}

.headMenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3vw;
  width: 0;
  height: 0;
  border-bottom: 2px solid rgb(106 118 141);
  transition: width 0.25s ease;
}

.headMenu ul li a:hover::after {
  width: 100%;
}

.headSearch {
  display: flex;
  margin: .2vw 1vw 0 2vw;
}

.headSearch img {
  width: 1.5vw;
  height: 1.5vw;
  cursor: pointer;
}

.headSearch form {
  position: absolute;
  top: 7.2vw;
  background: #fff;
  right: 0;
  padding: 1vw 2vw;
  box-sizing: border-box;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  justify-content: space-between;
  display: flex;
  transition: .3s;
  border-radius: .5vw;
}

.headSearch.on form {
  opacity: 1;
  pointer-events: auto;
}

.headSearch form input[type="text"] {
  padding: .5vw 1vw;
  border: 1px solid #ddd;
  font-size: 1.2vw;
}

.headSearch form button {
  border: none;
  background: #034aa7;
  color: #fff;
  padding: 0 1vw;
  font-size: 1vw;
}

.lineCta1 {
  position: fixed;
  right: 1vw;
  bottom: 1vw;
  background: url(../../images/rating/ctaBg.jpg) 0 0 no-repeat;
  background-size: cover;
  background-position: center;
  border: .3vw solid #fff;
  padding: 1.2vw 2.4vw;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  font-size: 2vw;
  display: flex;
  align-items: center;
  z-index: 20;
}

.lineCta1:hover {
  border: .3vw solid #072d69;
}

.lineCta1 img {
  width: 1.2vw;
  margin-left: .6vw;
}

article {
  padding-top: 6.2vw;
}

.topFv {
  display: flex;
  align-items: center;
  padding-top: 3%;
}

.fvRight {
  width: 50%;
}

.topAbout {
  background: #fff;
  box-shadow: 1vw 0 2vw rgb(7 41 93 / 20%);
  border-radius: 1vw;
  padding: 3vw 3vw 2vw;
  box-sizing: border-box;
  width: 90%;
  margin: 4vw auto 0;
  position: relative;
}

.topFvSwiper {
  width: 90%;
  margin: 0 5% 5%;
}

.topFvSwiper .swiper-pagination {
  position: relative;
  bottom: .1vw;
  z-index: 5;
}

.swiper-pagination-bullet {
  width: 2vw;
  height: .2vw;
  border-radius: 0;
  background: #5596ea;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0a214b;
}

.topAbout .box1 h2 {
  position: absolute;
  top: -2vw;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  background: #034aa7;
  color: #fff;
  font-weight: 900;
  padding: .6vw 2vw;
  border-radius: 10vw;
  font-size: 1.4vw;
}

.topAbout .sterBox {
  width: fit-content;
  margin: 0 auto;
}

.topAbout .sterBox img {
  width: 2vw;
}

.topAbout .box1 h3 {
  position: relative;
  margin: 1vw 0 2vw;
}

.topAbout .box1 h3 span {
  font-size: 2vw;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

.topAbout .box1 h3:after {
  content: "";
  background: url(../../images/rating/line1.png)0 0 no-repeat;
  background-size: 100%;
  width: 16.5vw;
  height: 1vw;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.topAbout .box1 p {
  font-size: 1.5vw;
  font-weight: 900;
  letter-spacing: 0;
}

.topAbout .chara1_1 {
  position: absolute;
  top: 0;
  width: 8vw;
  left: 2vw;
  top: -5vw;
  z-index: 1;
}

.topAbout .chara2_1 {
  position: absolute;
  width: 7vw;
  right: 2vw;
  top: -5.5vw;
  z-index: 1;
}

.tit1 {
  color: #072d69;
  font-size: 3vw;
  font-weight: 900;
  text-align: center;
}

.tit1 span {
  display: block;
  color: #072d69;
  font-size: 1vw;
  font-weight: 500;
  text-align: center;
  margin-bottom: -1vw;
  font-family: 'Jost';
}

.topMenu {
  width: 50%;
}

.topMenu ul {
  grid-column: auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1vw;
  width: 90%;
  margin: 3% auto;
}

.topMenu ul li a {
  background: #fff;
  display: block;
  padding: 1.4vw 1vw;
  border-radius: 1vw;
  box-shadow: .3vw .3vw .8vw rgb(7 41 93 / 20%);
}

.topMenu ul li a:hover {
  background: #3e5b89;
}

.topMenu ul li a p {
  text-align: center;
  font-size: 1.4vw;
  font-weight: 900;
  line-height: 1.4;
}

.topMenu ul li a:hover p {
  color: #fff;
}

.topMenu ul li a img {
  width: 50%;
  margin: 7% auto 0;
  display: block;
}

.topRankingList {
  margin: 10vw auto;
}

.tit2 {
  background: #034aa7;
  text-align: center;
  color: #fff;
  font-size: 2vw;
  font-weight: 900;
  letter-spacing: 0;
  padding: 2vw 0 1vw;
  position: relative;
}

.tit2 .en {
  color: #fff;
  display: block;
  font-size: 1.4vw;
  letter-spacing: .3vw;
  margin-bottom: -.4vw;
  font-family: "Jost";
  font-weight: 500;
}

.tit2 .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fdcc00;
  margin: .7vw 0;
  position: relative;
}

.tit2 .line:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fdcc00;
  position: absolute;
  bottom: -8px;
}

.tit2:before {
  content: "";
  display: block;
  background: #034aa7;
  width: 9vw;
  height: 9vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  top: -4vw;
  z-index: -1;
}

.tit2:after {
  content: "";
  display: block;
  background: url(../../images/rating/iconCrown.png)0 0 no-repeat;
  background-size: 100%;
  width: 5vw;
  height: 4vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -2.4vw;
}

.rankingListBlock1 {
  background: #fff;
  width: 90%;
  margin: 5% auto;
  border-radius: 1vw;
  padding: 5%;
  box-shadow: .3vw .3vw .8vw rgb(7 41 93 / 20%);
  box-sizing: border-box;
}

.sp {
  display: none;
}

.rankingListBlock1 .rankingInner {
  overflow: auto;
}

.rankingInner table tr>* {
  border: 1px solid #e1eaf6;
  padding: 1vw 1.6vw;
  text-align: center;
  letter-spacing: 0;
  font-weight: 500;
}

.rankingListBlock1 table tr:nth-child(even) {
  background: #f4f8ff;
}

.rankingListBlock1 table tr:hover {
  background: #e1eaf6;
}

.rankingListBlock1 table tr th {
  background: #072d69;
  color: #fff;
  font-weight: 900;
  font-size: 1.1vw;
}

.rankingListBlock1 table tr td {
  padding: 1vw;
  font-size: 1.2vw;
}

.rankingListBlock1 table tr td.star {
  text-align: center;
  font-family: "Jost";
}

.rankingListBlock1 table tr td a {
  color: #034aa7;
  font-weight: 900;
  border-bottom: .1vw solid #034aa7;
}

.rankingListBlock1 .rankingInner table {
  width: max(1090px, 82vw);
}

.rankingListBlock1 table tr td:nth-child(1) {
  text-align: left;
}

.rankingListBlock1 table tr td.star img {
  width: 1.5vw;
  position: relative;
  top: -0.3vw;
  margin-right: .3vw;
}

.rankingListBlock1 .txt1 {
  margin-top: 1vw;
  text-align: right;
  font-size: 1.2vw;
  font-weight: 400;
}

.rankingListBlock2 {
  margin: 0 auto;
  width: 90%;
  background: url(../../images/rating/rankingBg.jpg);
  border-radius: 1vw;
  box-sizing: border-box;
  padding: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rankingBox1 .rankingTit {
  width: 20%;
  margin: 0 auto;
  background: url(../../images/rating/rankingNum2.png)0 0 no-repeat;
  background-size: 100%;
}

.rankingBox1 .rankingTit img {
  margin: 0 auto;
  display: block;
  width: 50%;
  padding-top: .5vw;
}

.rankingBox1 .rankingTit span {
  text-align: center;
  display: block;
  color: #fff;
  font-family: "Jost";
  font-weight: 500;
  padding-top: .2vw;
  font-size: 2vw;
}

.rankingCard {
  background: #fff;
  margin-top: 2%;
  width: 100%;
  box-sizing: border-box;
  padding: 5%;
  border-radius: 1vw;
  box-shadow: .4vw .4vw 1vw #034aa742;
}

.rankingCard .imgHov {
  overflow: hidden;
}

.rankingCard .imgHov img {
  width: 100%;
  transition: .3s;
}

.rankingCard a:hover .imgHov img {
  transform: scale(1.1);
}

.rankingCard a h3 {
  text-align: center;
  font-size: 4vw;
  font-weight: 900;
  letter-spacing: 0;
  margin: 1vw 0;
}

.rankingCard .linkList {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.rankingCard .linkList a {
  background: #072d69;
  color: #fff;
  font-size: 1.3vw;
  font-weight: 700;
  padding: .6vw 0;
  width: 30%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 10vw;
  border: .1vw solid #072d69;
}

.rankingCard .linkList a:nth-child(2) {
  background: #034aa7;
  border: .1vw solid #034aa7;
}

.rankingCard .linkList a:nth-child(3) {
  background: #f1c306;
  border: .1vw solid #f1c306;
}

.rankingCard .linkList a:hover {
  color: #072d69;
  background: #fff;
  border: .1vw solid #072d69;
}

.rankingBox1 {
  width: 100%;
  margin-bottom: 5%;
}

.rankingBox1.no2,
.rankingBox1.no3 {
  width: 47.5%;
}

.rankingBox1.no2 .rankingTit span,
.rankingBox1.no3 .rankingTit span {
  font-size: 1vw;
}

.rankingBox1.no2 .rankingCard a h3,
.rankingBox1.no3 .rankingCard a h3 {
  font-size: 2vw;
}

.rankingBox2,
.rankingSlide {
  width: 33%;
  margin: 0;
}

.rankingSlide .rankingBox2 {
  width: 100%;
}

.rankingSlide .swiper-slide {
  width: 100%;
  height: auto;
}

.rankingSwiper {
  position: relative;
}

.rankingSwiper .swiper-button-prev,
.rankingSwiper .swiper-button-next {
  width: 2vw;
  height: 4vw;
  margin-top: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  background: url(../../images/rating/arrow6.jpg) center / contain no-repeat;
  z-index: 10;
}

.rankingSwiper .swiper-button-prev::after,
.rankingSwiper .swiper-button-next::after {
  display: none;
}

.rankingSwiper .swiper-button-next {
  transform: translateY(-50%) scaleX(-1);
}

.rankingSwiper .swiper-button-prev {
  left: 0;
}

.rankingSwiper .swiper-button-next {
  right: 0;
}

.rankingSwiper .swiper-button-prev.swiper-button-disabled,
.rankingSwiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.rankingBox2 .rankingCard>a {
  align-items: center;
}

.rankingBox2 .rankingCard>a .rankingTit {
  width: 50%;
}

.rankingBox2 .rankingCard>a .rankingTit span {
  text-align: center;
  display: block;
  font-family: "Jost";
  font-weight: 700;
  padding-top: .2vw;
  font-size: 1.3vw;
  margin: 0 auto;
  background: url(../../images/rating/rankingNum.png) 0 0 no-repeat;
  background-size: 100%;
  width: 50%;
  padding-bottom: 5%;
}

.rankingBox2 .rankingCard>a .imgHov {
  width: 50%;
}

.rankingBox2 .rankingCard>a .rankingTit {
  width: 50%;
  font-size: 1.4vw;
  text-align: center;
  font-weight: 900;
}

.rankingBox2 .rankingCard .linkList {
  margin-top: 5%;
}

.rankingBox2 .rankingCard .linkList a {
  font-size: 0.8vw;
}

.rankingLinkBox {
  align-items: center;
  justify-content: center;
  margin: 4% auto 0;
  width: 100%;
}

.rankingLinkBox a {
  background: #072d69;
  color: #fff;
  padding: 2.5% 4%;
  font-size: 2vw;
  display: block;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border: .2vw solid #fff;
  border-radius: 1vw;
  position: relative;
  transition: .3s;
}

.rankingLinkBox a span {
  font-size: 1.6vw;
  color: #fff;
  transition: .3s;
}

.rankingLinkBox a:hover,
.rankingLinkBox a:nth-child(2):hover {
  background: #fff;
  color: #072d69;
  border: .2vw solid #072d69;
}

.rankingLinkBox a:hover span {
  color: #072d69;
}

.rankingLinkBox a:nth-child(2) {
  margin-left: 1%;
  background: #ed1f1a;
}

.rankingLinkBox a:hover:after {
  background: url(../../images/rating/arrow2.png)0 0 no-repeat;
  background-size: 100%;
}

.rankingLinkBox a:after {
  content: "";
  display: block;
  width: 1.2vw;
  height: 2.1vw;
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../../images/rating/arrow5.png)0 0 no-repeat;
  background-size: 100%;
}

.topReportList {
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

.tit3 {
  border-bottom: 3px solid #034aa7;
  width: 74%;
  margin: 0 auto;
}

.tit3 span {
  background: #034aa7;
  color: #fff;
  font-size: 1.6vw;
  font-weight: 700;
  padding: 1% 8% 1.6%;
  border-radius: 5vw;
  margin: 0 auto 5%;
  display: block;
  width: fit-content;
}

.tit3 h2 {
  font-size: 2.2vw;
  font-weight: 900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tit3 h2 img {
  width: 2vw;
  margin: 0 1%;
}

.topReportList section {
  background: #e1eaf6;
  padding: 4%;
  width: 42%;
  box-sizing: border-box;
}

.reportList {
  background: #fff;
  margin-top: 7%;
  border-radius: 1vw;
  box-shadow: .4vw .4vw 1vw rgb(8 45 105 / 50%);
}

.reportList h3 {
  text-align: center;
  font-size: 1.4vw;
  font-weight: 500;
  color: #034aa7;
  font-family: "Jost";
}

.reportList {
  background: #fff;
  margin-top: 7%;
  border-radius: 1vw;
  box-shadow: .4vw .4vw 1vw rgb(8 45 105 / 50%);
  padding: 5% 7%;
  position: relative;
}

.reportList ul {
  margin-top: 7%;
}

.reportList ul li a {
  display: flex;
  width: 100%;
  border-bottom: 2px solid #c3d6f0;
  padding: 4% 0 2%;
  align-items: center;
}

.reportList ul li a .day {
  margin-right: 6%;
  font-family: "Jost";
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1vw;
  color: #044aa7;
}

.reportList ul li a h4 {
  font-size: 1.2vw;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}

.linkBtn1 {
  font-size: 1.4vw;
  margin: 8% auto;
  width: fit-content;
  border: .2vw solid #072d69;
  padding: 2% 10% 2% 6%;
  display: block;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 1vw;
  position: relative;
}

.linkBtn1:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  width: 0.9vw;
  height: 1.4vw;
  background: url(../../images/rating/arrow2.png)0 0 no-repeat;
  background-size: 100%;
  margin: auto;
}

.linkBtn1:hover {
  background: #072d69;
  color: #fff;
}

.linkBtn1:hover:after,
.topReportList .paidBlock .linkBtn1:hover:after {
  background: url(../../images/rating/arrow5.png)0 0 no-repeat;
  background-size: 100%;
}

.reportList>img {
  position: absolute;
  right: 0;
  width: 24%;
  bottom: -2vw;
}

.topReportList section.paidBlock {
  background: #fbd8d8;
}

.topReportList .paidBlock .tit3 {
  border-bottom: 3px solid #ed1f1a;
}

.topReportList .paidBlock .tit3 span {
  background: #ed1f1a;
}

.topReportList .paidBlock .tit3 h2 {
  color: #d00e09;
}

.topReportList .paidBlock .reportList {
  box-shadow: .4vw .4vw 1vw rgb(237 30 26 / 22%);
}

.topReportList .paidBlock .reportList h3,
.topReportList .paidBlock .reportList ul li a .day {
  color: #ed1f1a;
}

.topReportList .paidBlock .reportList ul li a {
  border-bottom: 2px solid #f5aaa7;
}

.topReportList .paidBlock .linkBtn1 {
  border: .2vw solid #d00e09;
  color: #d00e09;
}

.topReportList .paidBlock .linkBtn1:after {
  background: url(../../images/rating/arrow3.png)0 0 no-repeat;
  background-size: 100%;
}

.topReportList .paidBlock .linkBtn1:hover {
  background: #d00e09;
  color: #fff;
}

.topRating {
  width: 90%;
  margin: 10% auto 0;
}

.topRating {
  width: 90%;
  margin: 10% auto 0;
  background: #034aa7;
  border: .4vw solid #034aa7;
  border-radius: 1vw;
  padding-bottom: 4%;
}

.tit4 {
  border-radius: .6vw .6vw 0 0;
  background: #fff;
  text-align: center;
  padding: 2% 0;
  position: relative;
}

.starBox {
  margin: 0 auto;
  display: block;
  max-width: 20%;
}

.starBox img {
  width: 30%;
}

.tit4 h2 {
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 0;
}

.tit4 .en {
  font-family: 'Jost';
  font-weight: 500;
  letter-spacing: .2vw;
  margin: .4% 0 0;
  display: block;
  color: #034aa7;
}

.tit4:after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: #fff;
  position: absolute;
  bottom: -1vw;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  margin: auto;
}

.ratingList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2%;
}

.ratingList li {
  width: 48%;
}

.ratingList li a {
  width: 100%;
  background: #fff;
  display: block;
  padding: 4% 13% 4% 3%;
  box-sizing: border-box;
  margin-top: 4%;
  border-radius: 1vw;
  position: relative;
}

.ratingList li a .daycat {
  align-items: center;
}

.ratingList li a .daycat .day {
  letter-spacing: 0;
  font-family: 'Jost';
  font-weight: 600;
  margin-right: 2%;
  font-size: 1.25vw;
  color: #034aa7;
}

.ratingList li a .daycat .cat {
  background: #e1eaf6;
  font-size: .8vw;
  padding: .5% 3%;
  border-radius: 4vw;
  font-weight: 700;
}

.ratingList li a h3 {
  color: #000;
  margin-top: 1%;
  font-weight: 500;
  font-size: 1.25vw;
}

.ratingList li a:after {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  background: url(../../images/rating/arrow4.png)0 0 no-repeat;
  background-size: 100%;
  background-position: center;
  margin: auto;
  transition: .3s;
}

.ratingList li a:hover:after {
  right: 1%;
}

.tit4 h2 span {
  font-size: 2.6vw;
  margin: 0 .2%;
}

.linkBtn2 {
  background: #fff;
  font-size: 2vw;
  letter-spacing: 0;
  padding: 1% 6% 1% 3%;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
  border-radius: 1vw;
  color: #034aa7;
  margin-top: 3%;
  position: relative;
}

.linkBtn2:after {
  content: "";
  display: block;
  width: 1.2vw;
  height: 1.9vw;
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../../images/rating/arrow7.png)0 0 no-repeat;
  background-size: 100%;
}

.linkBtn2:hover {
  background: #072d69;
  color: #fff;
}

.linkBtn2:hover:after {
  background: url(../../images/rating/arrow5.png)0 0 no-repeat;
  background-size: 100%;
}

.topBeginner {
  background: #fdcc00;
  margin-top: 10%;
  padding: 5%;
  box-sizing: border-box;
}

.topBeginner .inner .iconBeginner {
  position: absolute;
  z-index: 2;
  right: 8%;
  top: -6%;
  width: 9%;
}

.tit5 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tit5 .en {
  font-family: 'Jost';
  font-weight: 500;
  letter-spacing: .2vw;
  margin: .4% 0 1%;
  text-align: center;
  justify-content: center;
  display: block;
  width: 100%;
  font-size: 1.25vw;
  color: #044aa7;
}

.tit5 .blue,
.tit5 .green {
  background: #034aa7;
  color: #fff;
  font-size: 1.8vw;
  padding: .4% 1% .8%;
  border-radius: 1vw;
  letter-spacing: 0;
  font-weight: 700;
}

.tit5 .green {
  background: #048042;
  margin-left: 1%;
}

.topBeginner .inner .txt1 {
  color: #072d69;
  text-align: center;
  font-size: 1.6vw;
  font-weight: 700;
  margin: 2% 0;
}

.circleBox {
  margin: 0 auto;
  width: 56%;
  justify-content: space-between;
}

.circleBox a {
  width: 15vw;
  height: 15vw;
  background: #034aa7;
  border-radius: 50%;
  position: relative;
}

.circleBox a .bg {
  border: .3vw solid #fff;
  border-radius: 50%;
  width: 13vw;
  height: 13vw;
  margin: auto;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circleBox a .bg .border .txt {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 2.4vw;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
}

.circleBox a.green {
  background: #048042;
}

.circleBox a.red {
  background: #d00e09;
}

.topBeginner .linkBtn2 {
  border: .2vw solid #034aa7;
  margin-top: 4%;
  font-size: 1.5vw;
}

.topBeginner .inner {
  position: relative;
  background: #fff;
  border: .2vw solid #000;
  padding: 3% 0 5%;
  border-radius: .5vw;
}

.circleBox a .bg .border .txt img {
  width: 1vw;
  margin-left: .6vw;
  margin-bottom: 0.7vw;
}

.circleBox a:hover {
  background: #fdcc00;
}

.topVoice {
  margin-top: 10%;
}

.tit6 {
  width: 40%;
  margin: auto auto 4%;
  position: relative;
}

.tit6 img {
  position: absolute;
  inset: 0;
  top: 37% !important;
  margin: auto;
  z-index: -1;
}

.tit6 .en {
  font-family: 'Jost';
  font-weight: 500;
  letter-spacing: .2vw;
  margin: 0;
  text-align: center;
  justify-content: center;
  display: block;
  width: 100%;
  font-size: 1.25vw;
  color: #034aa7;
}

.tit6 h2 {
  font-size: 3vw;
  font-weight: 700;
  padding: 0 4%;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.tit6 h2 span {
  line-height: 1.2;
}

.tit6 h2 .small {
  font-size: 2.2vw;
  font-weight: 900;
}

.tit6 h2 .big {
  font-size: 4vw;
  font-weight: 900;
}

.voiceList {
  width: 80%;
  margin: 0 auto;
  padding-top: 5%;
}

.voiceList li {
  background: #fff;
  padding: 4%;
  margin-bottom: 3%;
  box-shadow: .4vw .4vw 1vw rgb(8 45 105 / 30%);
  align-items: center;
}

.voiceList li img {
  width: 20%;
  margin-right: 5%;
}

.voiceList li .txtBox {
  width: 75%;
}

.voiceList li .txtBox h3 {
  font-size: 2vw;
  font-weight: 700;
}

.voiceList li .txtBox p {
  font-size: 1.2vw;
  font-weight: 500;
  margin: 2% 0 3%;
  color: #000;
}

.voiceList li .txtBox a {
  font-size: 1vw;
  font-weight: 700;
  color: #034aa7;
  text-decoration: underline;
}

.linkBtn2.ver2 {
  border: .2vw solid #034aa7;
}

.ctaBnr1 {
  margin: 7% auto 0;
  display: block;
  width: fit-content;
  max-width: 90%;
  animation: ctaBnrFloat 1s ease-in-out infinite;
  will-change: transform;
  transform: translateY(0);
}

@keyframes ctaBnrFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1vw);
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .fadein,
  .fadei {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ctaBnr1 {
    animation: none;
  }
}

.ctaBnr1:hover {
  animation: unset;
}

footer {
  margin-top: 7%;
}

.fbox1 .box1 {
  align-items: stretch;
  justify-content: space-around;
  width: 36%;
  margin: 0 auto;
}

.fbox1 .box1 li {
  width: 46%;
  display: flex;
  align-items: center;
  box-shadow: .4vw .4vw 1vw #034aa742;
  transition: .3s;
}

.fbox1 .box1 li a {
  background: #fff;
  display: block;
  padding: 10% 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.3vw;
  font-weight: 700;
  color: #fff;
  border: .1vw solid #ffffff00;
  box-sizing: border-box;
}

.fbox1 .box1 li a:hover {
  transform: translate(.4vw, .4vw);
  box-shadow: .4vw .4vw 1vw #034aa700;
}

.fbox1 .box1 li:hover {
  box-shadow: .4vw .4vw 1vw transparent;
}

.fbox1 .box1 li.txt a {
  background: #034aa7;
}

.fbox1 .box1 li a img {
  margin: auto;
  display: block;
}

.fbox1 .box2 {
  margin-top: 4%;
}

.fbox1 .box2 h2 {
  text-align: center;
  font-size: 1.6vw;
  font-weight: 700;
  display: block;
}

.placeList {
  width: 80%;
  margin: 2% auto 0;
}

.placeList a {
  font-size: 1vw;
  text-decoration: underline;
}

.fbox2 {
  background: #072d69;
  margin-top: 5%;
  padding: 2% 0 0;
}

.fbox2 h2 {
  color: #fff;
  text-align: center;
  font-size: 1.6vw;
  font-weight: 700;
}

.fbox2 h2 span {
  color: #fff;
  display: block;
  font-size: 1vw;
  margin-bottom: -.2%;
}

.linkBtn2.ver3 {
  color: #072d69;
  padding: 1% 3% 1% 3%;
  border: .1vw solid #072d69;
}

.linkBtn2.ver3:hover {
  color: #fff;
  background: #072d69;
  border: .1vw solid #fff;
}

.linkBtn2.ver3:after {
  display: none;
}

.menuList {
  border-top: .2vw solid #fff;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4%;
}

.menuList li {
  width: 50%;
  box-sizing: border-box;
  border-bottom: .2vw solid #fff;
}

.menuList li:nth-child(odd) {
  border-right: .2vw solid #fff;
}

.menuList li a {
  color: #fff;
  font-size: 1.4vw;
  display: block;
  text-align: center;
  padding: 3.5% 0;
  font-weight: 700;
}

.menuList li a:hover {
  background: #fff;
  color: #072d69;
}

.fbox3 {
  padding: 5% 0 8%;
  background: #fff;
}

.fbox3 h1 {
  margin: 0 auto;
  display: block;
  width: fit-content;
  max-width: 90%;
}

.footlinkList {
  width: 38%;
  margin: 2% auto;
}

.footlinkList li a {
  font-size: 1.25vw;
}

/* about */
.aboutBlock1 {
  padding-top: 3vw;
}

.tit8 {
  background: #034aa7;
  display: block;
  width: fit-content;
  color: #fff;
  font-size: 2vw;
  border-radius: 10vw;
  padding: .5% 3%;
  margin: 0 auto;
}

.tit9 {
  color: #072d69;
  font-size: 2vw;
  font-weight: 700;
  text-align: center;
  margin-top: 3%;
}

.tit9 span {
  display: block;
  font-size: 1.25vw;
  color: #034aa7;
  font-family: "Jost";
  font-weight: 500;
}

.aboutBlock1 .box1 {
  width: 70%;
  margin: 2% auto 0;
}

.aboutBlock1 .box1 .authorBox1 {
  width: 48%;
  background: #fff;
  box-shadow: .4vw .4vw 1vw #034aa742;
  border-radius: 1vw;
  box-sizing: border-box;
  padding: 3%;
  align-items: center;
}

.aboutBlock1 .box1 .authorBox1 .left {
  width: 30%;
  margin-right: 5%;
}

.aboutBlock1 .box1 .authorBox1 .right {
  width: 65%;
  font-size: 1.05vw;
  font-weight: 600;
  text-align: justify;
}

.aboutBlock1 .box1 .authorBox1 .left h3 {
  text-align: center;
  font-size: 1.1vw;
  font-weight: 700;
}

.aboutBlock1 .box2 {
  width: 60%;
  margin: 5% auto 0;
}

.aboutBlock1 .box2 a {
  display: block;
  width: 48%;
  box-shadow: .4vw .4vw 1vw #034aa742;
  border-radius: 1vw;
}

.aboutBlock1 .box3 {
  width: 60%;
  margin: 2% auto 0;
}

.aboutBlock1 .box3 a {
  border: 2px solid #034aa7;
  width: 47%;
  box-sizing: border-box;
  align-items: center;
  background: #fff;
  border-radius: 1vw;
  position: relative;
}

.aboutBlock1 .box3 a:after {
  content: "";
  display: block;
  width: 1vw;
  height: 1.5vw;
  background: url(../../images/rating/arrow2.png)0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.aboutBlock1 .box3 a.bad:after {
  background: url(../../images/rating/arrow3.png)0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock1 .box3 a:hover:after {
  background: url(../../images/rating/arrow5.png)0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock1 .box3 a:hover {
  background: #034aa7;
}

.aboutBlock1 .box3 a:hover .td {
  color: #fff;
}

.aboutBlock1 .box3 a .th {
  background: #034aa7;
  color: #fff;
  padding: .5% 4% 1%;
  font-size: 2vw;
  border-radius: .6vw 0 0 .6vw;
}

.aboutBlock1 .box3 a.bad {
  border: 2px solid #ed1f1a;
}

.aboutBlock1 .box3 a.bad .td {
  color: #ed1f1a;
}

.aboutBlock1 .box3 a.bad:hover .td {
  color: #fff;
}

.aboutBlock1 .box3 a.bad:hover {
  background: #ed1f1a;
  color: #fff;
}

.aboutBlock1 .box3 a.bad .th {
  background: #ed1f1a;
}

.aboutBlock1 .box3 a .td {
  font-size: 1.5vw;
  font-weight: 600;
  padding-left: 5%;
  display: block;
  text-align: center;
  width: 62%;
}

.aboutBlock2 {
  margin: 10% auto 0;
}

.tit10 {
  position: relative;
  background: #fff;
  text-align: center;
  box-shadow: .4vw .4vw 1vw #034aa742;
  padding: 3% 0;
}

.tit10:after {
  content: "";
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  background: #fff;
  position: absolute;
  bottom: -0.5vw;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  margin: auto;
}

.tit10 h2 {
  font-size: 1.6vw;
  font-weight: 700;
}

.tit10 h2 .en {
  display: block;
  font-size: 1vw;
  font-weight: 500;
  font-family: 'Jost';
}

.aboutBlock2 ul {
  grid-column: auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4vw;
  width: 70%;
  margin: 3% auto 0;
}

.aboutBlock2 li {
  position: relative;
  font-size: .9vw;
  font-weight: 700;
  padding-left: 13%;
}

.aboutBlock2 li:before {
  content: "";
  display: block;
  position: absolute;
  width: 2vw;
  height: 2vw;
  background: url(../../images/rating/iconCheck1.png)0 0 no-repeat;
  background-size: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.aboutBlock3 {
  margin-top: 8%;
  background: #fdcc00;
  padding-top: 5%;
}

.tit11 {
  text-align: center;
}

.tit11 .en {
  display: block;
  font-size: 1vw;
  font-weight: 500;
  font-family: 'Jost';
  margin-bottom: -1vw;
  color: #034aa7;
}

.tit11 h2 {
  font-size: 1.6vw;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(transparent 70%, #ffffff 0%);
  display: inline;
  color: #034aa7;
}

.tit11 h2 span {
  font-size: 4vw;
  font-weight: 700;
  font-family: 'Jost';
  color: #034aa7;
}

.aboutBlock3 .box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 80%;
  margin: 2% auto 0;
  align-items: center;
}

.aboutBlock3 .box1 .pointBox {
  width: 29%;
  background: #fff;
  border-radius: 1vw;
  padding: 2%;
  box-sizing: border-box;
  margin-bottom: 4%;
  box-shadow: .4vw .4vw 1vw #034aa742;
}

.aboutBlock3 .box1 .pointBox .inner1 {
  display: flex;
}

.aboutBlock3 .box1 .pointBox .inner1 .left {
  width: 35%;
  margin-right: 5%;
  position: relative;
}

.aboutBlock3 .box1 .pointBox .inner1>img {
  width: 60%;
}

.aboutBlock3 .box1 .pointBox .inner1 .left .point {
  text-align: center;
  font-size: 1vw;
  font-family: 'Jost';
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #a98a08;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.aboutBlock3 .box1 .pointBox .inner1 .left .point span {
  font-size: 2vw;
  font-family: 'Jost';
  font-weight: 500;
  margin-left: 5%;
  color: #a98a08;
}

.aboutBlock3 .box1 .pointBox .inner1 .left h3 {
  color: #a98a08;
  font-size: 1.6vw;
  font-weight: 700;
  text-align: right;
  position: relative;
  z-index: 3;
  margin-top: -.6vw;
}

.aboutBlock3 .box1 .pointBox .inner1 .left:after {
  content: "";
  display: block;
  width: 100%;
  height: .2vw;
  background: url(../../images/rating/point1Line.png)0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
}

.aboutBlock3 .box1 .pointBox .inner2 .txt1 {
  font-size: 1vw;
  text-align: justify;
  margin-top: 6%;
  font-weight: 700;
}

.aboutBlock3 .box1 .pointBox .inner1 .left .gradation {
  position: absolute;
  margin: auto;
  right: 10%;
  top: 8%;
  z-index: 0;
}

.aboutBlock3 .box1 .pointBox .inner1 .left .gradation::after {
  content: "";
  top: 0;
  right: 0;
  position: absolute;
  width: 1.4vw;
  height: 5.3vw;
  background: #fdcc00;
  transform: skewX(-20deg);
}

.aboutBlock3 .box1 .pointBox.ver2 .inner1 .left .point,
.aboutBlock3 .box1 .pointBox.ver2 .inner1 .left .point span,
.aboutBlock3 .box1 .pointBox.ver2 .inner1 .left h3 {
  color: #034aa7;
}

.aboutBlock3 .box1 .pointBox.ver2 .inner1 .left .gradation::after {
  background: #a6ceeb;
}

.aboutBlock3 .box1 .pointBox.ver2 .inner1 .left:after {
  background: url(../../images/rating/point2Line.png)0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock3 .box1 .pointBox.ver3 .inner1 .left .point,
.aboutBlock3 .box1 .pointBox.ver3 .inner1 .left .point span,
.aboutBlock3 .box1 .pointBox.ver3 .inner1 .left h3 {
  color: #de0000;
}

.aboutBlock3 .box1 .pointBox.ver3 .inner1 .left .gradation::after {
  background: #ffac90;
}

.aboutBlock3 .box1 .pointBox.ver3 .inner1 .left:after {
  background: url(../../images/rating/point3Line.png)0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock3 .box1 .pointBox.ver4 .inner1 .left .point,
.aboutBlock3 .box1 .pointBox.ver4 .inner1 .left .point span,
.aboutBlock3 .box1 .pointBox.ver4 .inner1 .left h3 {
  color: #218c04;
}

.aboutBlock3 .box1 .pointBox.ver4 .inner1 .left .gradation::after {
  background: #89da73;
}

.aboutBlock3 .box1 .pointBox.ver4 .inner1 .left:after {
  background: url(../../images/rating/point4Line.png)0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock3 .box1 .pointBox.ver5 .inner1 .left .point,
.aboutBlock3 .box1 .pointBox.ver5 .inner1 .left .point span,
.aboutBlock3 .box1 .pointBox.ver5 .inner1 .left h3 {
  color: #7729d0;
}

.aboutBlock3 .box1 .pointBox.ver5 .inner1 .left .gradation::after {
  background: #bf98eb;
}

.aboutBlock3 .box1 .pointBox.ver5 .inner1 .left:after {
  background: url(../../images/rating/point5Line.png)0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock4 {
  margin-top: 8%;
}

.tit12 {
  background: #034aa7;
  position: relative;
  padding: 2% 0;
}

.tit12 .line {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  height: 93%;
  margin: auto;
  width: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.tit12 .en {
  text-align: center;
  color: #fff;
  font-size: 1vw;
  font-weight: 500;
  font-family: 'Jost';
  display: block;
}

.tit12 h2 {
  font-size: 2vw;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
  color: #fff;
}

.tit12 h2 .small {
  color: #fff;
  font-size: 1.7vw;
}

.tit12 h2 .big {
  color: #fff;
  font-size: 2.8vw;
  margin-top: -.8vw;
  display: block;
  position: relative;
}

.tit12 h2 .big:after {
  content: "";
  display: block;
  width: 100%;
  height: 1vw;
  position: absolute;
  background: url(../../images/rating/aboutTxtline1.png)0 0 no-repeat;
  background-size: 100%;
  bottom: -.5vw;
}

.tit12:before {
  content: "";
  display: block;
  position: absolute;
  left: 32%;
  bottom: -8%;
  width: 8vw;
  height: 11vw;
  background: url(../../images/rating/aboutIllastWoman2.png)0 0 no-repeat;
  background-size: 100%;
  z-index: 2;
}

.tit12:after {
  content: "";
  display: block;
  position: absolute;
  right: 33.2%;
  bottom: -8%;
  width: 7vw;
  height: 11.5vw;
  background: url(../../images/rating/aboutIllastMan2.png) 0 0 no-repeat;
  background-size: 100%;
}

.aboutBlock4 .box1 p {
  margin: 5% auto;
  width: 50%;
  font-size: 1vw;
  line-height: 1.8;
  text-align: justify;
  font-weight: 700;
}

.toplinkBtn1 {
  background: #072d69;
  color: #fff;
  font-size: 2vw;
  letter-spacing: 0;
  padding: 1% 6% 1% 3%;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
  border-radius: 1vw;
  margin-top: 3%;
  position: relative;
}

.toplinkBtn1:after {
  content: "";
  display: block;
  width: 1.2vw;
  height: 1.9vw;
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../../images/rating/arrow5.png) 0 0 no-repeat;
  background-size: 100%;
}

.toplinkBtn1:hover {
  background: #fff;
  color: #034aa7;
}

.toplinkBtn1:hover:after {
  background: url(../../images/rating/arrow7.png) 0 0 no-repeat;
  background-size: 100%;
}

.ratingBlock1 {
  padding-top: 3vw;
}

.tit13 {
  background: #034aa7;
  display: block;
  width: fit-content;
  color: #fff;
  font-size: 2vw;
  border-radius: 10vw;
  padding: .5% 10%;
  margin: 0 auto;
}

.tit13 h2 {
  font-size: 2vw;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
  color: #fff;
}

.tit13 h2 .small {
  color: #fff;
  font-size: 1.7vw;
}

.tit13 h2 .big {
  color: #fff;
  font-size: 2.8vw;
  margin-top: -.8vw;
  display: block;
  position: relative;
}

.tit13:before {
  content: "";
  display: block;
  position: absolute;
  left: 5%;
  bottom: -8%;
  width: 7vw;
  height: 10vw;
  background: url(../../images/rating/tit13Illast1.png) 0 0 no-repeat;
  background-size: 100%;
  z-index: 2;
}

.tit13:after {
  content: "";
  display: block;
  position: absolute;
  right: 7.2%;
  bottom: -8%;
  width: 6vw;
  height: 10.1vw;
  background: url(../../images/rating/tit13Illast2.png) 0 0 no-repeat;
  background-size: 100%;
}

.sortBlock {
  display: flex;
  justify-content: flex-end;
  width: 80%;
  margin: 2% auto;
  align-items: center;
}

.sortBlock>p {
  font-size: 1vw;
  color: #000;
  font-weight: 500;
}

.sortBlock select {
  font-size: 1vw;
  color: #000;
  font-weight: 500;
  display: block;
  padding: 1%;
  border: 1px solid #000;
  background: #fff;
  font-weight: 600;
  margin-left: 1%;
  cursor: pointer;
  scroll-margin-top: 15vw;
}

.siteList ul {
  width: 80%;
  margin: 0 auto;
}

.siteList ul li {
  width: 48%;
  margin-bottom: 3%;
}

.siteList .rankingCard a h3 {
  font-size: 2.4vw;
}

.siteList .rankingCard .linkList a {
  font-size: 1.5vw;
  width: 48%;
}

.siteList .rankingCard a p {
  font-size: 1.25vw;
  margin-bottom: 4%;
  font-weight: 700;
  text-align: justify;
}

.rankingCard.closedSite {
  position: relative;
  pointer-events: none;
}

.rankingCard.closedSite:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000000ad;
  border-radius: 1vw;
}

.rankingCard.closedSite:before {
  content: "閉鎖";
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: 3vw;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageNav {
  width: 40%;
  margin: 2% auto 5%;
  text-align: center;
}

.pageNav>* {
  border: 2px solid #034aa7;
  width: 3vw;
  height: 3vw;
  display: inline-block;
  line-height: 3vw;
  text-align: center;
  font-size: 1.5vw;
  font-weight: 700;
  font-family: 'Jost';
  background: #fff;
  color: #034aa7;
}

.pageNav>span,
.pageNav>*:hover {
  background: #034aa7;
  color: #fff;
}

.pageNav .prevPage:hover,
.pageNav .nextPage:hover {
  background: #034aa7 url(../../images/rating/arrow5.png)0 0 no-repeat;
  background-position: center;
  background-size: 30%;
}

.pageNav .prevPage,
.pageNav .nextPage {
  background: #fff url(../../images/rating/arrow7.png)0 0 no-repeat;
  background-position: center;
  color: transparent;
  background-size: 30%;
}

.pageNav .prevPage {
  transform: scale(-1, 1);
}














@media (width < 900px) {
  header {
    padding: 2% 5%;
  }

  header h1 {
    width: 36%;
  }

  .headRight {
    flex-direction: row;
    width: 20%;
  }

  .headMenu nav {
    position: fixed;
    width: 100%;
    background: #072d69;
    left: 0;
    top: 15.4vw;
    height: calc(100% - 15.4vw);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }

  .headMenu.on nav {
    opacity: 1;
    pointer-events: auto;
  }

  .headMenu nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 90%;
    margin: 20% auto 0;
  }

  .headMenu nav ul li {
    opacity: 0;
    transform: translateY(8px);
    will-change: opacity, transform;
  }

  .headMenu.on nav ul li {
    animation: headMenuItemFadeUp .35s ease forwards;
  }

  .headMenu.on nav ul li:nth-child(1) {
    animation-delay: 0s;
  }

  .headMenu.on nav ul li:nth-child(2) {
    animation-delay: .1s;
  }

  .headMenu.on nav ul li:nth-child(3) {
    animation-delay: .2s;
  }

  .headMenu.on nav ul li:nth-child(4) {
    animation-delay: .3s;
  }

  .headMenu.on nav ul li:nth-child(5) {
    animation-delay: .4s;
  }

  .headMenu.on nav ul li:nth-child(6) {
    animation-delay: .5s;
  }

  .headMenu.on nav ul li a {
    transition: opacity .2s ease, transform .2s ease;
  }

  .headMenu nav ul li a {
    color: #fff;
    font-size: 5vw;
    margin-top: 12%;
    display: block;
  }

  @keyframes headMenuItemFadeUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  header .btn {
    width: 8%;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    height: fit-content;
    margin: auto;
  }

  header .btn span {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transition: .3s;
  }

  header .btn span:nth-child(2) {
    width: 80%;
    margin-left: 20%;
    margin: 22% 0 22% 20%;
  }

  header .on .btn span:nth-child(1) {
    transform: rotate(45deg);
    top: 2.2vw;
  }

  header .on .btn span:nth-child(2) {
    opacity: 0;
  }

  header .on .btn span:nth-child(3) {
    transform: rotate(-45deg);
    top: -2.2vw;
  }

  .headSearch {
    display: block;
    margin: auto;
    width: 100%;
    position: relative;
    transition: .3s;
  }

  .headSearch img {
    width: 6vw;
    height: 6vw;
    cursor: pointer;
    margin-left: 1vw;
  }

  .headSearch form {
    position: fixed;
    top: 18vw;
    z-index: 20;
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
  }

  .headSearch form input[type="text"] {
    font-size: 4vw;
    width: 80%;
    padding: 2% 4%;
    box-sizing: border-box;
  }

  .headSearch form button {
    width: 18%;
    font-size: 3.5vw;
  }

  .lineCta1 {
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 2%;
    padding: 2% 5%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 4vw;
  }

  .lineCta1 img {
    width: 4%;
    margin-left: 4%;
  }

  article {
    padding-top: 16vw;
  }

  .topFv {
    flex-wrap: wrap;
    padding-top: 0;
  }

  .fvRight {
    width: 100%;
  }

  .topFvSwiper {
    width: 100%;
    margin: 0 auto;
  }

  .swiper-pagination-bullet {
    width: 5vw;
    height: 3px;
  }

  .topAbout {
    margin-top: 10%;
  }

  .topAbout .box1 h2 {
    font-size: 4vw;
    padding: 2% 5%;
    top: -5vw;
  }

  .topAbout .chara1_1 {
    width: 19vw;
    top: -11vw;
    left: -2vw;
  }

  .topAbout .chara2_1 {
    width: 17vw;
    right: -1vw;
    top: -11.5vw;
  }

  .topAbout .sterBox {
    width: 24%;
    margin: 4% auto 3%;
  }

  .topAbout .sterBox img {
    width: 28%;
  }

  .topAbout .box1 {
    padding-bottom: 7%;
  }

  .topAbout .box1 h3 {
    margin: 3vw auto;
  }

  .topAbout .box1 h3 span {
    font-size: 6vw;
    margin: 0 auto;
    width: fit-content;
    display: block;
  }

  .topAbout .box1 h3:after {
    width: 35.5vw;
    height: 3vw;
    left: 3vw;
  }

  .topAbout .box1 p {
    font-size: 3.2vw;
    width: 84%;
    margin: 0 auto;
  }

  .topMenu {
    width: 90%;
    margin: 0 auto;
  }

  .topMenu ul {
    width: 100%;
    gap: 4vw;
  }

  .topMenu ul li a {
    padding: 13% 6%;
    box-shadow: .8vw .8vw 2vw rgb(7 41 93 / 20%);
    border-radius: 2vw;
  }

  .topMenu ul li a p {
    font-size: 3vw;
  }

  .topMenu ul li a img {
    width: 45%;
  }

  .sp {
    display: block;
  }

  .topMenu .tit1 {
    margin-top: 8%;
    font-size: 5vw;
  }

  .topMenu .tit1 span {
    font-size: 3vw;
    color: #034aa7;
  }

  .tit2:before {
    width: 14vw;
    height: 14vw;
    top: -6vw;
  }

  .tit2 .en {
    font-size: 3.5vw;
    margin: 1% 0 -1%;
  }

  .tit2 {
    font-size: 7vw;
  }

  .tit2 .line {
    margin: 2vw 0 3vw;
  }

  .tit2 .line:after {
    bottom: -5px;
  }

  .rankingListBlock1 {
    border-radius: 2vw;
    box-shadow: 2.3vw 2.3vw 2vw rgb(7 41 93 / 15%);
  }

  .rankingListBlock1 table tr th {
    font-size: 4vw;
  }

  .rankingListBlock1 table tr td {
    font-size: 3vw;
    padding: 1%;
  }

  .rankingListBlock1 .rankingInner table {
    width: 920px;
  }

  .rankingListBlock1 table tr td.star img {
    width: 3.5vw;
    position: relative;
    top: -0.6vw;
    margin-right: .6vw;
  }

  .rankingListBlock1 .txt1 {
    font-size: 3.25vw;
    margin-top: 2%;
  }

  .rankingBox1 .rankingTit {
    width: 30%;
  }

  .rankingBox1 .rankingTit span,
  .rankingBox1.no2 .rankingTit span,
  .rankingBox1.no3 .rankingTit span {
    font-size: 4vw;
    padding-top: 0;
  }

  .rankingCard a h3,
  .rankingBox1.no2 .rankingCard a h3,
  .rankingBox1.no3 .rankingCard a h3 {
    font-size: 4.5vw;
    margin: 2vw 0;
  }

  .rankingCard .linkList a,
  .rankingBox2 .rankingCard .linkList a {
    font-size: 2.5vw;
  }

  .rankingBox2,
  .rankingSlide {
    width: 100%;
    overflow: unset;
    margin: 4% 0;
  }

  .rankingSlide {
    margin: 4% 0 0;
  }

  .rankingBox1.no2,
  .rankingBox1.no3 {
    width: 100%;
    margin-top: 4%;
  }

  .rankingBox2 .rankingCard>a .rankingTit span {
    font-size: 4.8vw;
    width: 60%;
    letter-spacing: 0;
    padding-top: 3%;
  }

  .rankingBox2 .rankingCard>a .rankingTit {
    font-size: 4vw;
  }

  .rankingSwiper .swiper-button-prev,
  .rankingSwiper .swiper-button-next {
    width: 10vw;
    height: 17vw;
  }

  .rankingSwiper .swiper-button-prev {
    left: -10vw;
  }

  .rankingSwiper .swiper-button-next {
    right: -10vw;
  }

  .topRankingList {
    overflow: hidden;
    padding-top: 6vw;
    margin-top: 5vw;
  }

  .rankingLinkBox {
    margin: 0 auto;
  }

  .rankingLinkBox a {
    width: 49%;
    font-size: 4.6vw;
    padding: 5% 7% 5% 4%;
    border-radius: 2vw;
  }

  .rankingLinkBox a span {
    font-size: 3.6vw;
  }

  .rankingLinkBox a:after {
    width: 3vw;
    height: 5vw;
    right: 6%;
  }

  .rankingListBlock2 {
    border-radius: 2vw;
    padding-bottom: 10%;
  }

  .topReportList {
    width: 100%;
    flex-wrap: wrap;
  }

  .topReportList section {
    width: 100%;
    padding: 10% 5%;
  }

  .tit3 {
    width: 80%;
  }

  .tit3 span {
    font-size: 5vw;
    margin-bottom: 0;
  }

  .tit3 h2 {
    font-size: 7vw;
  }

  .tit3 h2 img {
    width: 6.5vw;
  }

  .reportList {
    border-radius: 2vw;
    box-shadow: 2.3vw 2.3vw 2vw rgb(7 41 93 / 15%);
  }

  .reportList ul {
    margin-top: 2%;
  }

  .reportList h3 {
    font-size: 3.5vw;
  }

  .reportList ul li a .day {
    font-size: 3vw;
  }

  .reportList ul li a h4 {
    font-size: 3vw;
  }

  .reportList ul li a .day {
    font-size: 3vw;
  }

  .linkBtn1 {
    font-size: 3vw;
    border-radius: 2vw;
    padding: 2% 7% 2% 4%;
  }

  .linkBtn1:after {
    right: 5%;
    width: 1.9vw;
    height: 2.6vw;
  }

  .reportList>img {
    right: 2%;
  }

  .reportList>img.chara1_2 {
    right: unset;
    left: 2%;
  }

  .topReportList .paidBlock .reportList {
    box-shadow: 2.3vw 2.3vw 2vw rgb(237 30 26 / 15%);
  }

  .topRating {
    margin: 9% auto 0;
  }

  .starBox img {
    width: 28%;
  }

  .topRating {
    border: 1vw solid #034aa7;
    padding-bottom: 9%;
    border-radius: 2vw;
    box-shadow: 2.3vw 2.3vw 2vw rgb(7 41 93 / 15%);
  }

  .tit4 {
    padding: 0 0 3%;
  }

  .tit4 h2 {
    font-size: 7vw;
    margin-top: -2vw;
  }

  .tit4 .en {
    margin: 0;
  }

  .tit4 h2 span {
    font-size: 5.6vw;
    font-weight: 700;
  }

  .ratingList li {
    width: 92%;
  }

  .ratingList li a {
    border-radius: 2vw;
    margin-top: 3%;
  }

  .ratingList li a .daycat .day {
    font-size: 3vw;
  }

  .ratingList li a .daycat .cat {
    font-size: 2.8vw;
  }

  .ratingList li a h3 {
    font-size: 3.6vw;
  }

  .ratingList li a:after {
    width: 6vw;
    height: 6vw;
  }

  .topBeginner {
    padding: 5% 5% 10%;
  }

  .linkBtn2 {
    font-size: 3.5vw;
    border-radius: 2vw;
  }

  .linkBtn2:after {
    width: 1.6vw;
    height: 2.4vw;
    right: 6%;
  }

  .tit5 .en {
    font-size: 3vw;
    margin-bottom: 3%;
  }

  .tit5 .blue,
  .tit5 .green {
    font-size: 6vw;
    padding: 0% 4% 1%;
    border-radius: 2vw;
  }

  .topBeginner .inner .txt1 {
    font-size: 3vw;
  }

  .circleBox {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .circleBox a {
    width: 35vw;
    height: 35vw;
    margin: 2%;
    box-shadow: 0.6vw 0.6vw 2vw rgb(0 0 0 / 60%);
  }

  .circleBox a .bg {
    border: .6vw solid #fff;
    width: 31vw;
    height: 31vw;
  }

  .circleBox a .bg .border .txt {
    font-size: 6vw;
  }

  .circleBox a .bg .border .txt img {
    width: 10%;
    margin-bottom: 9%;
    margin-left: 5%;
  }

  .topBeginner .linkBtn2 {
    font-size: 3.5vw;
    padding: 1% 8% 1% 5%;
  }

  .topBeginner .inner {
    border-radius: 2vw;
    border: 0.6vw solid #000;
    padding: 5% 5% 10%;
    box-shadow: 2.3vw 2.3vw 2vw rgb(7 41 93 / 15%);
  }

  .tit6 {
    width: 100%;
    margin: 5% auto 4%;
  }

  .tit6 .en {
    font-size: 3vw;
    margin-bottom: 1%;
  }

  .tit6 h2 {
    font-size: 7vw;
  }

  .tit6 h2 .small {
    font-size: 5vw;
  }

  .tit6 h2 .big {
    font-size: 9vw;
  }

  .topBeginner .inner .iconBeginner {
    top: -4%;
    width: 13%;
  }

  .topVoice {
    overflow: hidden;
  }

  .voiceList {
    padding-top: 10%;
    width: 100%;
  }

  .voiceList li {
    margin-bottom: 5%;
  }

  .voiceList li .txtBox h3 {
    font-size: 3.8vw;
    font-weight: 900;
  }

  .voiceList li .txtBox p {
    font-size: 3vw;
  }

  .voiceList li .txtBox a {
    font-size: 3vw;
  }

  .voiceList li img {
    width: 22%;
    margin-right: 3%;
  }

  .fbox1 .box1 {
    width: 80%;
  }

  .fbox1 .box1 li.txt a {
    font-size: 3vw;
    padding: 12% 0;
  }

  .fbox1 .box1 li a img {
    width: 90%;
  }

  .fbox1 .box2 h2 {
    font-size: 4vw;
    margin-top: 6%;
  }

  .placeList li {
    width: 15%;
  }

  .placeList a {
    font-size: 3vw;
  }

  .fbox2 {
    margin-top: 10%;
    padding: 5% 0 0;
  }

  .fbox2 h2 span {
    font-size: 3vw;
  }

  .fbox2 h2 {
    font-size: 5vw;
  }

  .linkBtn2.ver3 {
    font-size: 4.5vw;
  }

  .fbox3 {
    padding: 5% 0 20%;
  }

  .menuList {
    margin-top: 7%;
  }

  .menuList li a {
    font-size: 3vw;
    padding: 7% 0;
  }

  .fbox3 h1 {
    width: 55%;
    margin: 5% auto;
  }

  .footlinkList {
    width: 80%;
  }

  .footlinkList li a {
    font-size: 2.6vw;
  }

  /* about */
  .aboutBlock1 {
    padding-top: 6%;
  }

  .tit8 {
    font-size: 6vw;
    font-weight: 700;
    padding: 1% 6%;
  }

  .tit9 {
    font-size: 5.4vw;
    margin-top: 5%;
  }

  .tit9 span {
    font-size: 3vw;
  }

  .aboutBlock1 .box1 {
    width: 90%;
    flex-wrap: wrap;
  }

  .aboutBlock1 .box1 .authorBox1 {
    width: 100%;
    margin: 2% auto;
  }

  .aboutBlock1 .box1 .authorBox1 .left {
    width: 40%;
    margin-right: 0%;
  }

  .aboutBlock1 .box1 .authorBox1 .right {
    width: 60%;
    font-size: 3vw;
    text-align: left;
  }

  .aboutBlock1 .box1 .authorBox1 .left h3 {
    font-size: 3vw;
    margin-top: -7%;
    margin-left: 6%;
  }

  .aboutBlock1 .box1 .authorBox1 {
    width: 100%;
    margin: 2% auto;
    box-shadow: 1.6vw 1.6vw 3vw rgb(7 41 93 / 15%);
  }

  .aboutBlock1 .box2 {
    width: 90%;
    flex-wrap: wrap;
    margin: 2% auto 0;
  }

  .aboutBlock1 .box2 a {
    width: 100%;
    margin-bottom: 4%;
    border-radius: 3vw;
  }

  .aboutBlock1 .box3 {
    width: 90%;
    margin: 2% auto 0;
  }

  .aboutBlock1 .box3 a {
    border-radius: 2vw;
    width: 49%;
  }

  .aboutBlock1 .box3 a .th {
    font-size: 4vw;
    border-radius: 1vw 0 0 1vw;
  }

  .aboutBlock1 .box3 a .td {
    font-size: 3.5vw;
    letter-spacing: 0;
    padding-left: 1%;
  }

  .aboutBlock1 .box3 a:after {
    width: 2vw;
    height: 3vw;
    right: 4%;
  }

  .tit10 {
    box-shadow: 0.4vw 0.8vw 2vw #034aa742;
  }

  .tit10 h2 .en,
  .tit11 .en,
  .tit12 .en {
    font-size: 3vw;
  }

  .tit10 h2,
  .tit11 h2 {
    font-size: 5.4vw;
  }

  .tit10:after {
    width: 3.5vw;
    height: 3.5vw;
    bottom: -1.6vw;
  }

  .aboutBlock2 ul {
    grid-template-columns: 1fr;
    gap: 5vw;
    width: 80%;
    margin: 6% auto 0;
  }

  .aboutBlock2 li {
    font-size: 3.1vw;
    padding-left: 12%;
  }

  .aboutBlock2 li:before {
    width: 7vw;
    height: 7vw;
  }

  .tit11 h2 span {
    font-size: 7.5vw;
    font-weight: 500;
    font-family: 'Jost';
  }

  .tit11 .en {
    margin-bottom: -2.5vw;
  }

  .aboutBlock3 {
    padding-top: 8%;
  }

  .aboutBlock3 .box1 {
    width: 90%;
  }

  .aboutBlock3 .box1 .pointBox {
    width: 100%;
    border-radius: 2vw;
    padding: 5%;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left {
    width: 36%;
  }

  .aboutBlock3 .box1 .pointBox .inner1>img {
    width: 59%;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left .point {
    font-size: 3vw;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left .point span {
    font-size: 7vw;
    margin-left: 2%;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left .point {
    font-size: 3.6vw;
    justify-content: center;
    margin-top: 14%;
  }

  .aboutBlock3 .box1 .pointBox .inner1 {
    align-items: stretch;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left .gradation::after {
    width: 5vw;
    height: 21vw;
    top: 1vw;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left h3 {
    font-size: 5.5vw;
    margin-top: -2.5vw;
    margin-right: 15%;
    margin-bottom: 24%;
  }

  .aboutBlock3 .box1 .pointBox {
    width: 100%;
    border-radius: 2vw;
    padding: 5%;
    box-shadow: 1.6vw 1.6vw 3vw rgb(7 41 93 / 15%);
  }

  .aboutBlock3 .box1 .pointBox .inner2 .txt1 {
    font-size: 4vw;
    font-weight: 500;
  }

  .aboutBlock3 .box1 .pointBox .inner1 .left:after {
    height: .5vw;
  }

  .aboutBlock3 .box1 .pointBox.ver2 .left,
  .aboutBlock3 .box1 .pointBox.ver4 .left {
    order: 2;
    margin-right: 0;
    margin-left: 5%;
  }

  .tit12 {
    padding: 5% 0;
  }

  .tit12 h2 {
    font-size: 8vw;
  }

  .tit12 .en {
    letter-spacing: 0.4vw;
    font-weight: 400;
  }

  .tit12 h2 .small {
    font-size: 6.7vw;
  }

  .tit12 h2 .big {
    font-size: 10.8vw;
    margin-top: -3.8vw;
  }

  .tit12 h2 .big:after {
    height: 4vw;
    bottom: -1.5vw;
  }

  .tit12:before {
    left: 1%;
    width: 19vw;
    height: 27vw;
    bottom: -4%;
    margin: auto;
  }

  .tit12:after {
    right: 1%;
    width: 20vw;
    height: 33vw;
    bottom: -3vw;
  }

  .aboutBlock4 .box1 p {
    width: 90%;
    font-size: 4vw;
  }

  .toplinkBtn1 {
    font-size: 3.5vw;
    border-radius: 2vw;
    margin-top: 14vw;
  }

  .ratingBlock1 {
    padding-top: 6%;
  }

  .tit13 {
    width: 90%;
    box-sizing: border-box;
  }

  .tit13 h2 {
    font-size: 5.2vw;
  }

  .tit13 h2 .small {
    font-size: 4.4vw;
  }

  .tit13 h2 .big {
    font-size: 7.8vw;
    margin-top: -1.8vw;
  }

  .tit13:before {
    width: 14vw;
    height: 20vw;
  }

  .tit13:after {
    width: 12.5vw;
    height: 21vw;
  }

  .sortBlock>p {
    font-size: 4vw;
  }

  .sortBlock select {
    font-size: 4vw;
    padding: 2%;
  }

  .sortBlock.df {
    margin: 5% auto 3%;
  }

  .siteList ul {
    width: 90%;
  }

  .siteList ul li {
    width: 100%;
    margin-bottom: 3%;
  }

  .siteList ul li .rankingCard {
    box-shadow: 2.3vw 2.3vw 2vw rgb(7 41 93 / 15%);
  }

  .siteList .rankingCard a h3 {
    font-size: 4.4vw;
  }

  .siteList .rankingCard a p {
    font-size: 3.5vw;
  }

  .siteList .rankingCard .linkList a {
    font-size: 3.5vw;
    padding: 2% 0;
  }

  .rankingCard.closedSite:before {
    font-size: 6vw;
  }

  .pageNav {
    width: 60%;
  }

  .pageNav>* {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 4vw;
    border: 1px solid #034aa7;
  }
}