:root {
  --color-primary: #ED2A2A;
  --color-accent: #B7993D;
  --color-text: #111;
  --color-white: #FFF;
  --color-bg-subtle: #F1F9FF;
  --color-bg-muted: #DEEDFF;
  --color-secondary: #53749C;
  --color-black: #000;
  --color-text-muted: #9F9F9F;
}

.visible-sp {
  display: none;
}
@media (max-width: 767px) {
  .visible-sp {
    display: block !important;
  }
}

.visible-sp-ib {
  display: none;
}
@media (max-width: 767px) {
  .visible-sp-ib {
    display: inline-block !important;
  }
}

.visible-sp-flex {
  display: none;
}
@media (max-width: 767px) {
  .visible-sp-flex {
    display: flex !important;
  }
}

.visible-tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1135px) {
  .visible-tab {
    display: block !important;
  }
}

.visible-tab-ib {
  display: none;
}
@media (min-width: 768px) and (max-width: 1135px) {
  .visible-tab-ib {
    display: inline-block !important;
  }
}

.visible-tab-flex {
  display: none;
}
@media (min-width: 768px) and (max-width: 1135px) {
  .visible-tab-flex {
    display: flex !important;
  }
}

.visible-pc {
  display: none;
}
@media (min-width: 1136px) and (max-width: 1919px) {
  .visible-pc {
    display: block !important;
  }
}

.visible-pc-ib {
  display: none;
}
@media (min-width: 1136px) and (max-width: 1919px) {
  .visible-pc-ib {
    display: inline-block !important;
  }
}

.visible-pc-flex {
  display: none;
}
@media (min-width: 1136px) and (max-width: 1919px) {
  .visible-pc-flex {
    display: flex !important;
  }
}

.visible-wide {
  display: none;
}
@media (min-width: 1920px) {
  .visible-wide {
    display: block !important;
  }
}

.visible-wide-ib {
  display: none;
}
@media (min-width: 1920px) {
  .visible-wide-ib {
    display: inline-block !important;
  }
}

.visible-wide-flex {
  display: none;
}
@media (min-width: 1920px) {
  .visible-wide-flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1135px) {
  .hidden-tab {
    display: none !important;
  }
}

@media (min-width: 1136px) and (max-width: 1919px) {
  .hidden-pc {
    display: none !important;
  }
}

@media (min-width: 1920px) {
  .hidden-wide {
    display: none !important;
  }
}

.fv {
  position: relative;
}
.fv__inner {
  display: flex;
  flex-direction: column-reverse;
}
.fv__left {
  width: 100%;
  background: url("/shogaibasketball/sbdxact/assets/img/bg-dot.webp");
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 13.33vw 0 22.56vw;
}
.fv__left .fv__logo-main {
  width: auto;
  height: 51.28vw;
}
.fv__right {
  width: 100%;
}
.fv__right .fv__kv {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.fv__scroll {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 3.85vw;
  margin: auto;
  text-align: center;
  color: #fff;
}
.fv__scroll-text {
  font-size: 3.08vw;
  letter-spacing: 0.1em;
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  margin-bottom: -3.08vw;
}
.fv__scroll-icon {
  display: inline-block;
  width: 2.56vw;
  height: 2.56vw;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollDown 1.7s infinite ease-in-out;
}

@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(45deg);
  }
}
@media screen and (min-width: 768px) {
  .fv__inner {
    flex-direction: row;
  }
  .fv__left {
    width: 50%;
    padding: 0;
    max-height: 100%;
  }
  .fv__left .fv__logo-main {
    height: 36%;
  }
  .fv__right {
    width: 50%;
    max-height: 100%;
  }
  .fv__right .fv__kv {
    height: 100%;
  }
  .fv__right picture {
    display: inline;
  }
  .fv__scroll {
    right: 20px;
    left: initial;
    bottom: 20px;
    margin: initial;
  }
  .fv__scroll-text {
    font-size: 12px;
    margin-bottom: -12px;
    writing-mode: vertical-rl;
  }
  .fv__scroll-icon {
    margin-top: 16px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 1136px) {
  .fv__scroll {
    right: 60px;
    bottom: 60px;
  }
  .fv__scroll-text {
    font-size: 15px;
  }
}
.c-btn {
  font-size: 3.85vw;
  color: var(--color-primary);
  line-height: 55px;
  height: 55px;
  border: 2px solid var(--color-primary);
  text-align: center;
  font-weight: 900;
  display: block;
  max-width: 283px;
  margin: 0 auto;
}
.c-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 15px;
  }
}
/* ************************* */
/* loading */
/* ************************* */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
  opacity: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100dvh;
}
#loader .loader__img {
  max-width: 288px;
  transform: scale(1);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 1s ease;
  will-change: transform, opacity;
  transform-origin: top left;
}

