:root {
  --section-pad-y: 80px;
  --section-pad-x: 24px;
}

@media (min-width: 769px) {
  :root {
    --section-pad-y: 120px;
    --section-pad-x: 120px;
  }
}

.front_wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.front_wrapper picture {
  display: block;
}

@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* component: section-heading */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading__label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #e5437f;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .section-heading__label {
    font-size: 16px;
  }
}

.section-heading__label-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff000;
  flex: 0 0 12px;
}

.section-heading__title {
  margin: 0;
  font-family: "Antonio", Impact, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff000;
  -webkit-text-stroke: 4px #e5437f;
  paint-order: stroke fill;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .section-heading__title {
    font-size: 120px;
     -webkit-text-stroke: 6px #e5437f;
  }
}

/* /component: section-heading */

/* component: btn (pink "VIEW ALL" style link button) */

:root {
  --btn-width: 266px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--btn-width);
  padding: 12px 12px 12px 24px;
  background: #e5437f;
  border-radius: 3px;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
}

.btn__text {
  font-family: "Antonio", Impact, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #ffffff;
  white-space: nowrap;
}

.btn__icon,
.icon-arrow {
  display: block;
  width: 32px;
  height: 32px;
}

/* /component: btn */

/* section: news */

:root {
  --news-side-padding: 120px;
  --news-card-width: 328px;
}

.news {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
  background: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap:40px;
}

@media (min-width: 769px) {
  .news {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    padding: 120px 0 120px var(--news-side-padding);
  }
}


.news__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}

@media (max-width: 768px) {
  .news__heading {
    padding-left: 24px;
  }
}

.news__list-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  min-width: 0;
  padding-right: 80px;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .news__list-wrap {
    padding-left: 24px;
  }
}

.news__list-wrap::-webkit-scrollbar {
  display: none;
}

.news__list-wrap.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.news__list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.news-card {
  flex: 0 0 var(--news-card-width);
}

.news-card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #191a19;
  border-radius: 4px;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.news-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
  pointer-events: none;
}

.news-card__title {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #191a19;
  word-break: break-word;
}

.news-card__link {
  display: block;
  width: 32px;
  height: 32px;
}

.news__button--sp {
  display: none;
}

@media (max-width: 768px) {
  .news__button--pc {
    display: none;
  }

  .news__button--sp {
    display: flex;
    margin-left: 24px;
  }
}

/* /section: news */

/* section: live */

.live {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  padding: var(--section-pad-y) var(--section-pad-x);
  background: #fff6f9;
  box-sizing: border-box;
}



.live__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}

@media (max-width: 768px) {
  .live__inner {
    flex-direction: column;
  }
}
.live__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}



.live__lead {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #191a19;
}

.live__matches {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.live-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 23px 24px;
  background: #191a19;
  border-radius: 3px;
  text-decoration: none;
  box-sizing: border-box;
}

.live-match__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.live-match__round {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #ffffff;
  white-space: nowrap;
}

.live-match__datetime {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-match__date,
.live-match__time {
  font-family: "Antonio", Impact, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}

.live-match__day {
  margin-left: 4px;
  font-size: 18px;
}

.live-match__teams {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #ffffff;
  white-space: nowrap;
}

.live-match__link {
  display: block;
  flex: 0 0 32px;
}

.live__youtube {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 24px;
  background: #e5437f;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
}

.live__youtube-text {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #ffffff;
}

.live__youtube-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.live__youtube-image {
  width: 470px;
  max-width: 60%;
  height: auto;
  border-radius: 4px;
}


/* /section: live */

/* section: team-photo */

.team-photo {
  width: 100%;
  background: linear-gradient(to bottom, #fff6f9 50%, #ffffff 50%);
}

.team-photo__mask {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.team-photo__mask::before,
.team-photo__mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-photo__mask::before {
  background: #fff6f9;
  clip-path: polygon(0 0, 100% 0, 100% 18.5%);
}

.team-photo__mask::after {
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 86.5%, 100% 100%);
}

.team-photo--reverse .team-photo__mask::before,
.team-photo--reverse .team-photo__mask::after {
  transform: scaleX(-1);
}

/* /section: team-photo */

/* section: game */

.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  padding: var(--section-pad-y) var(--section-pad-x);
  background: #ffffff;
  box-sizing: border-box;
}

.game__heading {
  width: 100%;
}

.game__schedule-frame {
  width: 100%;
}

.game__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* /section: game */

/* section: tournament */

:root {
  --tournament-card-size: 400px;
  @media (max-width: 768px) {
    --tournament-card-size: 320px;
  }
}

.tournament {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  padding: var(--section-pad-y) 0;
  background: #fff6f9;
  box-sizing: border-box;
  @media (min-width: 768px) {
    gap:40px;
  }
}

.tournament__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 80px;
  width: 100%;
  padding: 0 var(--section-pad-x);
  box-sizing: border-box;
}

