/* ---------------------------------- */
/* カスタムスタイル (共通) */
/* ---------------------------------- */
.slider-area {
    text-align: center;
    margin: 60px 0 40px; 
}

.slider-area h2{
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Swiperコンテナのサイズ調整 */
.swiper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px; /* ボタンのためのスペース */
}

/* 画像の仮置き要素 */
.image-placeholder {
    position: relative; 
    width: 100%; 
    height: 0; 
    padding-top: 56.25%; /* 16:9 のアスペクト比 */
    overflow: hidden;
}

.image-placeholder img{
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.content-text {
    color: black;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

/* スライダーアイテムのリンク */
.swiper-slide a {
    text-decoration: none;
    color: inherit;
}

/* ---------------------------------- */
/* カスタムナビゲーションボタンのスタイル (PC用) */
/* ---------------------------------- */
.swiper-button-prev, .swiper-button-next {
    color: white; 
    background-color: #000; 
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    top: 35%; 
    transform: translateY(-50%);
    margin-top: 0;
    opacity: 1;
    z-index: 10;
}

.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }


body.top .side-menu-container {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 500;
  Margin-top:100px;
}
@media screen and (max-width: 768px) {
  body.top .side-menu-container {
    display: none !important;
  }
}
body.top .side-menu-container .menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.top .side-menu-container .menu-list .menu-item {
  display: flex;
  border-radius: 16px 0 0 16px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: sans-serif;
  font-weight: bold;
  color: #ffffff;
}
body.top .side-menu-container .menu-list .menu-item--knowledge {
  background-color: #bb0000;
}
body.top .side-menu-container .menu-list .menu-item--fun {
  background-color: #0035bb;
}
body.top .side-menu-container .menu-list .menu-item--partner {
  background-color: #1d9b08;
}
body.top .side-menu-container .menu-list .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 240px;
}
@media screen and (min-width: 769px) {
  body.top .side-menu-container.lower-browser-height {
    top: 30px;
  }
  body.top .side-menu-container.lower-browser-height .menu-list .menu-item a {
    font-size: 12px;
    height: 175px;
  }
  body.top .side-menu-container.lower-browser-height .menu-list .menu-item--partner a {
    font-size: 12px;
    height: 130px;
  }
}
body.top .top-header {
  position: relative;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  background-color: transparent;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  body.top .top-header {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 768px) {
  body.top .top-header .header-logo img {
    width: 160px;
  }
}
body.top .top-header .header-menu-button {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 120px;
  transition: opacity 0.3s, background-color 0.3s ease;
  background-image: url("../../assets/imgs/top/icon_header_menu_open.png");
  background-size: 25.5px 17px;
  background-position: 50% 40%;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  body.top .top-header .header-menu-button {
    width: 48px;
    height: 48px;
    right: 10px;
    background-position: 50% 50%;
  }
}
body.top .top-header .header-menu-button.opened {
  background-image: url("../../assets/imgs/top/icon_header_menu_close.png");
  background-size: 27px 17.5px;
}
body.top .top-header .header-menu-button:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  body.top .top-header .header-menu-button::before {
    position: absolute;
    content: "MENU";
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    font-family: var(--ff-latin-02);
    font-size: 14px;
    color: var(--main-color);
  }
}
body.top .top-header .header-menu-button2 {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 220px;
  transition: opacity 0.3s, background-color 0.3s ease;
  background-image: url("../../assets/imgs/top/icon_header_ec.png");
  background-size: 35.5px auto;
  background-position: 50% 40%;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  body.top .top-header .header-menu-button2 {
    width: 48px;
    height: 48px;
    right: 70px;
    background-position: 50% 50%;
  }
}
body.top .top-header .header-menu-button2:hover {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  body.top .top-header .header-menu-button2::before {
    position: absolute;
    content: "SHOP";
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    font-family: var(--ff-latin-02);
    font-size: 14px;
    color: var(--main-color);
  }
}
body.top .top-header .header-menu {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100vh;
  background-color: var(--main-color);
  color: #ffffff;
  transition: right 0.3s ease-in-out;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  body.top .top-header .header-menu {
    width: 570px;
    padding:110px 120px 60px 80px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  body.top .top-header .header-menu {
    width: 100%;
    padding: 100px 32px 60px 32px;
  }
}
body.top .top-header .header-menu .header-menu-contents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.top .top-header .header-menu .header-menu-contents .link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.top .top-header .header-menu .header-menu-contents .link-list .link-item {
  display: flex;
  flex: 1;
}
body.top .top-header .header-menu .header-menu-contents .link-list .link-item a {
  width: 100%;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  body.top .top-header .header-menu .header-menu-contents .link-list .link-item a {
    padding: 4px 0;
  }
}
body.top .top-header .header-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}
body.top .top-header .header-logo {
  font-weight: bold;  
  font-size:30px;
  font-family: var(--ff-latin-02);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  color:#fff;
}
body.top .top-kv-section {
margin-top: -120px;
  padding: 0 0 96px 0;
  background-image: url("../../assets/imgs/top/bg_kv.png");
  background-size: cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section {
    padding: 90px 0px;
　　　margin-top: 0px;
  }
}
body.top .top-kv-section .relative-cont {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 1400px;
  height: 640px;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont {
    width: 100%;
    height: 60vw;
  }
}
body.top .top-kv-section .relative-cont2 {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont2 {
    width: 100%;
    height: 130vw;
	margin-top: -3vw;  
  }
}
body.top .top-kv-section .relative-cont .dig-copy {
  position: absolute;
  top: 420px;
  left: 0;
  font-family: var(--ff-latin-02);
  font-size: 210px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: #bb0000;
  white-space: nowrap;
  transform-origin: left center;
  transform: rotate(-14deg);
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont .dig-copy {
    top: 70%;
    left: -20px;
    font-size: 15vw;
  }
}
body.top .top-kv-section .relative-cont .player {
  position: absolute;
}
body.top .top-kv-section .relative-cont .player--01 {
  top: 318px;
  left: 110px;
  width: 237px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont .player--01 {
    display: none;
  }
}
body.top .top-kv-section .relative-cont .player--02 {
  top: 200px;
  left: 310px;
  width: 290px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont .player--02 {
    top: auto;
    left: auto;
    bottom: -40%;
    right: -15%;
    width: 60%;
  }
}
body.top .top-kv-section .relative-cont .player--03 {
  top: 248px;
  left: 598px;
  width: 251px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont .player--03 {
    display: none;
  }
}
body.top .top-kv-section .relative-cont .player--04 {
  top: 233px;
  left: 707px;
  width: 301px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont .player--04 {
    display: none;
  }
}
body.top .top-kv-section .relative-cont .player--05 {
  top: 250px;
  left: 1051px;
  width: 239px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .relative-cont .player--05 {
    top: auto;
    left: auto;
    bottom: -60%;
    left: -10%;
    width: 50%;
  }
}
body.top .top-kv-section .principle {
  font-size: 150px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  white-space: nowrap;
  text-shadow: 0.5px 0.866px 19.32px rgba(255, 255, 127, 0.3);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .principle {
    font-size: 20vw;
  }
}
body.top .top-kv-section .principle span {
  color: #bb0000;
}
body.top .top-kv-section .concept-message-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 80px;
}
body.top .top-kv-section .concept-message-cont .title {
  font-size: 24px;
  line-height: 1;
}
body.top .top-kv-section .concept-message-cont .copy {
  font-size: 60px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .concept-message-cont .copy {
    font-size: 40px;
    line-height: 1.2;
  }
  body.top .top-kv-section .concept-message-cont {
    padding-top: 0px;
	padding: 0 20px;  
  }	
}
body.top .top-kv-section .concept-message-cont .message {
  font-size: 20px;
  font-weight: 900;
  line-height: 2.5;
}
@media screen and (min-width: 769px) {
  body.top .top-kv-section .concept-message-cont .message {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  body.top .top-kv-section .concept-message-cont .message {
    line-height: 1.75;
  }
}
body.top .step-scroll-cont {
  display: flex;
  flex-direction: column;
}
body.top .step-scroll-cont .step-scroll-inner {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
body.top .sports-detail-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.7s ease;
}
body.top .sports-detail-section:not(.active) {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease 0.2s;
}
body.top .sports-detail-section.active {
  z-index: 2;
  opacity: 1;
}
body.top .sports-detail-section .team-contents-cont {
  gap: 24px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-contents-cont {
    gap: 3.5vh;
    align-items: center;
  }
}
body.top .sports-detail-section .team-detail-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 60px 0;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont {
    height: 100vh;
    padding: 4vh 20px 0;
    background-position: 75% center;
  }
}
body.top .sports-detail-section .team-detail-cont--sunbirds {
  background-image: url("../../assets/imgs/top/bg_team_sunbirds.png");
}
body.top .sports-detail-section .team-detail-cont--sunbirds .jp-title {
  color: #bb0000;
}
body.top .sports-detail-section .team-detail-cont--sungoliath {
  background-image: url("../../assets/imgs/top/bg_team_sungoliath.png");
}
body.top .sports-detail-section .team-detail-cont--sungoliath .jp-title {
  color: #ffbb00;
}
body.top .sports-detail-section .team-detail-cont--ladies-open {
  background-image: url("../../assets/imgs/top/bg_team_ladies_open.png");
}
body.top .sports-detail-section .team-detail-cont--ladies-open .jp-title {
  color: #00aed0;
}
body.top .sports-detail-section .team-detail-cont--passion-for-challenge {
  background-image: url("../../assets/imgs/top/bg_team_passion.png");
}
body.top .sports-detail-section .team-detail-cont--dm {
  background-image: url("../../assets/imgs/top/bg_team_dm.png");
}
@media screen and (min-width: 769px) {
  body.top .sports-detail-section .team-detail-cont--passion-for-challenge {
    padding-top: 20px;
  }
}
body.top .sports-detail-section .team-detail-cont--passion-for-challenge .jp-title {
  color: #888888;
}
body.top .sports-detail-section .team-detail-cont--passion-for-challenge .title-cont {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  body.top .sports-detail-section .team-detail-cont--dm {
    padding-top: 20px;
  }
}
body.top .sports-detail-section .team-detail-cont--dm .jp-title {
  color: #21005d;
}
body.top .sports-detail-section .team-detail-cont--dm .title-cont {
  margin-bottom: 0 !important;
}
body.top .sports-detail-section .team-detail-cont .title-cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont .title-cont {
    align-items: center;
    margin-bottom: 0;
  }
}
body.top .sports-detail-section .team-detail-cont .en-title {
  font-family: var(--ff-latin-02);
  font-size: 120px;
  font-weight: 500;
  font-style: italic;
  line-height: 0.8;
  text-align: right;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont .en-title {
    font-size: 42px;
    text-align: center;
  }
}
body.top .sports-detail-section .team-detail-cont .jp-title {
  padding: 0 16px;
  font-size: 44px;
  font-weight: bold;
  font-style: italic;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont .jp-title {
    padding: 0 10px;
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
  }
}
body.top .sports-detail-section .team-detail-cont .text-cont {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 540px;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont .text-cont {
    width: 100%;
  }
}
body.top .sports-detail-section .team-detail-cont .text-cont .overview {
  font-size: 36px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont .text-cont .overview {
    font-size: 5.5vw;
  }
}
body.top .sports-detail-section .team-detail-cont .text-cont .info-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .team-detail-cont .text-cont .info-text {
    font-size: 3.8vw;
  }
}
body.top .sports-detail-section .blog-cont {
  display: flex;
  flex-direction: column;
  height: 25vh;
  justify-content: center;
  background-repeat: repeat;
  background-size: 25px 25px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .blog-cont {
    display: none;
  }
}
body.top .sports-detail-section .blog-cont--sunbirds {
  background-image: url("../../assets/imgs/top/bg_sunbirds_tile.png");
}
body.top .sports-detail-section .blog-cont--sungoliath {
  background-image: url("../../assets/imgs/top/bg_sungoliath_tile.png");
}
body.top .sports-detail-section .blog-cont--ladies-open {
  background-image: url("../../assets/imgs/top/bg_ladies_open_tile.png");
}
body.top .sports-detail-section .blog-cont--passion-for-challenge {
  background-image: url("../../assets/imgs/top/bg_passion_tile.png");
}
body.top .sports-detail-section .blog-cont .blog-info {
  font-family: var(--ff-latin-02);
  font-size: 30px;
  color: #ffffff;
}
body.top .sports-detail-section .blog-cont .blog-cards-cont {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .blog-cont .blog-cards-cont {
    flex-direction: column;
  }
}
body.top .sports-detail-section .blog-cont .blog-card {
  display: flex;
  background-color: #ffffff;
  width: 520px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .blog-cont .blog-card {
    width: 100%;
    flex-direction: column;
  }
}
body.top .sports-detail-section .blog-cont .blog-card .blog-img-cont {
  width: 180px;
  background-size: cover;
  background-position: center center;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
body.top .sports-detail-section .blog-cont .blog-card .blog-contents {
  display: flex;
  flex-direction: column;
  width: 340px;
  gap: 16px;
  padding: 20px;
}
body.top .sports-detail-section .blog-cont .blog-card .blog-contents .blog-date {
  font-size: 14px;
}
body.top .sports-detail-section .blog-cont .blog-card .blog-contents .blog-category-wrap {
  display: flex;
  align-items: center;
  width: 100px;
}
body.top .sports-detail-section .blog-cont .blog-card .blog-contents .blog-category-wrap .blog-category {
  padding: 0 10px;
  font-size: 14px;
  border-radius: 12px;
}
body.top .sports-detail-section .blog-cont .blog-card .blog-contents .blog-category-wrap .blog-category--info {
  background-color: #000000;
  color: #ffffff;
}
body.top .sports-detail-section .blog-cont .blog-card .blog-subject {
  font-size: 20px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.top .sports-detail-section .buttons-cont {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .buttons-cont {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body.top .sports-detail-section .buttons-cont .btn-grad {
    width: 100%;
    height: 10vw;
    font-size: 4vw;
    border-radius: 6vw;
  }
  body.top .sports-detail-section .buttons-cont .btn-grad::after {
    width: 6vw;
    height: 6vw;
  }
}
@media screen and (min-width: 769px) {
  body.top .sports-detail-section.lower-browser-height .team-contents-cont {
    gap: 20px;
  }
  body.top .sports-detail-section.lower-browser-height .team-detail-cont {
    height: 100vh;
  }
  body.top .sports-detail-section.lower-browser-height .team-detail-cont .en-title {
    font-size: 100px;
    line-height: 0.8;
  }
  body.top .sports-detail-section.lower-browser-height .team-detail-cont .jp-title {
    font-size: 26px;
  }
  body.top .sports-detail-section.lower-browser-height .team-detail-cont--passion-for-challenge .en-title {
    font-size: 85px;
  }
  body.top .sports-detail-section.lower-browser-height .team-detail-cont .text-cont .overview {
    font-size: 29px;
    line-height: 1.2;
  }
  body.top .sports-detail-section.lower-browser-height .team-detail-cont .text-cont .overview br.pc-only {
    display: none;
  }
  body.top .sports-detail-section.lower-browser-height .blog-cont {
    height: 22vh;
  }
  body.top .sports-detail-section.lower-browser-height .blog-cont .blog-info {
    font-size: 24px;
  }
  body.top .sports-detail-section.lower-browser-height .blog-cont .blog-card .blog-contents {
    gap: 12px;
    padding: 16px 20px;
  }
  body.top .sports-detail-section.lower-browser-height .blog-cont .blog-card .blog-contents .blog-date {
    font-size: 14px;
  }
  body.top .sports-detail-section.lower-browser-height .blog-cont .blog-card .blog-subject {
    font-size: 16px;
  }
  body.top .sports-detail-section.lower-browser-height .btn-grad {
    font-size: 18px;
    height: 48px;
  }
  body.top .sports-detail-section.lower-browser-height .btn-grad::after {
    width: 38px;
    height: 38px;
  }
}
body.top .project-section {
  gap: 40px;
  align-items: center;
  padding: 114px 0;
  color: #ffffff;
  background-image: url("../../assets/imgs/top/bg_project_section.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  body.top .project-section {
    padding: 80px 20px;
    background-position: 50% 50%;
  }
}
body.top .project-section .project-name {
  font-size: 90px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(to right, #3b678f 0%, #8b1b1b 30%, #e71a1a 50%, #f27c1c 75%, #f3db3c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  body.top .project-section .project-name {
    font-size: 48px;
    line-height: 1.25;
    text-align: center;
  }
}
body.top .project-section .score-2rows {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  body.top .project-section .score-2rows {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  body.top .project-section .score-2rows .score-cont {
    width: 440px;
  }
}
body.top .project-section .score-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
body.top .project-section .score-cont .score-name {
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  body.top .project-section .score-cont .score-name {
    font-size: 21px;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 8px;
  }
}
body.top .project-section .score-cont .score {
  font-size: 140px;
  font-weight: bold;
  letter-spacing: -6px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body.top .project-section .score-cont .score {
    font-size: 80px;
    letter-spacing: -2px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
}
body.top .section-title {
  display: flex;
  gap: 16px;
  line-height: 1;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body.top .section-title {
    flex-direction: column;
  }
}
body.top .section-title .eg {
  font-family: var(--ff-latin-02);
  font-size: 30px;
}
body.top .section-title .wipe {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  body.top .section-title .wipe {
    display: none;
  }
}
body.top .section-title .jp {
  font-size: 20px;
}
body.top .top-news-section {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.top .top-news-section {
    padding: 80px 20px;
  }
}
body.top .top-news-section .bg-title {
  position: absolute;
  top: 84px;
  left: -20px;
  font-size: 200px;
  font-style: italic;
  font-weight: bold;
  line-height: 1;
  color: #f0f0f0;
  writing-mode: vertical-rl;
  z-index: 0;
  white-space: nowrap;
}
body.top .top-news-section .section-title {
  background: linear-gradient(to right, #3b678f 0%, #8b1b1b 30%, #e71a1a 50%, #f27c1c 75%, #f3db3c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.top .top-news-section .news-list .news {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f4f4f4;
}
@media screen and (max-width: 768px) {
  body.top .top-news-section .news-list .news {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.top .top-news-section .news-list .news .news-date {
  font-size: 14px;
  width: 84px;
}
body.top .top-news-section .news-list .news .news-category-wrap {
  display: flex;
  align-items: center;
  width: 100px;
}
body.top .top-news-section .news-list .news .news-category-wrap .news-category {
  padding: 0 10px;
  font-size: 14px;
  border-radius: 12px;
}
body.top .top-news-section .news-list .news .news-category-wrap .news-category--info {
  background-color: #000000;
  color: #ffffff;
}
body.top .top-news-section .news-list .news .news-subject {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-size: 16px;
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.top .top-news-section .news-list .news .news-subject {
    font-size: 16px;
    align-items: center;
  }
}
body.top .top-news-section .news-list .news .news-subject::after {
  content: "";
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-color: #bdbdbd;
  background-image: url("../../assets/imgs/common/icon_arrow_wh_01.png");
  background-size: 12px 12px;
  background-position: 50% 50%;
  border-radius: 50%;
}
body.top .sponsorship-section {
  height: auto;
  padding: 100px 0 40px 0;
  background-image: url("../../assets/imgs/top/bg_sponsorship_section.png");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section {
    height: auto;
    padding: 80px 0;
  }
}
body.top .sponsorship-section .heading-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 40px;
  margin-bottom: 70px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .heading-cont {
    margin-bottom: 40px;
  }
}
body.top .sponsorship-section .heading-cont .sponsorship-copy {
  font-size: 72px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  margin-left: -8px;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .heading-cont .sponsorship-copy {
    font-size: 36px;
    margin-left: 0;
    line-height: 1.25;
  }
}
body.top .sponsorship-section .sponsors-slide {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsors-slide {
    margin-bottom: 60px;
  }
}
body.top .sponsorship-section .sponsors-slide li {
  text-align: center;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsors-slide li {
    padding: 0 15px;
  }
}
body.top .sponsorship-section .sponsors-slide img {
  width: 270px;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsors-slide img {
    width: 100%;
  }
}
body.top .sponsorship-section .sponsorship-recruitment {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: space-between;
  width: 1080px;
  height: 270px;
  padding: 50px 30px;
  color: #ffffff;
  background-image: url("../../assets/imgs/top/bg_sponsorship_recruitment.png");
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsorship-recruitment {
    gap: 24px;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background-size: cover;
    background-position: -300px 0;
    border-radius: 16px;
  }
}
body.top .sponsorship-section .sponsorship-recruitment .bg-message {
  position: absolute;
  top: -8px;
  left: 30px;
  width: 100%;
  font-family: var(--ff-latin-02);
  font-size: 180px;
  font-weight: bold;
  font-style: italic;
  line-height: 0.8;
  letter-spacing: 4px;
  opacity: 0.3;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsorship-recruitment .bg-message {
    top: 0;
    left: 0;
    font-size: 50px;
  }
}
body.top .sponsorship-section .sponsorship-recruitment .first-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsorship-recruitment .first-row {
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
  }
}
body.top .sponsorship-section .sponsorship-recruitment .first-row .heading {
  font-size: 72px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsorship-recruitment .first-row .heading {
    font-size: 36px;
  }
}
body.top .sponsorship-section .sponsorship-recruitment .second-row {
  display: flex;
  flex-direction: column;
}
body.top .sponsorship-section .sponsorship-recruitment .second-row .message {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  body.top .sponsorship-section .sponsorship-recruitment .second-row .message {
    font-size: 15px;
  }
}