body.loaded #loader {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  #loader .loader__img {
    max-width: 600px;
  }
}
[data-animation=slide-left] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.5s;
}
[data-animation=slide-left].is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.about {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("/shogaibasketball/sbdxact/assets/img/bg-about.webp");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 67.18vw 66.67vw;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.about__inner {
  display: flex;
  flex-direction: column;
}
.about__left, .about__rigth {
  width: 100%;
}
.about__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .about__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .about__heading {
    margin-bottom: 70px;
  }
}
.about__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #111;
}
@media screen and (min-width: 768px) {
  .about__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .about__heading .en {
    font-size: 48px;
  }
}
.about__heading .en::first-letter {
  color: var(--color-primary);
}
.about__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .about__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .about__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.about__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #111;
}
.about__img {
  margin-left: -3.85vw;
  position: relative;
}
.about__img::after {
  position: absolute;
  right: -3.85vw;
  top: -5.13vw;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #111;
  z-index: -1;
}
.about__img .img {
  position: relative;
}
.about__right {
  margin-top: -2rem;
  position: relative;
}
.about__labels {
  list-style: none;
  margin-bottom: 7.69vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__labels {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .about__labels {
    margin-bottom: 50px;
  }
}
.about__labels li {
  align-self: flex-start;
  font-size: 4.1vw;
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
  letter-spacing: 0rem;
  padding: 0.5rem 1rem;
  color: #fff;
  background: none;
}
.about__labels li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 0;
  transition: width 0.8s ease-out;
}
.about__labels li span {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease-out 0.4s;
  display: inline-block;
}
.about__labels li.is-visible::before {
  width: 100%;
}
.about__labels li.is-visible span {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .about__labels li {
    font-size: 19px;
  }
}
@media screen and (min-width: 1136px) {
  .about__labels li {
    font-size: 24px;
  }
}
.about__labels li:not(:last-child) {
  margin-bottom: 1.28vw;
}
@media screen and (min-width: 768px) {
  .about__labels li:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1136px) {
  .about__labels li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.about__text {
  font-weight: 500;
  font-size: 3.59vw;
}
.about__text:not(:last-of-type) {
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .about {
    background-size: 529px 524px;
  }
  .about__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .about__left {
    width: 50%;
    padding-right: 2rem;
  }
  .about__img {
    margin-left: initial;
    position: relative;
    max-width: 501px;
  }
  .about__img::after {
    content: none;
  }
  .about__img .img {
    width: 510px;
  }
  .about__right {
    margin-top: 0;
    width: 50%;
  }
  .about__text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1136px) {
  .about {
    position: relative;
  }
  .about::before {
    position: absolute;
    content: "";
    height: 76%;
    left: 0;
    width: 60px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #111;
  }
  .about__text {
    font-size: 1.8rem;
  }
}
.flow {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url("/shogaibasketball/sbdxact/assets/img/bg-flow.webp") no-repeat;
  background-size: 87.44vw 61.54vw;
  background-position: top right;
  background-color: #111;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.flow__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .flow__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .flow__heading {
    margin-bottom: 70px;
  }
}
.flow__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .flow__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .flow__heading .en {
    font-size: 48px;
  }
}
.flow__heading .en::first-letter {
  color: var(--color-primary);
}
.flow__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .flow__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .flow__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.flow__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #FFF;
}
.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 11.54vw;
}
.flow__step {
  display: flex;
  padding: 6.92vw 5.13vw 7.69vw;
  gap: 6.15vw;
  background: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
  border: 5px solid #ECECEC;
}
.flow__step::after {
  content: "";
  position: absolute;
  bottom: -7.69vw;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5.64vw solid transparent;
  border-right: 5.64vw solid transparent;
  border-top: 3.33vw solid var(--color-primary);
}
.flow__step:last-child::after {
  display: none;
}
.flow__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.flow__step-head {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  min-width: 8.21vw;
}
.flow__step-num {
  font-size: 3.08vw;
}
.flow__step-index {
  font-size: 7.18vw;
}
.flow__step-title {
  font-size: 4.62vw;
  font-weight: 900;
}
.flow__step-text {
  font-size: 3.85vw;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .flow {
    background-size: 695px 393px;
  }
  .flow__steps {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
  .flow__step {
    width: 31%;
    padding: 20px 26px 40px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .flow__step::after {
    top: 50%;
    right: 0;
    left: 106%;
    bottom: auto;
    transform: translateY(-50%);
    border-left: 14px solid #e60012;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: none;
  }
  .flow__step-head {
    min-width: initial;
  }
  .flow__step-num {
    font-size: 12px;
  }
  .flow__step-index {
    font-size: 28px;
  }
  .flow__step-title {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  .flow__step-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .flow__steps {
    gap: 64px;
  }
  .flow__step {
    padding: 30px 36px 50px;
  }
  .flow__step::after {
    left: calc(100% + 30px);
  }
}
.solution {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("/shogaibasketball/sbdxact/assets/img/bg-solution.webp");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 53.33vw 38.21vw;
  background-color: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.solution__heading {
  margin-bottom: 10.26vw;
  margin-bottom: 3.85vw;
}
@media screen and (min-width: 768px) {
  .solution__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .solution__heading {
    margin-bottom: 70px;
  }
}
.solution__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #111;
}
@media screen and (min-width: 768px) {
  .solution__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .solution__heading .en {
    font-size: 48px;
  }
}
.solution__heading .en::first-letter {
  color: var(--color-primary);
}
.solution__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .solution__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .solution__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.solution__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #111;
}
.solution__labels {
  list-style: none;
  margin-bottom: 7.69vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .solution__labels {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .solution__labels {
    margin-bottom: 50px;
  }
}
.solution__labels li {
  align-self: flex-start;
  font-size: 4.1vw;
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
  letter-spacing: 0rem;
  padding: 0.5rem 1rem;
  color: #fff;
  background: none;
}
.solution__labels li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 0;
  transition: width 0.8s ease-out;
}
.solution__labels li span {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease-out 0.4s;
  display: inline-block;
}
.solution__labels li.is-visible::before {
  width: 100%;
}
.solution__labels li.is-visible span {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .solution__labels li {
    font-size: 19px;
  }
}
@media screen and (min-width: 1136px) {
  .solution__labels li {
    font-size: 24px;
  }
}
.solution__labels li:not(:last-child) {
  margin-bottom: 1.28vw;
}
@media screen and (min-width: 768px) {
  .solution__labels li:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1136px) {
  .solution__labels li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.solution .li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.solution .li.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.solution__desc {
  font-size: 3.85vw;
  font-weight: 500;
  display: inline-block;
  background: #F7F7F7;
  background: linear-gradient(90deg, rgb(247, 247, 247) 0%, rgba(247, 247, 247, 0) 100%);
}
.solution__slider-box {
  margin-top: 10.26vw;
}
.solution__slider {
  background-color: #fff;
  padding: 7.69vw 5.13vw 20.51vw;
}
.solution__head {
  display: flex;
  align-items: center;
  gap: 10.26vw;
  margin-bottom: 7.69vw;
}
.solution__label {
  font-size: 6.15vw;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}
.solution__label::after {
  top: 0;
  bottom: 0;
  left: calc(100% + 5.13vw);
  margin: auto;
  content: "";
  display: block;
  width: 0.26vw;
  height: 6.92vw;
  background-color: #ECECEC;
  position: absolute;
}
.solution__title {
  font-size: 5.13vw;
  font-weight: 500;
}
.solution__content {
  display: flex;
  flex-direction: column;
}
.solution__img {
  margin-bottom: 7.69vw;
}
.solution__text {
  font-size: 3.85vw;
  font-weight: 500;
}
.solution__link {
  color: var(--color-primary);
}
.solution .splide__pagination {
  bottom: 2em;
}
.solution .splide__pagination__page {
  width: 34px;
  height: 5px;
  border-radius: 0;
  background-color: #C1C1C1;
}
.solution .splide__pagination__page.is-active {
  background-color: var(--color-primary);
  transform: none;
}

@media screen and (min-width: 768px) {
  .solution {
    background-size: 600px auto;
  }
  .solution__desc {
    font-size: 15px;
  }
  .solution__head {
    gap: 40px;
    margin-bottom: 60px;
  }
  .solution__slider-box {
    margin-top: 60px;
  }
  .solution__label {
    font-size: 30px;
  }
  .solution__label::after {
    left: calc(100% + 20px);
    width: 1px;
    height: 27px;
  }
  .solution__slider {
    padding: 50px 50px 80px;
  }
  .solution__content {
    flex-direction: row;
    gap: 60px;
  }
  .solution__img {
    margin-bottom: 0;
  }
  .solution__title {
    font-size: 28px;
  }
  .solution__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .solution {
    position: relative;
    background-size: 894px 503px;
  }
  .solution__slider-box {
    margin-top: 80px;
  }
}
.teams {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("/shogaibasketball/sbdxact/assets/img/bg-teams-repeat.webp");
  background-size: 100% auto;
  border-bottom: 3px solid #F5F5F5;
}
@media screen and (min-width: 768px) {
  .teams {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.teams__inner {
  display: flex;
  flex-direction: column;
}
.teams__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .teams__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .teams__heading {
    margin-bottom: 70px;
  }
}
.teams__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #111;
}
@media screen and (min-width: 768px) {
  .teams__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .teams__heading .en {
    font-size: 48px;
  }
}
.teams__heading .en::first-letter {
  color: var(--color-primary);
}
.teams__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .teams__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .teams__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.teams__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #111;
}
.teams__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.08vw;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: stretch;
}
.teams__item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 1.54vw);
  max-width: 372px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}
