<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******* common *******/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Mincho Std Bold", serif;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE and Edge */
* {
  -ms-overflow-style: none;
}

/* Chrome, Safari, Opera */
::-webkit-scrollbar {
  display: none;
}
ul,
ol {
  list-style: none;
}
a,
a:visited {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
iframe {
  border: none;
}
.sp,
.pad {
  display: none !important;
}
.disable {
  pointer-events: none;
  opacity: 0.4;
}
main {
  position: relative;
}

.inner {
  width: 1300px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

.main_title {
  color: #0068ba;
  font-family: "octin-college", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: normal;
}
.main_title span {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  font-style: normal;
}
.main_title.white,
.main_title.white span {
  color: #fff;
}

.sp {
  display: none !important;
}

.pc-inline {
  display: inline !important;
}

.sp-inline {
  display: none !important;
}

.pc-flex {
  display: flex !important;
}

.sp-flex {
  display: none !important;
}

.pc {
  display: block !important;
}

/*** 繧ｹ繝槭� 320px ~ 767px***/
@media screen and (max-width: 767px) {
  #nav_ranking .ranking_container .top_text {
    font-size: 12px !important;
    display: flex !important;

  }
  #nav_ranking .ranking_container {
    gap: 15px !important;
  }
  .sp {
    display: block !important;
  }

  .pc-inline {
    display: none !important;
  }
  
  .sp-inline {
    display: inline !important;
  }

  .pc-flex {
    display: none !important;
  }

  .sp-flex {
    display: flex !important;
  }

  .pc {
    display: none !important;
  }
  .main_title {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main_title span {
    font-size: 12px;
    margin-top: -3px;
  }
  .title_head .main_title {
    align-items: start;
  }
  .inner {
    margin: 0 auto;
    max-width: calc(100% - 32px);
  }
}

/* !animation
---------------------------------------------------------- */
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }

  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }

  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }

  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes moveDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(5px);
  }
}

