@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #000;
  line-height: 1.75;
  font-size: 14px;
}
@media (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: calc(min(89.5833333333vw, 1720px) + 80px);
  padding: 0 min(10.4712041885vw, 955px);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .container-base {
    padding: 0 20px;
  }
}
@media (min-width: 956px) {
  .container-base {
    padding: 0 40px;
  }
}

.br_sp {
  display: block;
}
@media (min-width: 780px) {
  .br_sp {
    display: none;
  }
}

.br_tablet {
  display: block;
}
@media (min-width: 956px) {
  .br_tablet {
    display: none;
  }
}

.u_dot_bg {
  position: relative;
  isolation: isolate;
}
.u_dot_bg::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: radial-gradient(circle at center, #ffffff 0, #ffffff 1.6px, rgba(255, 255, 255, 0.85) 1.8px, transparent 2.2px), radial-gradient(circle at center, #ffffff 0, #ffffff 1.6px, rgba(255, 255, 255, 0.85) 1.8px, transparent 2.2px);
  background-repeat: repeat;
  background-position: 0 0, 7px 14px;
  background-size: 14px 28px, 14px 28px;
  content: "";
  pointer-events: none;
}
.u_dot_bg > * {
  position: relative;
  z-index: 1;
}

.line_hover {
  position: relative;
  display: inline-block;
}
.line_hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.8s cubic-bezier(0.1, 1, 0.2, 1);
}

@media (min-width: 956px) {
  .line_hover:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@media (min-width: 956px) {
  .line_hover_parent:hover .line_hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
}
@media (min-width: 1200px) {
  .site_header {
    padding: 20px 60px;
  }
}
@media (max-width: 599px) {
  .site_header_logo {
    max-width: 180px;
  }
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  box-shadow: none;
  display: block;
  width: 42px;
  height: 42px;
  border: none;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: #fff;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  border-radius: 0;
}
@media (min-width: 920px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  right: 0;
  width: 30px;
}
.global_nav_toggle_bar-top {
  top: 14px;
}
.global_nav_toggle_bar-mid {
  top: 50%;
}
.global_nav_toggle_bar-btm {
  bottom: 13px;
  transform: scaleX(0.7);
}
.global_nav_toggle.is-active .global_nav_toggle_bar {
  width: 34px;
  background-color: #000 !important;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translateY(-5px) rotate(-45deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translateY(5px) rotate(45deg);
}
@media (max-width: 919px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.3s linear;
    overflow-y: auto;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 919px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 919px) {
  .global_nav_container {
    padding: 80px 20px 50px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
.global_nav_list {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 919px) {
  .global_nav_list {
    border-bottom: 1px solid rgba(153, 175, 198, 0.5);
    gap: 0;
  }
}
@media (min-width: 920px) {
  .global_nav_list {
    flex-direction: row;
    gap: 1em;
    width: auto;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .global_nav_list {
    gap: 2em;
  }
}
@media (min-width: 920px) {
  .global_nav_list_item {
    padding: 20px 0;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 919px) {
  .global_nav_list_item {
    border-top: 1px solid rgba(153, 175, 198, 0.5);
  }
}
.global_nav_list_link {
  display: block;
  line-height: 1.4;
  transition: opacity 0.3s ease-out;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  color: #000;
}
@media (max-width: 919px) {
  .global_nav_list_link {
    text-align: center;
    padding: 10px 0;
  }
}
@media (min-width: 920px) {
  .global_nav_list_link {
    font-size: 14px;
  }
}
@media (min-width: 920px) and (min-width: 1400px) {
  .global_nav_list_link {
    font-size: 16px;
  }
}
/* フッターのスタイル */
.site_footer {
  display: flex;
  min-height: auto;
  padding: 70px 0;
  align-items: center;
  background-color: #b9b4d8;
  background-image: radial-gradient(circle at center, #ffffff 0, #ffffff 1.6px, rgba(255, 255, 255, 0.85) 1.7px, transparent 2.2px), radial-gradient(circle at center, #ffffff 0, #ffffff 1.6px, rgba(255, 255, 255, 0.85) 1.7px, transparent 2.2px), linear-gradient(90deg, #eeadcc 0%, #b9b4d8 52.4%, #94d2f3 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-position: 0 0, 7px 14px, center;
  background-size: 14px 28px, 14px 28px, cover;
}
@media (min-width: 780px) {
  .site_footer {
    padding: min(10.7777777778vw, 194px) 0 min(11.6666666667vw, 210px);
  }
}
.site_footer_inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 780px) {
  .site_footer_inner {
    padding: 0 160px;
    gap: 56px;
  }
}
@media (min-width: 1240px) {
  .site_footer_inner {
    grid-template-columns: auto auto auto;
    gap: min(3.3333333333vw, 50px);
    padding: 0 40px;
  }
}
.site_footer_nav {
  width: 100%;
  min-width: 0;
}
@media (min-width: 956px) {
  .site_footer_nav {
    width: auto;
  }
}
.site_footer_nav_items {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 780px) {
  .site_footer_nav_items {
    gap: 14px;
  }
}
@media (min-width: 956px) {
  .site_footer_nav_items {
    gap: 18px;
  }
}
.site_footer_nav_item {
  margin: 0;
  padding: 0;
}
.site_footer_nav_link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}
@media (min-width: 780px) {
  .site_footer_nav_link {
    font-size: 21px;
  }
}
@media (min-width: 956px) {
  .site_footer_nav_link {
    font-size: min(1.3333333333vw, 24px);
  }
}
.site_footer_logos {
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 956px) {
  .site_footer_logos {
    gap: normal;
    margin-bottom: 0;
  }
}
.site_footer_logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
@media (min-width: 780px) {
  .site_footer_logo {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }
}
@media (min-width: 956px) {
  .site_footer_logo {
    gap: min(2vw, 36px);
  }
}
.site_footer_logo_item {
  display: block;
  flex-shrink: 0;
}
.site_footer_logo_broncos {
  width: 100%;
  max-width: 60px;
}
@media (min-width: 780px) {
  .site_footer_logo_broncos {
    max-width: 110px;
  }
}
@media (min-width: 956px) {
  .site_footer_logo_broncos {
    max-width: min(6.1666666667vw, 111px);
  }
}
.site_footer_logo_bleague {
  width: 100%;
  max-width: 180px;
}
@media (min-width: 780px) {
  .site_footer_logo_bleague {
    max-width: 272px;
  }
}
@media (min-width: 956px) {
  .site_footer_logo_bleague {
    max-width: min(15vw, 270px);
  }
}
.site_footer_copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 780px) {
  .site_footer_copyright {
    font-size: min(1vw, 18px);
  }
}/*# sourceMappingURL=base.css.map */