.teams__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.teams__card {
  margin: 0;
  text-align: center;
  padding: 1.79vw;
  background-color: #fff;
  height: 100%;
}
.teams__card figcaption {
  margin-top: 1rem;
  font-size: 3.59vw;
  font-weight: 900;
}
.teams__note {
  margin-top: 6.15vw;
  font-size: 3.08vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .teams {
    background-size: 50% auto;
  }
  .teams__list {
    gap: 20px;
  }
  .teams__item {
    width: calc(33.333% - 10px);
  }
  .teams__card {
    margin: 0;
    text-align: center;
    padding: 8px 10px 20px;
  }
  .teams__card figcaption {
    margin-top: 20px;
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1030px) {
  .teams__card figcaption {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .teams__note {
    margin-top: 32px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1136px) {
  .teams__list {
    gap: 40px;
  }
  .teams__item {
    width: calc(33.333% - 20px);
    background-color: red;
  }
  .teams__card {
    margin: 0;
    text-align: center;
    padding: 10px 12px 30px;
  }
  .teams__card figcaption {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 900;
  }
  .teams__note {
    text-align: right;
  }
}
.activities {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .activities {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.activities__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .activities__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .activities__heading {
    margin-bottom: 70px;
  }
}
.activities__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #111;
}
@media screen and (min-width: 768px) {
  .activities__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .activities__heading .en {
    font-size: 48px;
  }
}
.activities__heading .en::first-letter {
  color: var(--color-primary);
}
.activities__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .activities__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .activities__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.activities__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #111;
}
.activities__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.08vw;
}
.activities__item {
  width: calc(50% - 1.54vw);
  max-width: 100%;
  margin-bottom: 7.69vw;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}
.activities__item .is-hidden {
  display: block;
  max-height: 0 !important;
  opacity: 0;
  overflow: hidden;
}
.activities__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.activities__more {
  margin-top: 3rem;
  text-align: center;
}
.activities__more-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: -0.04rem;
  text-decoration: none;
}
.activities__more-link:hover {
  opacity: 0.8;
}
.activities__more-link.is-open .activities__arrow {
  transform: rotate(180deg);
}
.activities__arrow {
  font-family: "Barlow", sans-serif;
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 0.4rem;
}
.activities__arrow::before, .activities__arrow::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: var(--color-primary);
  top: 0;
  left: 50%;
  transform-origin: bottom center;
}
.activities__arrow::before {
  transform: translateX(-1px) rotate(45deg);
}
.activities__arrow::after {
  transform: translateX(-1px) rotate(-45deg);
}
.activities__more {
  margin-top: -2.56vw;
}