.tournament__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 320px;
  max-width: 551px;
}

@media (min-width: 769px) {
  .tournament__flow {
    min-width: 500px;
  }
}

.tournament__flow-text {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #191a19;
  text-align: center;
}

.tournament__flow-row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 8px;
  }
}

.tournament__flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-height: 90px;
  padding: 12px 24px;
  background: #e5437f;
  border-radius: 4px;
  box-sizing: border-box;
  @media (max-width: 768px) {
    width: 80%;
  }
}

.tournament__flow-card-title {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #ffffff;
  text-align: center;
}

.tournament__flow-card--qualifier .tournament__flow-card-title {
  font-size: 18px;
}

.tournament__flow-card--final .tournament__flow-card-title {
  font-size: 20px;
}

.tournament__rank-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tournament__rank {
  padding: 4px 10px;
  background: #ffffff;
  border-radius: 2px;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #e5437f;
}

.tournament__flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  font-weight: 700;
  color: #e5437f;
  @media (max-width: 768px) {
    rotate:90deg;
  }
}

.tournament__groups {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 0 var(--section-pad-x);
  box-sizing: border-box;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  @media (max-width: 768px) {
    gap: 8px;
  }
}

.tournament__groups::-webkit-scrollbar {
  display: none;
}

.tournament__groups.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.tournament-group-card {
  flex: 0 0 var(--tournament-card-size);
}

.tournament-group-card__image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.tournament__final {
  width: 100%;
  padding: 0 var(--section-pad-x);
  box-sizing: border-box;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tournament__final::-webkit-scrollbar {
  display: none;
}

.tournament__final.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.tournament__final-image {
  display: block;
  width: 100%;
  min-width: 900px;
  height: auto;
  pointer-events: none;
  @media (max-width: 768px) {
    min-width: 560px;
  }
}

@media (max-width: 768px) {
  .tournament .section-heading__title {
    font-size: 64px;
  }
}

/* /section: tournament */

/* section: teams */

:root {
  --teams-card-width: 400px;
  @media (max-width: 768px) {
    --teams-card-width: 280px;
  }
}

.teams {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  padding: var(--section-pad-y) 0;
  background: #ffffff;
  box-sizing: border-box;
}

.teams__heading {
  width: 100%;
  padding: 0 var(--section-pad-x);
  box-sizing: border-box;
}

.teams__slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.teams-swiper {
  position: relative;
  width: 100%;
  padding: 0 var(--section-pad-x) 44px !important;
  box-sizing: border-box;
}

.teams-swiper .swiper-slide {
  width: var(--teams-card-width);
}

.teams-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 400 / 225;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.teams-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.teams-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  box-sizing: border-box;
}

.teams-card__name {
  margin: 0;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #ffffff;
  white-space: nowrap;
}

.teams-card__icon {
  display: block;
  flex: 0 0 32px;
}

.teams-swiper-scrollbar.swiper-scrollbar {
  position: absolute;
  left: 50%!important;
  right: auto;
  top: auto;
  bottom: 0;
  width: 100%;
  max-width: 560px;
  height: 4px;
  margin: 0;
  transform: translateX(-50%);
  background: #e5e5e5;
  border-radius: 999px;
}

.teams-swiper-scrollbar .swiper-scrollbar-drag {
  background: #e5437f;
  border-radius: 999px;
}

.teams__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 var(--section-pad-x);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .swiper-scrollbar {
    width: 60%!important;
  }
}


/* /section: teams */

/* section: column (existing markup/layout kept as-is; colors only, aligned to front palette) */

.front_wrapper .column_wrapper .seciton_title {
  color: #e5437f;
}

.front_wrapper .column_wrapper .column_cate_li li.active a {
  background-color: #e5437f;
  color: #ffffff;
}

.front_wrapper .column_wrapper .column_cate_li li a {
  color: #e5437f;
  border-color: #e5437f;
}

.front_wrapper .column_wrapper .column_cate.games-review {
  background-color: #e5437f;
}

.front_wrapper .column_wrapper .column_cate.interview {
  background-color: #e5437f;
}

.front_wrapper .column_wrapper .btn {
  margin: 80px auto 0;
}

/* /section: column */