/* !border
---------------------------------------------------------- */
.border_top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  border-top: 20px solid #007de0;
  z-index: 110;
}
.border_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100dvw;
  border-bottom: 20px solid #004aba;
  z-index: 110;
}
.border_left,
.border_right {
  height: 100%;
  width: 20px;
  position: fixed;
  top: 0;
  background: linear-gradient(to bottom, #007de0, #004aba);
  z-index: 110;
}
.border_left {
  left: 0;
}
.border_right {
  right: 0;
}

.left_top,
.right_top,
.left_bottom,
.right_bottom,
.left_center,
.right_center {
  position: fixed;
  width: 16px;
  height: 16px;
  z-index: 120;
}
.left_top {
  top: 20px;
  left: 140px;
}
.right_top {
  top: 20px;
  right: 100px;
  transform: rotate(90deg);
}
.left_bottom {
  bottom: 20px;
  left: 20px;
  transform: rotate(90deg);
}
.right_bottom {
  bottom: 20px;
  right: 20px;
}
.left_center {
  top: 140px;
  left: 20px;
}
.right_center {
  top: 100px;
  right: 20px;
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .border_top {
    border-top: 8px solid #007de0;
  }
  .border_bottom {
    border-bottom: 8px solid #004aba;
  }
  .border_left,
  .border_right {
    width: 8px;
  }
  .left_top {
    top: 8px;
    left: 80px;
  }
  .right_top {
    top: 8px;
    right: 64px;
  }
  .left_bottom {
    bottom: 8px;
    left: 8px;
  }
  .right_bottom {
    bottom: 8px;
    right: 8px;
  }
  .left_center {
    top: 80px;
    left: 8px;
  }
  .right_center {
    top: 64px;
    right: 8px;
  }
}

/* !background
---------------------------------------------------------- */
.background {
  position: fixed;
  z-index: -10;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.background img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* !news_header
---------------------------------------------------------- */
.news_header {
  background: #007de0;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
}
.news_header .new {
  color: #fff;
  font-family: "octin-college", sans-serif;
  font-size: 28px;

  font-weight: 900;
  line-height: 100%;
  letter-spacing: -0.28px;
}
.news_header_content {
  overflow: hidden;
}
.news_header .news_header_detail {
  display: flex;
  gap: 50px;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
}
.news_header .news_header_detail .text {
  display: flex;
  gap: 50px;
  width: 100%;
}
.news_header .news_header_detail:hover .new_text {
  text-decoration: underline;
  color: #fff;
}
.news_header .new_text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  text-decoration-line: underline;
}
.news_header .arrow_icon {
  display: flex;
  width: 45.5px;
  height: 26px;
  justify-content: center;
  align-items: center;
  gap: 5.2px;
  aspect-ratio: 45.5/26;
  border-radius: 18.981px;
  background: #f4e829;
}
.news_header .arrow_down {
  width: 20px;
}

@media screen and (max-width: 767px) {
  .news_header {
    height: 80px;
  }
  .news_header .swiper-slide {
    margin-right: 0;
  }
  .news_header .new {
    line-height: 24px;
    padding-left: 0;
    font-size: 18px;
  }
  .news_header .new_text {
    font-size: 12px;
    line-height: 20px;
    width: 96%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news_header .news_header_detail {
    width: calc(100% - 72px);
    gap: 2px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 84px;
    margin: 0;
  }
  .news_header .news_header_detail .text {
    justify-content: space-between;
    gap: 4px;
  }
  .news_header .white_arrow_down {
    width: 16px;
  }
  .news_header .arrow_icon {
    width: 40px;
    height: 20px;
  }
  .news_header .arrow_down {
    width: 16px;
  }
}

/* !follow
---------------------------------------------------------- */
.follow {
  width: fit-content;
  position: fixed;
  bottom: 4%;
  right: 3%;
  z-index: 105;
}
@media screen and (max-width: 767px) {
  .follow {
    bottom: 3%;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* !kv
---------------------------------------------------------- */
.kv {
  width: 100%;
}

/* !header
---------------------------------------------------------- */
.header .header_logo {
  width: 140px;
  height: 140px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #007de0, #0077dc);
  border-bottom-right-radius: 14px;
}
.header .header_logo img {
  width: 90px;
}

.header .btnMenu {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 105;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background-color: #007de0;
  border-bottom-left-radius: 14px;
  cursor: pointer;
}
.header .btnMenu .star,
.menu_close_btn .star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  margin-top: 7px;
}
.header .btnMenu .star img,
.menu_close_btn .star img {
  width: 13px;
}
.header .btnMenu p,
.menu_close_btn p {
  color: #fff;
  font-family: "octin-college", sans-serif;
  font-size: 22.317px;
  font-weight: 900;
  line-height: normal;
  margin-top: -4px;
}

@media screen and (max-width: 767px) {
  .header .header_logo {
    width: 80px;
    height: 80px;
  }
  .header .header_logo img {
    width: 56px;
  }
  .header .btnMenu p,
  .menu_close_btn p {
    font-size: 16px;
  }
  .header .btnMenu {
    width: 64px;
    height: 64px;
  }
  .header .btnMenu .star,
  .menu_close_btn .star {
    gap: 2px;
    margin-top: 5px;
  }
  .header .btnMenu .star img,
  .menu_close_btn .star img {
    width: 9px;
  }
}

/* !btn
---------------------------------------------------------- */
.btn_yellow,
.btn_blue,
.btn_white {
  background-color: #f4e829;
  border-radius: 38.58px;
  width: 380px;
  height: 76px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}
.btn_blue {
  background-color: #0068ba;
}
.btn_white {
  background-color: #fff;
}
.btn_yellow .txt,
.btn_blue .txt,
.btn_white .txt {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 900;
  line-height: 150%;
}
.btn_blue .txt {
  color: #f4e829;
}
.btn_white .txt {
  color: #e74291;
}
.btn_yellow .arrow-container,
.btn_blue .arrow-container,
.btn_white .arrow-container {
  border-radius: 28.37px;
  background-color: #0068ba;
  width: 62px;
  height: 34px;
  position: relative;
  display: block;
}
.btn_blue .arrow-container {
  background-color: #f4e829;
}
.btn_white .arrow-container {
  background-color: #e74291;
}
.btn_yellow .arrow-container .arrow-default,
.btn_blue .arrow-container .arrow-default,
.btn_white .arrow-container .arrow-default,
.btn_yellow .arrow-container .arrow-hover,
.btn_blue .arrow-container .arrow-hover,
.btn_white .arrow-container .arrow-hover {
  width: 18px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(80%);
  transition: transform 0.4s, opacity 0.3s;
}
.btn_yellow .arrow-container .arrow-default,
.btn_blue .arrow-container .arrow-default,
.btn_white .arrow-container .arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.btn_yellow .arrow-container .arrow-hover,
.btn_blue .arrow-container .arrow-hover,
.btn_white .arrow-container .arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}
.btn_yellow:hover .arrow-container .arrow-default,
.btn_blue:hover .arrow-container .arrow-default,
.btn_white:hover .arrow-container .arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}
.btn_yellow:hover .arrow-container .arrow-hover,
.btn_blue:hover .arrow-container .arrow-hover,
.btn_white:hover .arrow-container .arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

@media screen and (max-width: 767px) {
  .btn_yellow,
  .btn_blue,
  .btn_white {
    width: 311px;
    height: 60px;
  }
  .btn_yellow .txt,
  .btn_blue .txt,
  .btn_white .txt {
    font-size: 16px;
  }
  .btn_yellow .arrow-container,
  .btn_blue .arrow-container,
  .btn_white .arrow-container {
    width: 40px;
    height: 22px;
  }
  .btn_yellow .arrow-container .arrow-default,
  .btn_blue .arrow-container .arrow-default,
  .btn_white .arrow-container .arrow-default,
  .btn_yellow .arrow-container .arrow-hover,
  .btn_blue .arrow-container .arrow-hover,
  .btn_white .arrow-container .arrow-hover {
    width: 12px;
  }
}

/* !navigation
---------------------------------------------------------- */
#navigation {
  background-image: url(../image/bg_menu_pc.jpg);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
#navigation.open {
  opacity: 1;
  z-index: 106;
  pointer-events: auto;
}
#navigation .menu_close_btn {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background-color: #007de0;
  border-bottom-left-radius: 14px;
  cursor: pointer;
}
#navigation .navigation_container {
  display: flex;
  justify-content: center;
  align-items: start;
  width: fit-content;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 64px;
  z-index: 100;
}
#navigation .nav_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.nav_item a {
  color: #0068ba;
  font-family: "octin-college", sans-serif;
  font-size: 56px;

  font-weight: 900;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.nav_item a span {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 900;
  line-height: 150%;
  margin-top: -1%;
}
.nav_item a:hover {
  opacity: 0.7;
}