@media screen and (min-width: 768px) {
  .activities__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
  }
  .activities__item {
    width: calc(25% - 18px);
    max-width: 100%;
    margin-bottom: 60px;
  }
  .activities__more {
    margin-top: -40px;
  }
}
@media screen and (min-width: 1136px) {
  .activities {
    position: relative;
  }
  .activities::before {
    position: absolute;
    content: "";
    height: 76%;
    left: 0;
    width: 60px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #111;
  }
}
.movie {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url("/shogaibasketball/sbdxact/assets/img/bg-dot.webp");
  background-color: #111;
}
@media screen and (min-width: 768px) {
  .movie {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.movie__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .movie__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .movie__heading {
    margin-bottom: 70px;
  }
}
.movie__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .movie__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .movie__heading .en {
    font-size: 48px;
  }
}
.movie__heading .en::first-letter {
  color: var(--color-primary);
}
.movie__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .movie__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .movie__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.movie__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #FFF;
}
.movie__content {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 640px;
  margin: 0 auto;
}
.movie__content iframe {
  width: 100%;
  height: 100%;
}

.challengers {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("/shogaibasketball/sbdxact/assets/img/bg-teams-repeat.webp");
  background-size: 100% auto;
  border-bottom: 3px solid #F5F5F5;
}
@media screen and (min-width: 768px) {
  .challengers {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.challengers__inner {
  display: flex;
  flex-direction: column;
}
.challengers__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .challengers__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .challengers__heading {
    margin-bottom: 70px;
  }
}
.challengers__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #111;
}
@media screen and (min-width: 768px) {
  .challengers__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .challengers__heading .en {
    font-size: 48px;
  }
}
.challengers__heading .en::first-letter {
  color: var(--color-primary);
}
.challengers__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .challengers__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .challengers__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.challengers__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #111;
}
.challengers__text {
  font-weight: 500;
  font-size: 3.85vw;
  margin-bottom: 10.26vw;
}
.challengers__content {
  border: 5px solid #ECECEC;
  padding: 5.13vw 5.13vw 9.74vw;
  max-width: 640px;
  margin: 0 auto;
  background-color: #fff;
}
.challengers__card {
  border: 2px solid #ECECEC;
  padding: 4.36vw;
}
.challengers__card figcaption {
  text-align: center;
  font-size: 3.08vw;
  font-weight: 700;
  margin-top: 3.08vw;
}
.challengers__note {
  text-align: center;
  font-size: 3.85vw;
  font-weight: 900;
  margin-top: 5.13vw;
}
.challengers__highlight {
  color: var(--color-primary);
}

