: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 {
  height: calc(var(--vh) * 100);
  height: calc(var(--dvh) * 100);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("/shogaibasketball/assets/img/bg-top_sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  margin-top: -80px;
}
.fv__inner img {
  width: 100%;
  max-width: 288px;
  margin: 0 auto;
  display: block;
}
.fv__scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fv__scroll .line {
  position: absolute;
  top: -103px;
  width: 1px;
  height: 30px;
  background-color: #111;
  animation: scrollLineMove 2s ease-in-out infinite;
}
.fv__scroll .text {
  font-size: 3.08vw;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  animation: scrollTextFlash 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 0;
    opacity: 0;
  }
}
@keyframes scrollTextFlash {
  0% {
    color: #111;
  }
  40% {
    color: #111;
  }
  100% {
    color: #ED2A2A;
  }
}
@media screen and (min-width: 768px) {
  .fv {
    background-image: url("/shogaibasketball/assets/img/bg-top_pc.webp");
    background-size: cover;
  }
  .fv__inner img {
    width: 100%;
    max-width: 600px;
  }
  .fv__scroll .text {
    font-size: 16px;
    letter-spacing: -0.03rem;
  }
}
@media screen and (min-width: 1136px) {
  .fv {
    margin-top: -90px;
  }
}
.lead {
  background-image: url("/shogaibasketball/assets/img/bg-kv_sp.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.lead__inner {
  padding: 11.54vw 5.13vw 7.69vw;
  margin: 0 auto;
}
.lead__title {
  font-size: 6.15vw;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 38px;
}
.lead__body {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 3.33vw;
  gap: 2rem;
}
.lead__logo img {
  width: 100px;
  height: auto;
  margin: 15px auto 0;
}

@media screen and (min-width: 768px) {
  .lead {
    background-image: url("/shogaibasketball/assets/img/bg-kv_pc.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .lead__inner {
    padding: 90px 30px;
    margin: 0 auto;
    display: flex;
  }
  .lead__title {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 48px;
  }
  .lead__body {
    width: 50%;
    flex-direction: column;
    font-size: 14px;
  }
  .lead__logo img {
    width: 120px;
    height: auto;
    margin: 20px auto 0 0;
  }
}
@media screen and (min-width: 1136px) {
  .lead {
    background-size: 100% auto;
  }
  .lead__inner {
    padding: 150px 20px;
    margin: 0 auto;
    display: flex;
  }
  .lead__title {
    width: 50%;
    font-size: 48px;
    margin-bottom: 64px;
  }
  .lead__body {
    width: 50%;
    font-size: 18px;
  }
  .lead__logo img {
    width: 150px;
    height: auto;
    margin: 40px auto 0 0;
  }
}
.visual-slider {
  overflow: hidden;
  background: #fff;
}
.visual-slider__inner {
  width: 100%;
}
.visual-slider__track {
  display: flex;
  width: max-content;
  animation: slideLoop 40s linear infinite;
}
.visual-slider__item {
  flex: 0 0 auto;
  margin-right: 3px;
}
.visual-slider__item img {
  display: block;
  height: 110px;
  width: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .visual-slider {
    padding: 24px 0;
  }
  .visual-slider__item {
    margin-right: 3px;
  }
  .visual-slider__item img {
    height: 110px;
  }
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .visual-slider__item {
    margin-right: 5px;
  }
  .visual-slider__item img {
    height: 200px;
  }
}
.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;
}

.project {
  background-color: #FFF;
}
.project__inner {
  padding-top: 40px;
  padding-bottom: 90px;
}
.project__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) {
  .project__title {
    font-size: 32px;
    padding-left: 40px;
    margin-bottom: 40px;
  }
}
.project__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) {
  .project__title::before {
    width: 30px;
    height: 30px;
  }
}
.project__caption {
  font-size: 3.08vw;
  font-family: initial;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .project__caption {
    font-size: 16px;
    position: relative;
    top: 2px;
  }
}
.project__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.project__slide h3 {
  margin-top: 24px;
  font-size: 4.1vw;
  font-weight: 900;
}
.project .splide {
  padding-bottom: 6rem;
}
.project .splide.is-static {
  visibility: visible;
  padding-bottom: 0;
}
.project .splide.is-static .splide__slide {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.project .splide__arrow {
  background-color: transparent;
  top: 32%;
}
.project .splide__arrow svg {
  fill: var(--color-primary);
}
.project .splide__arrow--next {
  right: 0;
}
.project .splide__arrow--prev {
  left: 0;
}
.project .splide__pagination__page {
  width: 34px;
  height: 5px;
  border-radius: 0;
  background-color: #C1C1C1;
}
.project .splide__pagination__page.is-active {
  background-color: var(--color-primary);
  transform: none;
}
.project__btn-wrap {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .project__inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .project__slide h3 {
    margin-top: 33px;
    font-size: 18px;
  }
  .project .splide.is-slide-2 {
    visibility: visible;
  }
  .project .splide.is-slide-2 .splide__list {
    display: flex !important;
    max-width: 800px;
    margin: 0 auto !important;
    justify-content: space-around;
  }
  .project .splide.is-slide-2 .splide__slide {
    width: calc(50% - 10px);
  }
  .project .splide__arrow {
    background-color: transparent;
  }
  .project .splide__arrow svg {
    fill: var(--color-primary);
  }
  .project .splide__arrow--next {
    right: -30px;
  }
  .project .splide__arrow--prev {
    left: -30px;
  }
  .project__btn-wrap {
    margin-top: 45px;
  }
}
.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;
  }
}
.section-banner__inner {
  width: 100%;
}
.section-banner__inner img {
  display: block;
  width: 100%;
  height: auto;
}

.partners__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.partners__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) {
  .partners__title {
    font-size: 32px;
    padding-left: 40px;
    margin-bottom: 40px;
  }
}
.partners__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) {
  .partners__title::before {
    width: 30px;
    height: 30px;
  }
}
.partners__caption {
  font-size: 3.08vw;
  font-family: initial;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .partners__caption {
    font-size: 16px;
    position: relative;
    top: 2px;
  }
}
.partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 678px;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ECECEC;
  width: calc(50% - 10px);
}
.partners__item img {
  object-fit: cover;
  height: auto;
  display: block;
}
.partners__btn-wrap {
  margin-top: 40px;
}
.partners__mail {
  font-size: 3.59vw;
  font-weight: 700;
  margin-top: 5.13vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .partners__inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .partners__item {
    width: calc(33% - 10px);
  }
  .partners__btn-wrap {
    margin-top: 60px;
  }
  .partners__mail {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}

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