.disable {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

#navigation .img {
  width: 33.5%;
  position: absolute;
  bottom: 7%;
  right: 5%;
  transform: rotate(-5deg);
  transform-origin: center;
  animation: katakata 4s infinite ease-in-out alternate;
}

@media screen and (max-width: 767px) {
  #navigation {
    background-image: url(../image/bg_menu_sp.jpg);
  }
  #navigation .navigation_container {
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    justify-content: start;
    gap: 16px;
    max-height: 95dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 60px;
  }
  #navigation .nav_list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 40px;
  }
  .nav_item a {
    font-size: 34px;
  }
  .nav_item a span {
    font-size: 14px;
  }
  #navigation .menu_close_btn {
    width: 64px;
    height: 64px;
    top: 0;
    right: 0;
  }

  #navigation .img {
    width: 70%;
    bottom: 0;
    right: -2%;
    transform: rotate(-5deg);
  }
}

/* !footer
---------------------------------------------------------- */
footer {
  background: linear-gradient(to bottom, #007de0, #004aba);
  padding: 64px 0 100px;
  border-left: 4px solid #877429;
  border-right: 4px solid #877429;
}
footer .footer_logo {
  width: 150px;
  margin: 0 auto 36px;
}
footer .sns_text {
  color: #fff;
  text-align: center;
  font-family: "octin-college", sans-serif;
  font-size: 42px;

  font-weight: 900;
  line-height: 100%;
}
footer .sns_sub_text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
footer .sns_logo {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: center;
  width: 416px;
  max-width: 100%;
  margin: 24px auto;
}
footer .sns_logo .sns_icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .sns_logo .sns_icon a {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 50px;
  transition: 0.4s ease;
}

footer .sns_logo .sns_icon a:hover {
  width: 48px;
  height: 48px;
}

footer .sns_logo .sns_icon a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
  z-index: 1;
}

footer .site_link {
  display: flex;
  gap: 16px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: 48px auto 42px;
}
footer .site_link_text {
  position: relative;
}
footer .site_link_text::after {
  content: "";
  display: block;
  background-color: currentColor;
  bottom: 0;
  height: 1.3px;
  left: 0;
  right: auto;
  width: 0;
  position: absolute;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(1, 0.61, 0.355, 0.215);
  transition-property: width;
  color: #f1f1f1;
}
footer .site_link_text a {
  transition: 0.4s ease;
}
footer .site_link_text a:hover {
  opacity: 0.7;
}

footer .site_link .vertical_line {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 24px;
}
footer .copyright {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 18px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 48px 0 64px;
  }
  .footer_top {
    padding: 48px 0 120px;
  }
  footer .footer_logo {
    width: 100px;
  }
  footer .sns_logo {
    gap: 8px;
  }
  footer .sns_text {
    font-size: 36px;
    line-height: 36px;
  }
  footer .sns_sub_text {
    font-size: 14px;
    line-height: 21px;
  }
  footer .sns_logo .sns_icon {
    width: 48px;
    height: 48px;
  }
  footer .sns_logo .sns_icon a {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
  footer .site_link_list {
    margin-bottom: 42px;
  }
  footer .site_link_list .site_link {
    margin: 16px auto 0;
  }
  footer .copyright {
    font-size: 11px;
  }
}

/* !GAME INFO
---------------------------------------------------------- */
#nav_info {
  padding: 54px 0 64px;
  overflow: hidden;
  position: relative;
}
#nav_info .inner {
  width: 1200px;
  height: 589px;
  margin: 0 auto;
  max-width: 100%;
  min-width: 800px;
  border-radius: 1200px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: ellipse(50% 50% at 50% 50%);
}
#nav_info .inner .info_box {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
#nav_info .inner .info_box img {
  width: 600px;
  max-width: calc(100% - 32px);
}
#nav_info .btn_yellow .arrow-container .arrow-default,
#nav_info .btn_yellow .arrow-container .arrow-hover {
  width: 18px;
}

#nav_info .inner_bottom {
  position: relative;
  width: 950px;
  max-width: calc(100% - 64px);
  margin: 150px auto 0;
}
#nav_info .inner_bottom img {
  width: 483.429px;
  transform: rotate(-4deg);
  position: absolute;
  top: -51%;
  left: -5%;
  z-index: 3;
}
#nav_info .inner_bottom p {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
  background-color: #fff;
  padding: 32px 24px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #nav_info {
    padding: 64px 0 42px;
  }
  #nav_info .inner {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    clip-path: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  #nav_info .inner .bg_img {
    width: 800px;
    max-width: 100%;
    position: absolute;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
  }
  #nav_info .inner .info_box {
    gap: 20px;
  }
  #nav_info .inner .info_box img {
    width: 100%;
    max-width: 90dvw;
  }
  #nav_info .btn_yellow {
    margin-top: 12px;
  }
  #nav_info .btn_yellow .img img {
    width: 12px;
    max-width: 100%;
  }
  #nav_info .inner_bottom {
    margin: 100px auto 0;
    max-width: calc(100% - 32px);
  }
  #nav_info .inner_bottom img {
    transform: rotate(-5deg);
    width: 284px;
    top: -50%;
    left: -2%;
  }
  #nav_info .inner_bottom p {
    font-size: 13px;
    padding: 16px;
  }
}

@media screen and (max-width: 567px) {
  #nav_info .inner_bottom img {
    top: -35%;
  }
}

@media screen and (max-width: 480px) {
  #nav_info {
    padding: 0 0 42px;
  }
  #nav_info .inner .bg_img {
    width: 557px;
  }
  #nav_info .inner_bottom {
    margin: 0 auto;
  }
}

/* !SPECIAL UNIFORM
---------------------------------------------------------- */
.stadium.pc {
  width: 1250px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
  display: block;
}
.stadium.sp {
  display: none;
}
#nav_uniform {
  padding: 32px 0 0;
}
#nav_uniform .uniform_box {
  background-image: url(../image/special_uniform/bg_pattern.jpg);
  background-position: center;
  background-repeat: repeat;
  background-size: 5%;
  position: relative;
  padding: 64px 48px;
  border-radius: 24px;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
}
#nav_uniform .uniform_box .top_text {
  color: #0068ba;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 900;
  line-height: 175%;
  margin-top: 48px;
}
.uniform_slider.swiper-container {
  overflow: auto;
  padding: 100px 0 90px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.uniform_slider .swiper-slide {
  width: 350px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.uniform_slider .swiper-slide.swiper-slide-active {
  transform: scale(1.3);
}
.uniform_slider .swiper-slide.swiper-slide-active .tag {
  display: flex;
  animation: pop 0.8s;
}
.uniform_slider li .tag {
  width: 108px;
  height: 108px;
  flex-shrink: 0;
  background-color: #e74291;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0%;
  left: 8%;
  display: none;
}
.uniform_slider li .tag p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 900;
  line-height: 120%;
}
.uniform_slider li img {
  max-width: 100%;
}
.uniform_slider .swiper-slide.swiper-slide-active .text_box {
  border: 3px solid #0068ba;
}
.uniform_slider li .text_box {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  border: 3px solid transparent;
  overflow: hidden;
}
.uniform_slider .swiper-slide.swiper-slide-active .text_box .head {
  background-color: #0068ba;
  color: #fff;
  margin-top: -1px;
}
.uniform_slider .swiper-slide .text_box .head {
  color: transparent;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
  background-color: transparent;
  width: 100%;
  padding: 4px 0;
}
.uniform_slider .swiper-slide.swiper-slide-active .text {
  color: #0068ba;
}
.uniform_slider li .text_box .text {
  color: transparent;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 900;
  line-height: 175%;
  padding: 16px;
}
#nav_uniform .btn_yellow {
  margin: 40px auto;
}

.illust.top01 {
  position: absolute;
  top: 2%;
  right: 2%;
  width: 250px;
  z-index: 0;
  transform-origin: center;
  animation: katakata 4s infinite ease-in-out alternate;
}
.illust.top02 {
  position: absolute;
  top: 16%;
  right: 14%;
  width: 140px;
  z-index: 0;
}
.illust.bottom01 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 424px;
  z-index: 0;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 768px) {
  .stadium.pc {
    display: none;
  }
  .stadium.sp {
    display: block;
    position: relative;
  }
  #nav_uniform {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  #nav_uniform .inner {
    max-width: 100%;
  }
  #nav_uniform .uniform_box {
    border-radius: 0px;
    padding: 48px 0;
    background-size: 10%;
  }
  #nav_uniform .uniform_box .top_text {
    margin-top: 24px;
    font-size: 14px;
    text-align: center;
  }
  .uniform_slider.swiper-container {
    padding: 120px 0 100px;
  }
  .uniform_slider .swiper-slide.swiper-slide-active {
    transform: scale(1.5);
  }
  .uniform_slider .swiper-slide.swiper-slide-active .text_box {
    border: 2px solid #0068ba;
    overflow: hidden;
  }
  .uniform_slider li .tag {
    width: 60px;
    height: 60px;
    top: 0%;
    left: 3%;
  }
  .uniform_slider li .tag p {
    font-size: 9px;
  }
  .uniform_slider .swiper-slide .text_box .head {
    font-size: 10px;
    padding-top: 0;
    padding-bottom: 3px;
    margin-top: -1px;
  }
  .uniform_slider li .text_box .text {
    padding: 12px 10px 16px;
    font-size: 10px;
  }

  #nav_uniform .btn_yellow {
    margin: 0 auto;
  }

  .illust.top01 {
    top: -5%;
    right: -5%;
    width: 144px;
  }
  .illust.top02 {
    width: 96px;
    top: 24%;
    right: 6%;
  }
  .illust.bottom01 {
    width: 264px;
    bottom: 20%;
    left: -8%;
  }
  .illust.bottom02 {
    position: absolute;
    bottom: 1%;
    right: 0;
    width: 124px;
  }
}

/* !RANKING
---------------------------------------------------------- */
#nav_ranking {
  padding: 80px 0 0;
}
#nav_ranking .title_head {
  border-radius: 24px 24px 0px 0px;
  background: #f4e829;
  width: 540px;
  max-width: 100%;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  padding-left: 50px;
  position: relative;
}
#nav_ranking .ranking_container {
  display: flex;
  padding: 72px 10px 80px 10px;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  align-self: stretch;
  border-radius: 0px 24px 24px 24px;
  background: #f4e829;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
#nav_ranking .ranking_container .top_text {
  color: #0068ba;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
}
#nav_ranking .ranking_container .top_text span.unline {
  border-bottom: 2px solid #0068ba;
}
#nav_ranking .ranking_container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 1200px;
  max-width: 100%;
  padding: 20px 32px;
}
.ranking_container li {
  position: relative;
  /* max-width: 100%; */
}
.ranking_container li .tag {
  position: absolute;
  width: 38%;
  height: auto;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: #0068ba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -18px;
  left: -30px;
}
.ranking_container li .tag p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.25vw;
  font-weight: 900;
  line-height: normal;
}
.ranking_container li .img {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}
.ranking_container li .info .name {
  display: flex;
  align-items: end;
  gap: 10px;
}
.ranking_container li .info .name .ja {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
}
.ranking_container li .info .name .en {
  color: #0068ba;
  font-family: "octin-college", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 175%;
}
.ranking_container li .info .var {
  height: 1px;
  display: block;
  width: 100%;
  border-top: 1px dashed #0068ba; /* solid 縺九ｉ dashed 縺ｫ螟画峩 */
  margin: 18px 0 12px;
  background-color: transparent; /* 閭梧勹濶ｲ繧帝乗�縺ｫ */
}
.ranking_container li .info .dec {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
}
.ranking_slider {
  width: 100%;
  max-width: 100%;
  padding: 24px 32px;
}
@media screen and (min-width: 1440px) {
  .ranking_container li .tag p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #nav_ranking {
    padding: 48px 0 0;
  }
  #nav_rankingq .ranking_container {
    border-radius: 0px 12px 12px 12px;
  }
  #nav_ranking .title_head {
    width: 220px;
    height: 44px;
    padding-left: 16px;
    position: relative;
    border-radius: 12px 12px 0px 0px;
  }
  .title_head .main_title {
    position: absolute;
    left: 16px;
    top: 10px;
  }
  #nav_ranking .ranking_container {
    padding: 60px 16px 40px;
    border-radius: 0px 12px 12px 12px;
  }
  #nav_ranking .ranking_container ul {
    display: flex;
    gap: 0px;
    padding: 0;
  }
  .ranking_slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 28px 0 0;
  }
  /* 蜷�せ繝ｩ繧､繝峨�蟷�ｒ蛻ｶ蠕｡ */
  .ranking_slider .swiper-slide {
    width: 311px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .ranking_container li .tag {
    width: 90px;
    height: 90px;
    top: -28px;
    left: 4px;
  }
  .ranking_container li .tag p {
    font-size: 13px;
  }
  .ranking_container li .img {
    width: 70%;
    margin: 0 auto;
  }

  .ranking-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
  }
  .ranking_pagination {
    width: fit-content !important;
  }
  .ranking_pagination .swiper-pagination-bullet {
    background-color: transparent;
    background-image: url(../image/icon/icon_star_bl.svg);
    width: 13px;
    height: 13px;
    margin: 0 2px !important;
  }
  .ranking_prev,
  .ranking_next {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #0068ba;
    width: 62px;
    height: 35px;
  }
  .ranking_prev img,
  .ranking_next img {
    width: 18px;
    height: auto;
  }
  .ranking_prev img {
    transform: rotate(180deg);
  }
}

/* !EVENTS
---------------------------------------------------------- */
#nav_event {
  padding: 80px 0 0;
}
#nav_event .title_head {
  border-radius: 24px 24px 0px 0px;
  background: #e74291;
  width: 540px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  padding-left: 50px;
  position: relative;
}
.events_container {
  padding: 64px 52px 80px;
  border-radius: 0px 24px 24px 24px;
  background: #e74291;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.events_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 1200px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

.events_list iframe {
  width: 100%;
  height: 208px;
}
@media screen and (max-width: 768px) {
  .events_list iframe {
    width: 104%;
    height: 181px;
  }
}
.events_list li {
  display: flex;
  gap: 40px;
  align-items: center;
}
.events_list li .img {
  /* width: 36.6%; */
  width: 100%;
  max-width: 370px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.events_list li .info {
  width: 60%;
}
.events_list li .info h4 {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  margin-bottom: 16px;
}
.events_list li .info .txt {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
  margin-bottom: 32px;
}
.events_list li .info a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.events_list li .info a .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
}
.events_list li .info a .arrow-container {
  position: relative;
  display: flex;
  width: 45.5px;
  height: 26px;
  gap: 5.2px;
  aspect-ratio: 45.5/26;
  border-radius: 18.981px;
  background: #fff;
}
.events_list a .arrow-container .arrow-default,
.events_list a .arrow-container .arrow-hover {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s, opacity 0.3s;
}
.events_list a .arrow-container .arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.events_list a .arrow-container .arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}
.events_list a:hover .arrow-container .arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}
.events_list a:hover .arrow-container .arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

@media screen and (max-width: 768px) {
  #nav_event {
    padding: 48px 0 0;
  }
  #nav_event .title_head {
    width: 220px;
    height: 44px;
    padding-left: 16px;
    position: relative;
    border-radius: 12px 12px 0px 0px;
  }
  .events_container {
    padding: 60px 16px 40px;
    border-radius: 0px 12px 12px 12px;
  }
  .events_list {
    max-width: 100%;
    gap: 36px;
  }
  .events_list li {
    flex-direction: column;
    gap: 24px;
  }
  .events_list li .img,
  .events_list li .info {
    width: 100%;
  }
  .events_list li .info h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .events_list li .info .txt {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .events_list li .info a .text {
    font-size: 18px;
  }
  .events_list li .info a .img {
    width: 36px;
    height: 20px;
    aspect-ratio: 36/20;
  }
  .events_list li .info a .img img {
    width: 14px;
    height: 14px;
  }
}

/* !ARENA MAP
---------------------------------------------------------- */
#nav_map {
  padding: 80px 0 0;
}
#nav_map .title_head {
  border-radius: 24px 24px 0px 0px;
  background: #fff;
  width: 540px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  padding-left: 50px;
  position: relative;
}
.map_container {
  display: flex;
  padding: 64px 52px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 0px 24px 24px 24px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
#nav_map .btn_yellow {
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  #nav_map {
    padding: 48px 0 0;
  }
  #nav_map .title_head {
    width: 220px;
    height: 44px;
    padding-left: 16px;
    position: relative;
    border-radius: 12px 12px 0px 0px;
  }
  .map_container {
    padding: 60px 16px 40px;
    border-radius: 0px 12px 12px 12px;
    gap: 24px;
  }
}

/* !GOODS &amp; FOODS
---------------------------------------------------------- */
#nav_goods,
#nav_foods {
  padding: 80px 0 0;
}
#nav_goods .title_head,
#nav_foods .title_head {
  border-radius: 24px 24px 0px 0px;
  background: #f4e829;
  width: 540px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  padding-left: 50px;
  position: relative;
}
#nav_foods .title_head {
  background: #e5427e;
}
.goods_container,
.foods_container {
  padding: 80px 0px;
  border-radius: 0px 24px 24px 24px;
  background: #f4e829;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.foods_container {
  background: #e5427e;
}
.goods_container .top_text,
.foods_container .top_text {
  color: #0068ba;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
}
.foods_container .top_text {
  color: #fff;
}
.goods_slider,
.foods_slider {
  padding: 32px 0; /* 繧ｹ繝ｩ繧､繝繝ｼ縺ｮ荳贋ｸ九↓菴咏區繧定ｿｽ蜉� */
  position: relative;
  overflow: hidden; /* 繧ｹ繝ｩ繧､繝繝ｼ蜈ｨ菴薙�繧ｪ繝ｼ繝舌�繝輔Ο繝ｼ繧貞宛蠕｡ */
}
.goods_slider .slick-track,
.foods_slider .slick-track {
  display: flex;
  align-items: center;
}
.goods_slider .slick-list,
.foods_slider .slick-list {
  height: 100%;
}
.goods_slider .slick-slide,
.foods_slider .slick-slide {
  width: 260px;
  margin: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}
.goods_slider .slick-slide .item,
.foods_slider .slick-slide .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.goods_slider .slick-slide .item .img,
.foods_slider .slick-slide .item .img {
  border-radius: 16px;
  overflow: hidden;
}
.goods_slider .slick-slide .info,
.foods_slider .slick-slide .info {
  /* width: 228px; */
  width: 100%;
  max-width: calc(100% - 8px);
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 6px;
}
.goods_slider .slick-slide .info .name,
.foods_slider .slick-slide .info .name {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
}
.goods_slider .slick-slide .info .price,
.foods_slider .slick-slide .info .price {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
}
.foods_slider .slick-slide .info .price,
.foods_slider .slick-slide .info .name {
  color: #fff;
}
.goods_slider .slick-slide .info .price span,
.foods_slider .slick-slide .info .price span {
  font-size: 12px;
}
.goods-slick-prev,
.goods-slick-next,
.foods-slick-prev,
.foods-slick-next {
  background: #0068ba;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36.5px;
  width: 84px;
  height: 48px;
  cursor: pointer;
}
.foods-slick-prev,
.foods-slick-next {
  background: #fff;
}

.goods-slick-prev .arrow-container,
.goods-slick-next .arrow-container,
.foods-slick-prev .arrow-container,
.foods-slick-next .arrow-container {
  position: relative;
  display: block;
  width: 100%;
}