@media screen and (min-width: 768px) {
  .challengers {
    background-size: 50% auto;
  }
  .challengers__heading-wrapper {
    display: flex;
  }
  .challengers__heading {
    width: 50%;
  }
  .challengers__text {
    width: 50%;
    font-size: 18px;
    margin-bottom: 0;
  }
  .challengers__content {
    padding: 20px 20px 38px;
    min-width: 640px;
  }
  .challengers__card {
    border: 2px solid #ECECEC;
    padding: 17px;
    margin: 0 auto;
    max-width: 372px;
  }
  .challengers__card figcaption {
    font-size: 15px;
    margin-top: 20px;
  }
  .challengers__note {
    font-size: 18px;
    margin-top: 20px;
  }
}
.banner {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F9F9F9;
}
@media screen and (min-width: 768px) {
  .banner {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.banner__link .img {
  max-width: 640px;
  margin: 0 auto;
}

.news-sbdx {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .news-sbdx {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
.news-sbdx__inner {
  display: flex;
  flex-direction: column;
}
.news-sbdx__heading {
  margin-bottom: 10.26vw;
}
@media screen and (min-width: 768px) {
  .news-sbdx__heading {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1136px) {
  .news-sbdx__heading {
    margin-bottom: 70px;
  }
}
.news-sbdx__heading .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 9.23vw;
  line-height: 150%;
  color: #111;
}
@media screen and (min-width: 768px) {
  .news-sbdx__heading .en {
    font-size: 40px;
  }
}
@media screen and (min-width: 1136px) {
  .news-sbdx__heading .en {
    font-size: 48px;
  }
}
.news-sbdx__heading .en::first-letter {
  color: var(--color-primary);
}
.news-sbdx__heading .jp {
  font-size: 4.1vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #111;
}
@media screen and (min-width: 768px) {
  .news-sbdx__heading .jp {
    font-size: 18px;
  }
}
@media screen and (min-width: 1136px) {
  .news-sbdx__heading .jp {
    font-size: 20px;
    gap: 10px;
  }
}
.news-sbdx__heading .jp::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #111;
}
.news-sbdx__btn-wrap {
  margin-top: 7.69vw;
}
.news-sbdx__mail {
  font-size: 3.59vw;
  font-weight: 700;
  margin-top: 5.13vw;
  text-align: center;
}

.news__inner {
  padding: 0 !important;
}

@media screen and (min-width: 768px) {
  .news-sbdx__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .news-sbdx__heading {
    width: 350px;
  }
  .news-sbdx .news__inner {
    flex: 1;
    max-width: 63%;
  }
  .news-sbdx__btn-wrap {
    margin-top: 60px;
  }
  .news-sbdx__mail {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}
.news {
  background-color: #FAFAFA;
}
.news__inner {
  padding-top: 40px;
  padding-bottom: 45px;
}
.news__title {
  font-size: 6.15vw;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-left: 7.69vw;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 32px;
    padding-left: 40px;
    margin-bottom: 40px;
  }
}
.news__title::before {
  position: absolute;
  content: "";
  width: 5.64vw;
  height: 5.64vw;
  background-image: url("/shogaibasketball/assets/img/ball.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 768px) {
  .news__title::before {
    width: 30px;
    height: 30px;
  }
}
.news__caption {
  font-size: 3.08vw;
  font-family: initial;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .news__caption {
    font-size: 16px;
    position: relative;
    top: 2px;
  }
}
.news__list {
  display: flex;
  flex-direction: column;
}
.news__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}
.news__item:not(:first-child) {
  margin-top: 20px;
}
.news__item.is-hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  margin-top: 0;
}
.news__item.is-visible {
  opacity: 1;
  max-height: 1000px;
}
.news__info {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 15px;
}
.news__date {
  color: var(--color-primary);
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-size: 3.59vw;
  font-weight: 500;
}
.news__tag {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 0.51vw 1.03vw;
  font-size: 2.82vw;
  white-space: nowrap;
  font-weight: 500;
}
.news__title-text {
  flex: 1;
  font-size: 3.59vw;
  font-weight: 700;
}
.news__btn-wrap {
  margin-top: 40px;
  text-align: center;
}
.news__more {
  margin-top: 3rem;
  text-align: center;
}
.news__more-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: -0.04rem;
  text-decoration: none;
}
.news__more-link:hover {
  opacity: 0.8;
}
.news__more-link.is-open .news__arrow {
  transform: rotate(180deg);
}
.news__arrow {
  font-family: "Barlow", sans-serif;
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 0.4rem;
}
.news__arrow::before, .news__arrow::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: var(--color-primary);
  top: 0;
  left: 50%;
  transform-origin: bottom center;
}
.news__arrow::before {
  transform: translateX(-1px) rotate(45deg);
}
.news__arrow::after {
  transform: translateX(-1px) rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .news__inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .news__list {
    margin-top: 40px;
  }
  .news__item {
    gap: 12px;
  }
  .news__date {
    font-size: 16px;
  }
  .news__tag {
    font-size: 12px;
    padding: 2px 4px;
  }
  .news__title-text {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */