@charset "UTF-8";
.fv_main {
  margin-top: 240px;
  background: #fff;
  transform: scale(1.4);
}
@media (max-width: 1055px) {
  .fv_main {
    margin-top: 168px;
  }
}
@media (max-width: 768px) {
  .fv_main {
    margin-top: 129px;
    transform: scale(1.1);
  }
}
@media (max-width: 480px) {
  .fv_main {
    margin-top: 119px;
    transform: scale(1);
  }
}

.mySwiper {
  width: 100%;
  padding: 2.776vw 0 5.552vw;
  margin: auto;
}

/* ★幅を固定する（ズレ防止） */
.swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

/* 中身 */
.slide-inner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden; /* 角丸絶対切れない */
  transition: transform 0.7s ease, opacity 0.7s ease;
  transform-style: preserve-3d;
}
@media (max-width: 1055px) {
  .slide-inner {
    border-radius: 12px;
  }
}

.slide-inner img {
  width: 100%;
  display: block;
}

/* 非アクティブ（奥・小） */
.swiper-slide:not(.swiper-slide-active) .slide-inner {
  transform: scale(0.85) translateZ(-220px);
}

/* アクティブ（手前） */
.swiper-slide-active .slide-inner {
  transform: scale(1) translateZ(0);
  opacity: 1;
  z-index: 10;
}

/* カバー風の奥行きを綺麗に見せる */
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  border-radius: 20px;
}

/* ドットを棒状にする */
.swiper-pagination-bullet {
  width: 55px; /* 横幅 */
  height: 7px; /* 高さ */
  border-radius: 9999px; /* 角丸 */
  background: #ccc; /* 通常の色 */
  opacity: 1; /* デフォルトは半透明なので1に */
  margin: 0 4px !important; /* ドット間の間隔調整 */
  transition: background 0.3s;
}
@media (max-width: 1385px) {
  .swiper-pagination-bullet {
    width: 42px;
    height: 6px;
  }
}

/* アクティブのドット */
.swiper-pagination-bullet-active {
  background: #00bac6; /* アクティブ色 */
}

/* デフォルトのフォントアイコンを消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  font-family: none !important;
}

.swiper-pagination-bullet {
  width: 2.915vw;
  height: 0.347vw;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 5.469vw;
    height: 0.651vw;
  }
}
@media (max-width: 480px) {
  .swiper-pagination-bullet {
    width: 10.256vw;
    height: 1.282vw;
  }
}

.swiper-pagination {
  bottom: 3.609vw !important;
}
@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 1.669vw !important;
  }
}
@media (max-width: 480px) {
  .swiper-pagination {
    bottom: 0 !important;
  }
}

/* 共通スタイル（お好きに調整） */
.swiper-button-prev,
.swiper-button-next {
  width: 40px; /* 画像サイズに合わせて調整 */
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1300px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

/* 左矢印 */
.swiper-button-prev {
  position: absolute;
  background-image: url("../img/prev-arrow.png"); /* ←あなたの画像パス */
  left: 32%;
  transform: translate(-85%, -0.5vw);
}
@media (max-width: 1055px) {
  .swiper-button-prev {
    transform: translateX(-85%);
  }
}
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 18%;
  }
}
@media (max-width: 480px) {
  .swiper-button-prev {
    left: 11%;
  }
}

/* 右矢印 */
.swiper-button-next {
  position: absolute;
  background-image: url("../img/next-arrow.png"); /* ←あなたの画像パス */
  right: 32%;
  transform: translate(85%, -0.5vw);
}
@media (max-width: 1055px) {
  .swiper-button-next {
    transform: translateX(85%);
  }
}
@media (max-width: 768px) {
  .swiper-button-next {
    right: 18%;
  }
}
@media (max-width: 480px) {
  .swiper-button-next {
    right: 11%;
  }
}

/* ===========================
    ◆ スライダー②（5枚・左右見切れ）
=========================== */
.mySwiper2 {
  width: 100%;
  margin: 50px auto;
}

.mySwiper2 .swiper-slide {
  margin-left: 2.3%;
  width: 20.833vw;
  height: 13.889vw;
  overflow: hidden;
  border-radius: 12px;
}

.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* スライダー②専用ナビゲーション位置調整 */
.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.mySwiper2 .swiper-button-prev {
  left: 10px;
}

.mySwiper2 .swiper-button-next {
  right: 10px;
}

.sponsor_sec {
  padding: 10px 0 40px;
}
@media (max-width: 768px) {
  .sponsor_sec {
    padding: 10px 0 20px;
  }
}
.sponsor_sec .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .sponsor_sec .inner {
    width: calc(100% - 90px);
  }
}
@media (max-width: 480px) {
  .sponsor_sec .inner {
    width: calc(100% - 40px);
  }
}
.sponsor_sec .inner .sponsor_img {
  position: relative;
  transition: all 0.4s;
}
.sponsor_sec .inner .sponsor_img:hover {
  opacity: 0.7;
}
.sponsor_sec .inner .sponsor_img:before {
  position: absolute;
  background-image: url(../img/sponsor-i.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 111px;
  height: 20px;
  content: "";
  top: 10px;
  left: 0;
}
@media (max-width: 768px) {
  .sponsor_sec .inner .sponsor_img:before {
    top: 0;
  }
}
.sponsor_sec .inner .sponsor_img a img.pc_only {
  width: 100%;
}
@media (max-width: 1100px) {
  .sponsor_sec .inner .sponsor_img a img.pc_only {
    display: none;
  }
}
.sponsor_sec .inner .sponsor_img a img.tab_only {
  width: 100%;
  display: none;
}
@media (max-width: 1100px) {
  .sponsor_sec .inner .sponsor_img a img.tab_only {
    display: block;
  }
}
@media (max-width: 480px) {
  .sponsor_sec .inner .sponsor_img a img.tab_only {
    display: none;
  }
}
.sponsor_sec .inner .sponsor_img a img.sp_only {
  width: 100%;
  display: none;
}
@media (max-width: 480px) {
  .sponsor_sec .inner .sponsor_img a img.sp_only {
    display: block;
  }
}

.attention_sec {
  position: relative;
  background: #e0f7f8;
  z-index: 4;
}
@media (max-width: 480px) {
  .attention_sec {
    padding-bottom: 20px;
  }
}
.attention_sec:after {
  position: absolute;
  bottom: -4.552vw;
  background-image: url(../img/attention-under-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 4.552vw;
  content: "";
}
.attention_sec .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .attention_sec .inner {
    width: calc(100% - 90px);
  }
}
@media (max-width: 480px) {
  .attention_sec .inner {
    width: calc(100% - 40px);
  }
}
.attention_sec .inner .ttl_con {
  padding-top: 50px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .attention_sec .inner .ttl_con {
    padding-top: 40px;
  }
}
.attention_sec .inner .ttl_con h2.main {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 15px;
}
.attention_sec .inner .ttl_con h2.main:before {
  position: absolute;
  background-image: url(../img/ttl-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 65px;
  height: 65px;
  z-index: -1;
}
.attention_sec .inner .ttl_con .sub {
  padding-top: 21px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.attention_sec .inner .ttl_con .sub:after {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto;
  background: #00bac6;
  content: "";
}
.attention_sec .inner .attention_wrap {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1100px) {
  .attention_sec .inner .attention_wrap {
    gap: 3%;
  }
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap {
    display: block;
  }
}
.attention_sec .inner .attention_wrap:before {
  position: absolute;
  background-image: url(../img/pickup-i.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100px;
  height: 85px;
  content: "";
  z-index: 2;
  top: -85px;
  left: 10px;
}
@media (max-width: 480px) {
  .attention_sec .inner .attention_wrap:before {
    width: 80px;
    height: 69px;
    top: -69px;
  }
}
.attention_sec .inner .attention_wrap .attention_b {
  width: 317px;
  height: 388px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) {
  .attention_sec .inner .attention_wrap .attention_b {
    width: 31.33%;
    height: 38.5vw;
  }
}
@media (max-width: 970px) {
  .attention_sec .inner .attention_wrap .attention_b {
    height: 42.5vw;
  }
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b {
    height: 100%;
    width: 100%;
    max-height: 180px;
    margin-bottom: 12px;
  }
}
@media (max-width: 675px) {
  .attention_sec .inner .attention_wrap .attention_b {
    max-height: 100%;
  }
}
@media (max-width: 1100px) {
  .attention_sec .inner .attention_wrap .attention_b:nth-child(1), .attention_sec .inner .attention_wrap .attention_b:nth-child(2), .attention_sec .inner .attention_wrap .attention_b:nth-child(3) {
    margin-bottom: 3%;
  }
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b:nth-child(1), .attention_sec .inner .attention_wrap .attention_b:nth-child(2), .attention_sec .inner .attention_wrap .attention_b:nth-child(3) {
    margin-bottom: 12px;
  }
}
.attention_sec .inner .attention_wrap .attention_b:hover a .rank_thumb img {
  transform: scale(1.1);
}
.attention_sec .inner .attention_wrap .attention_b:hover a .rank_desc {
  border-radius: 6px;
}
.attention_sec .inner .attention_wrap .attention_b a {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s;
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b a {
    display: flex;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb {
  width: 100%;
  height: 195px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 1100px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb {
    height: 17.711vw;
  }
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb {
    height: auto;
    min-width: 50%;
    max-height: 180px;
    border-radius: 4px 0 0 4px;
  }
}
@media (max-width: 675px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb {
    max-height: 100%;
  }
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb {
    width: 125px;
    flex: 0 0 125px;
    display: flex;
    flex-direction: column;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb img {
  width: 100%;
  height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb img {
    height: 100%;
    border-radius: 4px 0 0 4px;
  }
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb img {
    border-radius: 4px 0 0 0;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only {
  position: relative;
  display: inline-block;
  background: #00bac6;
  padding: 0 6px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  padding-left: 18px;
  font-weight: 500;
  display: none;
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only {
    display: block;
    border-radius: 0 0 0 4px;
    height: auto;
    padding: 10px;
    padding-left: 18px;
  }
}
@media (max-width: 480px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only {
    line-height: 1.35;
  }
}
@media (max-width: 420px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only {
    padding: 5px;
    padding-left: 15px;
    text-align: left;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only:before {
  position: absolute;
  width: 10px;
  height: 100%;
  content: "";
  background: #00868e;
  left: 0;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only:before {
    top: 0;
    border-radius: 0 0 0 4px;
  }
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only span.pc_only {
    display: none;
  }
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.sp_only br.sp_only {
    display: block;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.cat1:before {
  background: #00868e;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.cat2:before {
  background: #fbcc3b;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.cat3:before {
  background: #de5451;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_thumb .cat_ttl.cat4:before {
  background: #2b7ac8;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc {
  padding: 16px 20px;
  transition: 0.4s;
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc {
    padding: 15px;
    min-width: 50%;
  }
}
@media (max-width: 480px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc {
    padding: 10px 15px;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.pc_only {
  position: relative;
  display: inline-block;
  background: #00bac6;
  padding: 0 6px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  padding-left: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.pc_only {
    display: none;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.pc_only:before {
  position: absolute;
  width: 10px;
  height: 100%;
  content: "";
  background: #00868e;
  left: 0;
  border-radius: 4px 0 0 4px;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.cat1:before {
  background: #00868e;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.cat2:before {
  background: #fbcc3b;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.cat3:before {
  background: #de5451;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .cat_ttl.cat4:before {
  background: #2b7ac8;
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc h3.r_ttl {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc h3.r_ttl {
    font-size: 14px;
  }
}
@media (max-width: 801px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc h3.r_ttl {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc h3.r_ttl {
    margin-top: 0;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc p.r_txt {
  font-size: 14px;
}
@media (max-width: 800px) {
  .attention_sec .inner .attention_wrap .attention_b a .rank_desc .tag_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
}
.attention_sec .inner .attention_wrap .attention_b a .rank_desc .tag_wrap .tag {
  font-size: 13px;
  color: #00868e;
}
.attention_sec .inner .attention_wrap .sponsor_tag a .rank_thumb {
  position: relative;
}
.rank_sec {
  background: #fff;
  position: relative;
  padding-top: 5.517vw;
  padding-bottom: 30px;
  z-index: 3;
}
@media (max-width: 950px) {
  .rank_sec {
    padding-bottom: 45px;
  }
}
@media (max-width: 480px) {
  .rank_sec {
    padding-bottom: 56px;
  }
}
.rank_sec:before {
  position: absolute;
  background-image: url(../img/rank-i.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 123px;
  height: 65px;
  content: "";
  z-index: 2;
  transform: translateX(-50%);
  left: 50%;
  bottom: -4.5vw;
}
@media (max-width: 1385px) {
  .rank_sec:before {
    width: 98px;
    height: 52px;
  }
}
.rank_sec:after {
  position: absolute;
  bottom: -4.552vw;
  background-image: url(../img/rank-under-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 4.552vw;
  content: "";
}
.rank_sec .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .rank_sec .inner {
    width: calc(100% - 90px);
  }
}
@media (max-width: 480px) {
  .rank_sec .inner {
    width: calc(100% - 40px);
  }
}
.rank_sec .inner .ttl_con {
  padding-top: 50px;
  margin-bottom: 24px;
}
.rank_sec .inner .ttl_con h2.main {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 15px;
}
.rank_sec .inner .ttl_con h2.main:before {
  position: absolute;
  background-image: url(../img/ttl-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 65px;
  height: 65px;
  z-index: -1;
}
.rank_sec .inner .ttl_con .sub {
  padding-top: 21px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.rank_sec .inner .ttl_con .sub:after {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto;
  background: #00bac6;
  content: "";
}
.rank_sec .inner .rank_con .u_ttl {
  text-align: center;
  margin-bottom: 12px;
}
.rank_sec .inner .rank_con .u_ttl span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  font-size: 20px;
  color: #4d4d4d;
}
.rank_sec .inner .rank_con .u_ttl span:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/u-ttl-deco1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 11px;
  height: 17px;
  content: "";
}
.rank_sec .inner .rank_con .u_ttl span:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/u-ttl-deco2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 11px;
  height: 17px;
  content: "";
}
.rank_sec .inner .rank_con .rank_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap {
    gap: 3%;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap {
    display: block;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b {
  position: relative;
  width: 488px;
  height: 400px;
  border-radius: 6px;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b {
    width: 50%;
    height: auto;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 670px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b {
    margin-bottom: 12px;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b:before {
  position: absolute;
  width: 30px;
  height: 35px;
  content: "";
  background-image: url(../img/rank1-flag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 10px;
  z-index: 5;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b:hover a {
  background: #ececec;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b:hover a .rank_thumb img {
  transform: scale(1.1);
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a {
    display: flex;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_thumb {
  height: 247px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_thumb {
    height: auto;
    width: 36.474vw;
    flex: 0 0 36.474vw;
    height: 180px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_thumb {
    height: auto;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_thumb img {
  width: 100%;
  height: 247px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_thumb img {
    height: 180px;
    border-radius: 4px 0 0 4px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_thumb img {
    height: 100%;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_desc {
  padding: 18px 23px 25px;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_desc {
    padding: 22px 15px;
  }
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_desc {
    padding: 10px 15px 10px;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_desc h3.r_ttl {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_desc p.r_txt {
  font-size: 14px;
  color: #999999;
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_b.first_b a .rank_desc p.r_txt {
    font-size: 12px;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block {
    width: 50%;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block {
    display: block;
    width: 100%;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b {
  position: relative;
  width: 488px;
  height: 190px;
  border-radius: 6px;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b {
    width: 100%;
    height: auto;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b:hover a .rank_thumb img {
  transform: scale(1.1);
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a {
  display: flex;
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_thumb {
  width: 200px;
  flex: 0 0 200px;
  height: 190px;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_thumb {
    height: auto;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_thumb {
    height: auto;
    width: 36.474vw;
    flex: 0 0 36.474vw;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_thumb img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_thumb img {
    height: 100%;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_desc {
  padding: 13px 23px;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_desc {
    padding: 13px 15px;
  }
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_desc {
    padding: 10px 15px;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_desc h3.r_ttl {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_desc p.r_txt {
  font-size: 14px;
  color: #999999;
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b a .rank_desc p.r_txt {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b {
    margin-bottom: 5%;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b {
    margin-bottom: 12px;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b:before {
  position: absolute;
  width: 30px;
  height: 35px;
  content: "";
  background-image: url(../img/rank2-flag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 10px;
  z-index: 5;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b .rank_thumb {
    height: 136px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b .rank_thumb {
    height: auto;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b .rank_thumb img {
    height: 136px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.sec_b .rank_thumb img {
    height: 100%;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b {
    margin-bottom: 24px;
  }
}
@media (max-width: 670px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b {
    margin-bottom: 12px;
  }
}
.rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b:before {
  position: absolute;
  width: 30px;
  height: 35px;
  content: "";
  background-image: url(../img/rank3-flag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 10px;
  z-index: 5;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b .rank_thumb {
    height: 136px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b .rank_thumb {
    height: auto;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b .rank_thumb img {
    height: 136px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap .rank_block .rank_b.third_b .rank_thumb img {
    height: 100%;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap2 {
    gap: 3%;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap2 {
    display: block;
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap2 {
    margin-bottom: 20px;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b {
  position: relative;
  width: 488px;
  height: 190px;
  border-radius: 6px;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b {
    height: auto;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b {
    width: 100%;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b:hover a .rank_thumb img {
  transform: scale(1.1);
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b a {
  display: flex;
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb {
  width: 200px;
  flex: 0 0 200px;
  height: 190px;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb {
    height: auto;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb {
    height: auto;
    width: 36.474vw;
    flex: 0 0 36.474vw;
    height: 136px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb {
    height: auto;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 1100px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb img {
    height: 100%;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb img {
    height: 136px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_thumb img {
    height: 100%;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_desc {
  padding: 13px 23px;
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_desc {
    padding: 13px 15px;
  }
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_desc {
    padding: 10px 15px;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_desc h3.r_ttl {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_desc p.r_txt {
  font-size: 14px;
  color: #999999;
}
@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b a .rank_desc p.r_txt {
    font-size: 12px;
  }
}
@media (max-width: 950px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b.forth_b {
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .rank_sec .inner .rank_con .rank_wrap2 .rank_b.forth_b {
    margin-bottom: 12px;
  }
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b.forth_b:before {
  position: absolute;
  width: 30px;
  height: 35px;
  content: "";
  background-image: url(../img/rank4-flag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 10px;
  z-index: 5;
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b.fifth_b:before {
  position: absolute;
  width: 30px;
  height: 35px;
  content: "";
  background-image: url(../img/rank5-flag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 10px;
  z-index: 5;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.sec_b .rank_desc {
  transition: 0.5s;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.sec_b:hover .rank_desc {
  background: #ececec;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.third_b .rank_desc {
  transition: 0.5s;
}
.rank_sec .inner .rank_con .rank_wrap .rank_b.third_b:hover .rank_desc {
  background: #ececec;
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b:hover .rank_desc {
  background: #ececec;
}
.rank_sec .inner .rank_con .rank_wrap2 .rank_b .rank_desc {
  transition: 0.4s;
}

@media (max-width: 480px) {
  .rank_b {
    height: 195px !important;
  }
}

@media (max-width: 480px) {
  .rank_sec .inner .rank_con .rank_thumb img {
    height: 195px !important;
  }
}

/* active 以外をグレーにする */
.mySwiper .swiper-slide:not(.swiper-slide-active) img {
  filter: grayscale(60%) brightness(45%);
  transition: filter 0.3s ease;
}

/* active の画像は通常表示 */
.swiper-slide-active img {
  filter: none;
}

.about {
  background: #e0f7f8;
  position: relative;
  padding-top: 5.517vw;
  z-index: 2;
}
.about:after {
  position: absolute;
  bottom: -4.552vw;
  background-image: url(../img/about-under-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 4.552vw;
  content: "";
}
.about .wrap {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 768px) {
  .about .wrap {
    padding: 60px 0 30px;
  }
}
@media (max-width: 480px) {
  .about .wrap {
    padding: 60px 0 40px;
  }
}
.about .wrap .left {
  width: 395px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .about .wrap .left {
    width: calc(100% - 180px);
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .about .wrap .left {
    width: calc(100% - 40px);
  }
}
.about .wrap .left .left_logo {
  width: 158px;
  margin: 0 auto;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .about .wrap .left .left_logo {
    margin-bottom: 10px;
  }
}
.about .wrap .left .left_logo img {
  width: 100%;
}
.about .wrap .left h2.ttl {
  font-weight: 500;
  text-align: center;
  margin-bottom: 54px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .about .wrap .left h2.ttl {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .about .wrap .left h2.ttl {
    margin-bottom: 22px;
  }
}
.about .wrap .left h2.ttl span {
  position: relative;
  font-weight: 500;
  padding-right: 28px;
}
.about .wrap .left h2.ttl span:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 2px;
  height: 13px;
  content: "";
  background: #00bac6;
}
.about .wrap .left h3.a_ttl {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 34px;
}
@media (max-width: 768px) {
  .about .wrap .left h3.a_ttl {
    margin-bottom: 15px;
  }
}
.about .wrap .left h3.a_ttl .sp_only {
  display: none;
}
@media (max-width: 480px) {
  .about .wrap .left h3.a_ttl .sp_only {
    display: block;
  }
}
.about .wrap .left .a_txt {
  width: 295px;
  margin: 0 auto;
  margin-bottom: 50px;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .about .wrap .left .a_txt {
    width: 80%;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .about .wrap .left .a_txt {
    width: 100%;
  }
}
.about .wrap .left .right.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .about .wrap .left .right.sp_only {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .about .wrap .left .right.sp_only {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}
.about .wrap .left .right.sp_only img.tab_only {
  width: 100%;
}
@media (max-width: 480px) {
  .about .wrap .left .right.sp_only img.tab_only {
    display: none;
  }
}
.about .wrap .left .right.sp_only img.sp_only {
  width: 100%;
  display: none;
}
@media (max-width: 480px) {
  .about .wrap .left .right.sp_only img.sp_only {
    display: block;
  }
}
.about .wrap .left .sns_wrap {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .about .wrap .left .sns_wrap {
    margin-top: 32px;
    gap: 24px;
  }
}
.about .wrap .left .sns_wrap .sns_i {
  width: 30px;
  flex: 0 0 30px;
}
@media (max-width: 768px) {
  .about .wrap .left .sns_wrap .sns_i {
    width: 24px;
    flex: 0 0 24px;
  }
}
.about .wrap .left .sns_wrap .sns_i a {
  transition: all 0.4s;
}
.about .wrap .left .sns_wrap .sns_i a:hover {
  opacity: 0.7;
}
.about .wrap .left .sns_wrap .sns_i a img {
  width: 100%;
}
.about .wrap .right.pc_only {
  width: 52.069vw;
}
@media (max-width: 768px) {
  .about .wrap .right.pc_only {
    display: none;
  }
}
.about .wrap .right.pc_only img {
  width: 100%;
}

.tag_sec {
  background: #fff;
  position: relative;
  padding-top: 6.517vw;
  padding-bottom: 2vw;
  z-index: 1;
}
@media (max-width: 768px) {
  .tag_sec {
    padding-bottom: 5vw;
  }
}
@media (max-width: 480px) {
  .tag_sec {
    padding-bottom: 32px;
  }
}
.tag_sec:after {
  position: absolute;
  bottom: -4.552vw;
  background-image: url(../img/rank-under-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 4.552vw;
  content: "";
}
.tag_sec .inner {
  width: 845px;
  margin: 0 auto;
}
@media (max-width: 910px) {
  .tag_sec .inner {
    width: calc(100% - 90px);
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .tag_sec .inner {
    width: calc(100% - 40px);
  }
}
.tag_sec .inner .ttl_con {
  margin-bottom: 24px;
}
.tag_sec .inner .ttl_con h2.main {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 15px;
}
.tag_sec .inner .ttl_con h2.main:before {
  position: absolute;
  background-image: url(../img/ttl-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 65px;
  height: 65px;
  z-index: -1;
}
.tag_sec .inner .ttl_con .sub {
  padding-top: 21px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.tag_sec .inner .ttl_con .sub:after {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto;
  background: #00bac6;
  content: "";
}
.tag_sec .inner .tag_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.tag_sec .inner .tag_wrap a {
  background: #fff;
  border: 2px solid #00bac6;
  border-radius: 4px;
  display: block;
  padding: 0 6px;
  font-size: 14px;
  transition: all 0.4s;
  color: #4d4d4d;
}
.tag_sec .inner .tag_wrap a:hover {
  opacity: 0.7;
}

.contact_sec {
  background: #e0f7f8;
  padding: 80px 0 64px;
}
@media (max-width: 768px) {
  .contact_sec {
    padding: 30px 0 50px;
  }
}
@media (max-width: 480px) {
  .contact_sec {
    padding: 30px 0 40px;
  }
}
.contact_sec .inner {
  width: 500px;
  margin: 0 auto;
}
@media (max-width: 590px) {
  .contact_sec .inner {
    width: calc(100% - 90px);
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .contact_sec .inner {
    width: calc(100% - 40px);
  }
}
.contact_sec .inner .ttl_con {
  padding-top: 64px;
  margin-bottom: 43px;
}
@media (max-width: 768px) {
  .contact_sec .inner .ttl_con {
    margin-bottom: 30px;
    padding-top: 34px;
  }
}
.contact_sec .inner .ttl_con h2.main {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 15px;
}
.contact_sec .inner .ttl_con h2.main:before {
  position: absolute;
  background-image: url(../img/ttl-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 65px;
  height: 65px;
  z-index: -1;
}
.contact_sec .inner .ttl_con .sub {
  padding-top: 21px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.contact_sec .inner .ttl_con .sub:after {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto;
  background: #00bac6;
  content: "";
}

.rank_b a {
  width: 100% !important;
  height: 100% !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .pc__only {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media (max-width: 1090px) {
  .tab_only {
    display: block;
  }
}

.sp__only {
  display: none;
}
@media (max-width: 480px) {
  .sp__only {
    display: block;
  }
}

.sponsor_sec .inner .sponsor_img {
  display: none;
}/*# sourceMappingURL=top.css.map */