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;
  /* fadein の transform/opacity 変化時にスクロールアンカーが補正して先頭が数px〜数十pxずれるのを防ぐ */
  overflow-anchor: none;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein,
.fadei {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  transition: opacity 500ms, transform 500ms;
  overflow-anchor: none;
}
.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(img/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(img/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(img/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(img/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(img/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(img/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(img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/arrow7.png)0 0 no-repeat;
  background-size: 100%;
}
.linkBtn2:hover {
  background: #072d69;
  color: #fff;
}
.linkBtn2:hover:after {
  background: url(/img/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(/img/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(/img/arrow3.png)0 0 no-repeat;
  background-size: 100%;
}
.aboutBlock1 .box3 a:hover:after {
  background: url(/img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/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(/img/arrow5.png) 0 0 no-repeat;
  background-size: 100%;
}
.toplinkBtn1:hover {
  background: #fff;
  color: #034aa7;
}
.toplinkBtn1:hover:after {
  background: url(/img/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(/img/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(/img/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(/img/arrow5.png)0 0 no-repeat;
  background-position: center;
  background-size: 30%;  
}
.pageNav .prevPage,
.pageNav .nextPage {
  background: #fff url(/img/arrow7.png)0 0 no-repeat;
  background-position: center;
  color: transparent;
  background-size: 30%;
}
.pageNav .prevPage{
  transform: scale(-1, 1);
}
/* 優良サイト一覧 */
.goodsiteBlock1 {
  padding-top: 3vw;
}
.tit14 {
  background: url(/img/tit14Bg.png) 0 0 no-repeat;
  background-size: 100% 100%;
  width: fit-content;
  margin: 0 auto;
  padding: 2% 9.5% 2% 11%;
  border-radius: 10vw;
  position: relative;
}
.tit14 h2 {
  color: #fff;
  text-align: center;
  font-size: 3vw;
  font-weight: 500;
}
.tit14:before {
  content: "";
  display: block;
  position: absolute;
  left: 8%;
  bottom: -8%;
  width: 7vw;
  height: 10vw;
  background: url(/img/tit13Illast1.png) 0 0 no-repeat;
  background-size: 100%;
  z-index: 2;
}
.tit14:after {
  content: "";
  display: block;
  position: absolute;
  right: 7.2%;
  bottom: -8%;
  width: 6vw;
  height: 10.1vw;
  background: url(/img/tit14Illast1.png) 0 0 no-repeat;
  background-size: 100%;
}
.tit14 .star {
  width: 93%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tit14 .star:before, .tit14 .star:after {
  content: "";
  display: block;
  width: 1.7vw;
  height: 1.7vw;
  background: url(/img/ster.png)0 0 no-repeat;
  background-size: 100%;
}
.goodsiteBlock1 .txt1 {
  width: 50%;
  margin: 1% auto 3%;
  font-size: 1.25vw;
  font-weight: 700;
}
/* 悪質サイト一覧 */
.pageBadsite {
  background: #fbd8d8;
}
.badsiteBlock1 {
  padding-top: 3vw;
}
.tit14.ver2 {
  background: url(/img/tit14Bg2.png) 0 0 no-repeat;
  background-size: 100% 100%;
}
.tit14.ver2:before {
  background: url(/img/tit14Illast2.png) 0 0 no-repeat;
  background-size: 100%;
}
.tit14.ver2:after {
  background: url(/img/tit14Illast3.png) 0 0 no-repeat;
  background-size: 100%;
}
.tit14 .star:before,
.tit14 .star:after{

}
.badsiteBlock1 .tit9,
.badsiteBlock1 .tit9 span,
.badsiteBlock1 .siteList .rankingCard a h3{
  color: #d00e09;
}
.badsiteBlock1.goodsiteBlock1 .txt1,
.badsiteBlock1 .siteList .rankingCard a p{
  color: #000
}
.badsiteBlock1 .rankingCard .linkList a{
  background: #d00e09;
  border: 1px solid #d00e09;
}
.badsiteBlock1 .rankingCard .linkList a:nth-child(2){
  background: #ed1f1a;
  border: 1px solid #ed1f1a;
}
.badsiteBlock1 .rankingCard .linkList a:hover,
.badsiteBlock1 .rankingCard .linkList a:nth-child(2):hover{
  background: #fff;
  color: #d00e09;
}
.badsiteBlock1 .rankingCard {
  box-shadow: .4vw .4vw 1vw rgb(237 30 26 / 22%);
}
.badsiteBlock1 .tit14 .star:before,
.badsiteBlock1 .tit14 .star:after{
  background: url(/img/iconExclamation.png) 0 0 no-repeat;
  background-size: 100%;
}
.badsiteBlock1 .tit14 .star:after {
  transform: rotate(30deg);
}
.tit15 {
  background: #034aa7;
  padding: 2% 0;
}
.tit15 .starBox {
  width: 8%;
}
.tit15 h2 {
  text-align: center;
  font-size: 2vw;
  color: #fff;
  font-weight: 700;
  margin-top: 1%;
}
.siteEvaluation {
  width: 38%;
  margin: 0 auto;
  background: url(/img/siteFukidashi.png)0 0 no-repeat;
  background-size: 100%;
  padding: 3% 0 6%;
  margin-top: 1%;
}
.siteEvaluation .txt1 {
  font-size: 2vw;
  text-align: center;
  font-weight: 700;
  padding-left: 16%;
}
.siteEvaluation .evaluationTxt {
  font-size: 3vw;
  font-weight: 700;
  text-align: center;
  padding-left: 19%;
  margin-top: -2%;
  position: relative;
}
.siteEvaluation .evaluationTxt:after {
  content: "";
  display: block;
  width: 60%;
  margin-left: 18%;
  margin-top: -5%;
  height: 2vw;
  background: url(/img/evaluationTxtLine.png)0 0 no-repeat;
  background-size: 100%;
}
.siteEvaluation .evaluationTxt span {
  font-size: 4.2vw;
  font-weight: 700;
  color: #ed1f1a;
}
.singleGoodBlock1 .tit9 {
  font-size: 3.8vw;
}
.singleGoodBlock1 .tit9 span {
  margin-bottom: -1%;
  font-size: 1.5vw;
  font-weight: 700;
}
.singleGoodBlock1 .wrap1 {
  width: 90%;
  margin: 4% auto 0;
  justify-content: space-between;
  align-items: flex-start;
}
.singleGoodBlock1 .wrap1 > div {
  width: 30%;
  position: relative;
}
.sTit1 {
  position: absolute;
  top: -2vw;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  background: #034aa7;
  color: #fff;
  font-weight: 900;
  padding: 0.6vw 1vw;
  border-radius: 10vw;
  font-size: 1.4vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sTit1 img {
  width: 10%;
  margin-left: 4%;
}
.evaluationBox1 {
  padding-top: 3%;
}
.evaluationBox1 p,
.evaluationBox3 p{
  font-weight: 700;
  font-size: 1.25vw;
  text-align: justify;
}
.evaluationBox2,
.evaluationBox3 {
  background: #fff;
  box-shadow: 1vw 0 2vw rgb(7 41 93 / 20%);
  border-radius: 1vw;
  padding: 3%;
  box-sizing: border-box;
  position: relative;
}
.graphBox .graphItem:first-child {
  margin-top: 0;
}
.graphBox .graphItem {
  background: #eaf8f1;
  margin-top: 4%;
  border-radius: 10vw;
}
.sTit1.ver2 {
  background: #048042;
}
.graphBox .graphItem .th {
  color: #fff;
  font-size: 1vw;
  font-weight: 700;
  background: #1b9c5b;
  width: 40%;
  box-sizing: border-box;
  padding: 2% 2% 2% 6%;
  border-radius: 10vw 0 0 10vw;
}
.graphBar {
  width: 60%;
  position: relative;
}
.graphBar:after {
  content: "";
  display: block;
  width: 80%;
  background: url(/img/starLevelLine.png)0 0 no-repeat;
  background-size: 100%;
  height: 1vw;
  position: absolute;
  bottom: -0.8vw;
  left: 0;
  right: 0;
  margin: auto;
}
.graphBar .starBox {
  display: flex;
  align-items: center;
  width: 86%;
  max-width: 100%;
}
.graphBar .starBox span {
  width: 20%;
  height: 2vw;
  display: block;
  background: url(/img/starLevel1.png)0 0 no-repeat;
  background-size: 70%;
  background-position: center;
}
.graphBar .starBox .star2 {
  background: url(/img/starLevel2.png)0 0 no-repeat;
  background-size: 70%;
  background-position: center;
}
.graphBar .starBox .star3 {
  background: url(/img/starLevel3.png)0 0 no-repeat;
  background-size: 70%;
  background-position: center;
}
.graphBar .starBox .star4 {
  background: url(/img/starLevel4.png)0 0 no-repeat;
  background-size: 70%;
  background-position: center;
}
.graphBar .starBox .star5 {
  background: url(/img/starLevel5.png)0 0 no-repeat;
  background-size: 70%;
  background-position: center;
}
.sTit1.ver3 {
  background: #fdcc00;
}
.evaluationLink {
  margin: 10vw auto;
  width: 60%;
  display: flex;
  align-items: center;
}
.evaluationLink img {
  width: 57%;
  margin-right: 5%;
}
.siteLinklist{
  width: 38%;
}
.siteLinklist a {
  color: #fff;
  font-weight: 700;
  background: #072d69;
  padding: 5% 0;
  box-sizing: border-box;
  border-radius: 1vw;
  text-align: center;
  font-size: 1.1vw;
  display: block;
  margin-top: 2%;
  width: 49%;
  border: 1px solid transparent;
}
.siteLinklist a:first-child {
  width: 100%;
  display: block;
  background: #034aa7;
  text-align: center;
  font-size: 1.75vw;
}
.siteLinklist a:nth-child(3),
.siteLinklist a:nth-child(4),
.siteLinklist a:nth-child(7) {
  background: #1d66c6;
}
.siteLinklist a:hover{
  border: 1px solid #072d69;
  color: #072d69;
  background: transparent;
}
.singleGoodBlock2 {
  margin-bottom: 5vw;
}
.singleGoodBlock2 h2 {
  background: #072d69;
  color: #fff;
  text-align: center;
  font-size: 1.75vw;
  font-weight: 700;
  padding: 1% 0;
}
.singleGoodBlock2 h2 span {
  color: #fff;
  font-size: 1.25vw;
  display: block;
  margin-bottom: -0.4vw;
}
.singleGoodBlock2 p {
  font-size: 1.25vw;
  font-weight: 700;
  width: 60%;
  margin: 2vw auto 0;
}
.singleGoodBlock2#link2 h2,
.singleGoodBlock2#link4 h2,
.singleGoodBlock2#link6 h2 {
  background: #1d66c6;
}
.pageSingleBadsite .singleGoodBlock1 .wrap1 {
  justify-content: center;
}














@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%);
  border-radius: 2vw;
}
.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;
}
.tit14 {
  padding: 4% 18.5% 4% 21%;
}
.tit14 h2 {
  font-size: 6.5vw;
  font-weight: 500;
}
.tit14:before {
  width: 14vw;
  height: 20vw;
  left: 7.5%;
  bottom: -5%;
}
.tit14:after {
  width: 12vw;
  height: 21vw;
}
.tit14 .star:before, .tit14 .star:after {
  width: 2.7vw;
  height: 2.7vw;
}
/* 優良サイト一覧 */
.goodsiteBlock1{
  margin-top: 6%;
}
.goodsiteBlock1 .txt1 {
  width: 80%;
  font-size: 3.5vw;
  margin: 3% auto 6%;
}
/* 悪質サイト一覧 */
.badsiteBlock1{
  margin-top: 6%;
}
.badsiteBlock1 .txt1 {
  width: 80%;
  font-size: 3.5vw;
  margin: 3% auto 6%;
}
.badsiteBlock1 .siteList ul li .rankingCard {
  box-shadow: 2.3vw 2.3vw 2vw rgb(237 30 26 / 15%);
}
.tit15 {
  padding: 2% 0 4%;
}
.tit15 .starBox {
  width: 17%;
}
.tit15 h2 {
  font-size: 4.4vw;
  line-height: 1.4;
}z
.singleGoodBlock1 .tit9 {
  font-size: 5.4vw;
}
.singleGoodBlock1 .tit9 span{
  font-size: 3vw;
}
.siteEvaluation {
  width: 80%;
  padding: 6% 0 20%;
}
.siteEvaluation .txt1 {
  margin-bottom: -3vw;
  font-size: 4vw;
}
.siteEvaluation .evaluationTxt{
  font-size: 4.5vw;
  font-weight: 900;
}
.siteEvaluation .txt1, .siteEvaluation .evaluationTxt {
  padding-left: 17%;
}
.siteEvaluation .evaluationTxt span {
  font-size: 10vw;
}
.siteEvaluation .evaluationTxt:after {
  width: 50%;
  margin-left: 24%;
  margin-top: -5%;
}
.singleGoodBlock1 .wrap1 {
  flex-wrap: wrap;
}
.singleGoodBlock1 .wrap1 > div {
  width: 100%;
  padding-top: 7vw;
}
.sTit1 {
  font-size: 4vw;
  width: 54%;
  top: -4vw;
}
.sTit1 img {
  width: 8%;
  margin-left: 2%;
}
.evaluationBox1 p, .evaluationBox3 p {
  font-size: 3.5vw;
}
.singleGoodBlock1 .wrap1 .evaluationBox2 {
  margin: 12vw 0;
  padding-bottom: 7%;
}
.graphBox .graphItem .th {
  font-size: 3.4vw;
}
.graphBar .starBox span {
  height: 9vw;
  width: 8.7vw;
}
.graphBar:after {
  height: 4vw;
  bottom: -3.5vw;
}
.evaluationBox2, .evaluationBox3 {
  padding: 5%;
}
.evaluationLink {
  width: 90%;
  flex-wrap: wrap;
  background: #fff;
  padding: 5%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 1vw 0 2vw rgb(7 41 93 / 20%);
  border-radius: 1vw;
}
.evaluationLink img {
  width: 100%;
  margin-right: 0;
}
.siteLinklist {
  width: 100%;
  margin-top: 1%;
}
.siteLinklist a:first-child {
  font-size: 4vw;
}
.siteLinklist a {
  font-size: 3.75vw;
}
.singleGoodBlock2 {
  margin-bottom: 8vw;
}
.singleGoodBlock2 h2 {
  font-size: 4.4vw;
}
.singleGoodBlock2 h2 span {
  font-size: 3.5vw;
  margin-bottom: -0.8vw;
}
.singleGoodBlock2 p {
  width: 90%;
  font-size: 3.5vw;
  margin-top: 3vw;
}


























}