@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Sans+JP:wght@400;500;700&family=Oswald:wght@200..700&family=Raleway:wght@700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

.button {
  user-select: none;
}

: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;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
  touch-action: manipulation;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 4.1vw;
  font-weight: 400;
  line-height: 1.8;
  font-feature-settings: "palt" on;
  letter-spacing: 0.05em;
  color: var(--color-text, #111);
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

[class$=-container] {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 3.85vw;
}
@media screen and (min-width: 768px) {
  [class$=-container] {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1136px) {
  [class$=-container] {
    padding: 0;
  }
}

.wrapper {
  margin: 0 auto;
}

a, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}
a:hover:not(.c-nav__link), button:hover:not(.c-nav__link) {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.l-header__inner {
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
}
.l-header__logo img {
  width: 153px;
  height: 48px;
  width: auto;
  position: relative;
  z-index: 100;
}

.is-mobile-menu .l-header__menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.is-mobile-menu .l-header__menu-button span {
  display: block;
  height: 2px;
  width: 100%;
  background: #1F1F1F;
  transition: all 0.3s ease;
  transform-origin: center;
}
.is-mobile-menu .l-header__menu-button.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}
.is-mobile-menu .l-header__menu-button.is-open span:nth-child(2) {
  opacity: 0;
}
.is-mobile-menu .l-header__menu-button.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -5px);
}
.is-mobile-menu .l-header__drawer-nav {
  background-color: #FFF;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99;
  padding: 80px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.is-mobile-menu .l-header__drawer-nav::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #F2F2F2;
  background-image: url("/shogaibasketball/common-assets/img/logo.webp");
  background-size: 146px 46px;
  background-repeat: no-repeat;
  background-position: center;
}
.is-mobile-menu .l-header__drawer-nav.is-open {
  transform: translateX(0);
}
.is-mobile-menu .l-header__drawer-nav .drawer-nav__inner {
  width: 70%;
  margin: 0 auto;
}
.is-mobile-menu .l-header__drawer-nav .drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 5.13vw;
  font-weight: 900;
}
.is-mobile-menu .l-header__drawer-nav .drawer-nav__list li a {
  border-bottom: 1px solid #ECECEC;
}
.is-mobile-menu .l-header__drawer-nav .drawer-nav__list a {
  display: block;
  padding: 18px 0 12px;
}
.is-mobile-menu .l-header__drawer-nav .drawer-nav__link {
  margin-top: 60px;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .l-header__menu-button {
    display: none;
  }
  .l-header__logo {
    margin-right: 24px;
    width: 151px;
    flex-shrink: 0;
  }
  .l-header__drawer-nav .drawer-nav__list {
    display: flex;
    flex-direction: initial;
    gap: 24px;
    font-size: 2rem !important;
    text-align: center;
  }
  .l-header__drawer-nav .drawer-nav__list a {
    display: block;
    padding: 12px 0;
    line-height: 1.4;
    font-weight: 900;
  }
}
@media screen and (min-width: 1136px) {
  .l-header__inner {
    padding: 21px 60px;
  }
}
.l-footer {
  background-color: #F2F2F2;
  text-align: center;
  padding: 40px 25px;
}
.l-footer__logo img {
  display: inline-block;
  width: 200px;
  height: auto;
  margin-bottom: 40px;
}
.l-footer__produced {
  font-weight: bold;
  font-size: 4.1vw;
  margin-bottom: 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
.l-footer__partners {
  margin-bottom: 40px;
}
.l-footer__partners img {
  display: inline-block;
  width: 140px;
  height: auto;
}
.l-footer__copyright {
  font-size: 3.08vw;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .l-footer__produced {
    font-size: 1.8rem;
  }
  .l-footer__copyright {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1136px) {
  .l-footer {
    padding: 90px 50px;
  }
  .l-footer__logo img {
    width: 250px;
  }
  .l-footer__partners img {
    width: 119px;
    height: auto;
  }
}
.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;
}

html {
  scroll-behavior: smooth;
}

.anchor-offset {
  display: block;
  height: 80px;
  margin-top: -80px;
  pointer-events: none;
}

.l-main {
  padding-top: 80px;
}

body:not(.loaded) {
  overflow: hidden;
  height: 100vh;
}

@media screen and (min-width: 1136px) {
  .l-main {
    padding-top: 90px;
  }
}
/* img */
img.img {
  display: block;
  width: 100%;
  height: auto;
}

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