.goods-slick-prev .arrow-container .arrow-default,
.goods-slick-prev .arrow-container .arrow-hover,
.goods-slick-next .arrow-container .arrow-default,
.goods-slick-next .arrow-container .arrow-hover,
.foods-slick-prev .arrow-container .arrow-default,
.foods-slick-prev .arrow-container .arrow-hover,
.foods-slick-next .arrow-container .arrow-default,
.foods-slick-next .arrow-container .arrow-hover {
  width: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s, opacity 0.3s;
}
.goods-slick-prev .arrow-container .arrow-default,
.goods-slick-next .arrow-container .arrow-default,
.foods-slick-prev .arrow-container .arrow-default,
.foods-slick-next .arrow-container .arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.goods-slick-prev .arrow-container .arrow-hover,
.foods-slick-prev .arrow-container .arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}
.goods-slick-prev:hover .arrow-container .arrow-default,
.foods-slick-prev:hover .arrow-container .arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}

.goods-slick-next .arrow-container .arrow-hover,
.foods-slick-next .arrow-container .arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}
.goods-slick-next:hover .arrow-container .arrow-default,
.foods-slick-next:hover .arrow-container .arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}

.goods-slick-prev:hover .arrow-container .arrow-hover,
.foods-slick-prev:hover .arrow-container .arrow-hover,
.goods-slick-next:hover .arrow-container .arrow-hover,
.foods-slick-next:hover .arrow-container .arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

.slick-dots li {
  width: 16px;
}
.goods-custom-pagination .slick-dots {
  display: flex;
  gap: 4px;
}
.goods-custom-pagination .slick-dots li.slick-active,
.foods-custom-pagination .slick-dots li.slick-active {
  opacity: 1;
}
.goods-custom-pagination .slick-dots li:not(.slick-active),
.foods-custom-pagination .slick-dots li:not(.slick-active) {
  opacity: 0.4;
}
.goods-custom-pagination .slick-dots li button,
.foods-custom-pagination .slick-dots li button {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
}

.goods-custom-pagination .slick-dots li,
.foods-custom-pagination .slick-dots li {
  width: 16px;
  height: 16px;
  position: relative;
  background-image: url("../image/icon/icon_star_bl.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  list-style: none;
}

.foods-custom-pagination .slick-dots li {
  background-image: url("../image/icon/icon_star_wh.svg");
}

.goods-navigation-container,
.foods-navigation-container {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: center;
}
.goods-custom-pagination .slick-dots,
.foods-custom-pagination .slick-dots {
  display: flex;
  gap: 4px;
}
#nav_goods .btn_blue,
#nav_foods .btn_white {
  margin: 48px auto 0;
}

@media screen and (max-width: 768px) {
  #nav_goods,
  #nav_foods {
    padding: 48px 0 0;
  }
  #nav_goods .title_head,
  #nav_foods .title_head {
    width: 220px;
    height: 44px;
    padding-left: 16px;
    position: relative;
    border-radius: 12px 12px 0px 0px;
  }
  .goods_container,
  .foods_container {
    padding: 60px 0 40px;
    border-radius: 0px 12px 12px 12px;
  }
  .goods_container .top_text,
  .foods_container .top_text {
    font-size: 14px;
  }
  .goods_slider,
  .foods_slider {
    padding: 20px 0 0;
  }
  .goods_slider .slick-slide,
  .foods_slider .slick-slide {
    margin: 10px;
  }
  .goods_slider .slick-slide .item,
  .foods_slider .slick-slide .item {
    gap: 16px;
  }
  .goods_slider .slick-slide .info .name,
  .foods_slider .slick-slide .info .name,
  .goods_slider .slick-slide .info .price,
  .foods_slider .slick-slide .info .price {
    font-size: 14px;
  }
  .goods_slider .slick-slide .info .price span,
  .foods_slider .slick-slide .info .price span {
    font-size: 10px;
  }
  .goods-navigation-container,
  .foods-navigation-container {
    width: 311px;
    margin: 16px auto 0;
    justify-content: space-between;
    gap: 0;
  }
  .goods-slick-prev,
  .goods-slick-next,
  .foods-slick-prev,
  .foods-slick-next {
    flex-shrink: 0;
    width: 62px;
    height: 35px;
  }
  .goods-slick-prev .arrow-container .arrow-default,
  .goods-slick-prev .arrow-container .arrow-hover,
  .goods-slick-next .arrow-container .arrow-default,
  .goods-slick-next .arrow-container .arrow-hover,
  .foods-slick-prev .arrow-container .arrow-default,
  .foods-slick-prev .arrow-container .arrow-hover,
  .foods-slick-next .arrow-container .arrow-default,
  .foods-slick-next .arrow-container .arrow-hover {
    width: 17px;
  }
}

/* !NEWS
---------------------------------------------------------- */
#nav_news {
  padding: 80px 0 0;
}
#nav_news .title_head {
  border-radius: 24px 24px 0px 0px;
  background: #fff;
  width: 540px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  padding-left: 50px;
  position: relative;
}
.news_container {
  padding: 64px 52px 72px;
  border-radius: 0px 24px 24px 24px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news_list li {
  border-radius: 16px;
  border: 3px solid #0068ba;
  background: #fff;
  height: 100%;
}
.news_list li a {
  display: block;
  padding: 20px;
  position: relative;
}
.news_list li:hover {
  animation: moveDown 0.5s ease forwards;
}
.news_list li a .date {
  color: #0068ba;
  font-family: "octin-college", sans-serif;
  font-size: 18px;

  font-weight: 900;
  line-height: 150%;
}
.news_list li a .text {
  color: #0068ba;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  margin-bottom: 64px;
}
.news_list a .arrow {
  width: 48px;
  height: 26px;
  aspect-ratio: 48/26;
  border-radius: 21.961px;
  background: #0068ba;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.news_list a .arrow-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.news_list a .arrow-container .arrow-default,
.news_list a .arrow-container .arrow-hover {
  width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s, opacity 0.3s;
}
.news_list a .arrow-container .arrow-default {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.news_list a .arrow-container .arrow-hover {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(-80%);
}
.news_list a:hover .arrow-container .arrow-default {
  opacity: 0;
  transform: translate(-50%, -50%) translateX(80%);
}
.news_list a:hover .arrow-container .arrow-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

#nav_news .btn_yellow {
  margin: 48px auto 0;
}

@media screen and (max-width: 768px) {
  #nav_news {
    padding: 48px 0 0;
  }
  #nav_news .title_head {
    width: 220px;
    height: 44px;
    padding-left: 16px;
    position: relative;
    border-radius: 12px 12px 0px 0px;
  }
  .news_container {
    padding: 60px 16px 40px;
    border-radius: 0px 12px 12px 12px;
  }
  .news_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .news_list li {
    border: 2px solid #0068ba;
  }
  .news_list li a {
    padding: 16px;
  }
  .news_list li a .text {
    margin-bottom: 48px;
  }
}

/* !SUPPORTED BY
---------------------------------------------------------- */
#nav_support {
  padding: 64px 0;
  position: relative;
  z-index: 10;
}
.shadow-wrapper {
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
}
#nav_support .inner {
  width: 720px;
  height: 289px;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 1200px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  clip-path: ellipse(50% 50% at 50% 50%);
}
#nav_support .inner .text {
  color: #0068ba;
  text-align: center;
  font-family: "octin-college", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
}
#nav_support .inner img {
  width: 380px;
  max-width: calc(100% - 64px);
  margin: 0 auto 24px;
}

@media screen and (max-width: 768px) {
  #nav_support {
    padding: 48px 0;
  }
  #nav_support .inner {
    width: 342px;
    height: 135px;
    gap: 12px;
  }
  #nav_support .inner .text {
    font-size: 20px;
  }
  #nav_support .inner img {
    width: 238px;
    margin: 0 auto 12px;
  }
}

/* !bottom slider
---------------------------------------------------------- */
.bottom_slider {
  position: absolute !important;
  bottom: -0.3%;
}
.bottom_slider ul li {
  display: flex !important;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
}
.bottom_slider ul li p {
  color: #fff;
  font-family: "octin-college", sans-serif;
  font-size: 300px;
  font-weight: 900;
  line-height: 100%;
  white-space: nowrap;
  width: fit-content;
}
.bottom_slider ul li img {
  width: 240px;
  display: block;
  margin-top: -0.6%;
}

/* 繧ｹ繝ｩ繧､繝繝ｼ蜈ｨ菴薙�險ｭ螳� */
.bottom_slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* 繧ｹ繝ｩ繧､繝芽ｦ∫ｴ�縺ｮ繧ｹ繧ｿ繧､繝ｫ */
.bottom_slider li {
  float: left;
  margin-right: 100px; /* 繧ｹ繝ｩ繧､繝蛾俣縺ｮ菴咏區繧貞､ｧ縺阪￥蜿悶ｋ */
  width: auto !important; /* 閾ｪ蜍募ｹ� */
}

/* 繝�く繧ｹ繝医→逕ｻ蜒上�繧ｹ繧ｿ繧､繝ｫ */
.bottom_slider li p {
  white-space: nowrap; /* 繝�く繧ｹ繝医ｒ荳陦後↓ */
  margin-bottom: 10px;
  text-align: center;
}

.bottom_slider li img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Slick縺ｮ繧ｹ繧ｿ繧､繝ｫ隱ｿ謨ｴ */
.bottom_slider .slick-list {
  overflow: visible;
}

.bottom_slider .slick-track {
  display: flex;
  gap: 100px; /* 繝医Λ繝�け蜀��隕∫ｴ�髢馴囈 */
}

/* 繧ｯ繝ｭ繝ｼ繝ｳ隕∫ｴ�縺ｮ陦ｨ遉ｺ隱ｿ謨ｴ */
.bottom_slider .slick-slide {
  opacity: 1 !important;
  visibility: visible !important;
  width: auto !important;
}

/* 隕∫ｴ�縺碁㍾縺ｪ繧峨↑縺�ｈ縺�↓縺吶ｋ */
.bottom_slider .slick-slide:not(:first-child) {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .bottom_slider ul li {
    gap: 0px;
  }
  .bottom_slider ul li p {
    font-size: 154px;
  }
  .bottom_slider ul li img {
    width: 136px;
    height: auto;
  }
  .bottom_slider .slick-slide:not(:first-child) {
    margin-left: -36px;
  }
}

/* !coming soon
---------------------------------------------------------- */
.comingsoon {
  margin: 120px auto;
  width: 620px;
  max-width: calc(100% - 64px);
}

@media screen and (max-width: 768px) {
  .comingsoon {
    margin: 40px auto 52px;
    width: 100%;
  }
}

.sm {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .sm {
    font-size: 16px;
  }
}

</pre></body></html>