@charset "utf-8";

:root {
  --blue: #005bac;
  --blue-dark: #001d3d;
  --blue-deep: #07162f;
  --sky: #2ba8ff;
  --green: #22b45b;
  --yellow: #f4c430;
  --white: #fff;
  --text: #182033;
  --muted: #68738a;
  --line: #dbe3ef;
  --bg: #f4f8fc;
  --shadow: 0 18px 45px rgba(0, 30, 80, .14);
  --font-en: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-ja: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ja);
  line-height: 1.8;
  background: var(--white);
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 8px 12px;
  background: var(--blue-dark);
  color: #fff;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  margin-inline: auto;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
}
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.global-nav a {
  display: block;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--blue-dark);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.global-nav a:hover,
.global-nav a:focus-visible {
  background: var(--blue);
  color: #fff;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 130px 0 84px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-dark);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background: url("../img/hero-image.webp") center / cover no-repeat;
  transform: scale(1.02);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 15, 45, .93) 0%, rgba(0, 35, 85, .78) 42%, rgba(0, 20, 50, .24) 100%),
    radial-gradient(circle at 85% 25%, rgba(43, 168, 255, .36), transparent 38%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -12vw;
  width: 44vw;
  height: 44vw;
  border: 4vw solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: end;
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.hero-kicker,
.section-en {
  margin: 0 0 10px;
  color: var(--sky);
  font-family: var(--font-en);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 { margin: 0; }
.hero-title-main {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(78px, 14vw, 172px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.hero-title-sub {
  display: block;
  margin-top: 28px;
  font-size: clamp(28px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .04em;
}
.hero-lead {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.hero-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 24px;
  background: rgba(0, 35, 85, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 900;
}
.hero-date {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 800;
  line-height: .94;
}
.hero-date span {
  display: block;
  font-size: .42em;
  letter-spacing: .12em;
}
.hero-date small {
  font-size: .34em;
  color: var(--sky);
}
.hero-place {
  margin: 18px 0 0;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
border-top: #FFFFFF solid 1px;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.82);
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  margin: 8px auto 0;
  background: rgba(255,255,255,.68);
}

.sponsor-band {
  padding: 34px 0;
  background: var(--bg);
  box-shadow: 0 -1px 0 rgba(0,0,0,.04) inset;
}
.sponsor-band-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
}
.sponsor-band h2 {
  margin: 0;
  font-family: var(--font-en);
  
  line-height: 1;
  color: var(--blue-dark);
}
.sponsor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.sponsor-item {
  display: grid;
  place-items: center;
  min-width: 190px;
  min-height: 84px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
font-weight: bold;
}
.sponsor-item img { max-height: 100px; }
.sponsor-item--coming {
  color: var(--muted);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .08em;
  background: repeating-linear-gradient(-45deg, #fff, #fff 8px, #f3f6fb 8px, #f3f6fb 16px);
}
.note {
  grid-column: 2;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}
.section-heading {
  margin-bottom: 34px;
}
.section-heading--center { text-align: center; }
.section-heading--white { color: #fff; }
.section-heading--white .section-title { color: #fff; }
.section-title {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .04em;
}
.section-text {
  margin: 14px 0 0;
  color: var(--muted);
}
.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* --------------------------------
   Official SNS
-------------------------------- */
.news-section {
  background: #fff;
}

.news-section .split-layout {
  align-items: center;
  gap: 48px;
}

.sns-panel {
  width: 100%;
  padding: 36px;
  background: #f6f9fc;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 54, 92, 0.08);
}

.sns-lead {
  margin: 0 0 24px;
  color: #3a4a5c;
  font-size: 16px;
  line-height: 1.8;
}

.sns-links {
  display: flex;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #dce8f2;
  border-radius: 18px;
  color: #1f2d3d;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sns-link:hover {
  transform: translateY(-3px);
  border-color: #e1306c;
  box-shadow: 0 14px 30px rgba(225, 48, 108, 0.18);
}

.sns-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.sns-icon img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.sns-text {
  display: grid;
  gap: 2px;
}

.sns-label {
  color: #005bac;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sns-account {
  color: #1f2d3d;
  font-size: 20px;
  font-weight: 800;
}

/* --------------------------------
   SP調整
-------------------------------- */
@media screen and (max-width: 768px) {
  .news-section .split-layout {
    gap: 28px;
  }

  .sns-panel {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .sns-lead {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .sns-links {
    display: block;
  }

  .sns-link {
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .sns-icon,
  .sns-icon img {
    width: 48px;
    height: 48px;
  }

  .sns-label {
    font-size: 12px;
  }

  .sns-account {
    font-size: 18px;
  }
}

.overview-section {
  position: relative;
  overflow: hidden;
}
.overview-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(43, 168, 255, .12);
}
.overview-lead {
  position: relative;
  max-width: 890px;
  margin-bottom: 38px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}
.overview-lead p { margin: 0; }
.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  min-height: 270px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 0%, #f3f8ff 100%);
  box-shadow: var(--shadow);
}
.feature-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--sky);
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
.feature-card h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-family: var(--font-en);
  font-size: 31px;
  line-height: 1;
  letter-spacing: .04em;
}
.feature-card p { margin: 0; color: var(--muted); }

.schedule-section {
  background:
    linear-gradient(135deg, rgba(0, 40, 95, .92), rgba(0, 95, 172, .88)),
    url("../img/hero.jpg") center / cover no-repeat fixed;
}
.schedule-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 32px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.schedule-date-block {
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  color: var(--blue-dark);
}
.schedule-date-block span,
.schedule-date-block small {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .12em;
}
.schedule-date-block strong {
  display: block;
  margin: 6px 0;
  font-family: var(--font-en);
  font-size: clamp(45px, 7vw, 78px);
  line-height: .9;
}
.schedule-content h3 {
  margin: 0 0 14px;
  font-size: 28px;
}
.schedule-content p { margin: 0 0 16px; }
.coming-soon {
  display: inline-flex;
  margin: 12px 0 0 !important;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* --------------------------------
   大会日程 詳細
-------------------------------- */
.schedule-card--detail {
  align-items: stretch;
}

.schedule-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.schedule-detail-day {
  display: grid;
  grid-template-columns: 140px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce8f2;
  border-radius: 16px;
}

.schedule-detail-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 20px;
  background: #005bac;
  color: #fff;
}

.schedule-detail-head span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.schedule-detail-head strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.schedule-detail-body {
  padding: 18px 22px;
}

.schedule-detail-body ul {
  margin: 0;
  padding-left: 1.2em;
}

.schedule-detail-body li {
  line-height: 1.8;
  font-weight: 600;
}

.schedule-detail-body li + li {
  margin-top: 4px;
}

.schedule-note {
  margin: 8px 0 0;
  color: #5e6f80;
  font-size: 14px;
  line-height: 1.7;
}

/* --------------------------------
   SP調整
-------------------------------- */
@media screen and (max-width: 768px) {
  .schedule-detail-list {
    gap: 14px;
    margin-top: 18px;
  }

  .schedule-detail-day {
    display: block;
    border-radius: 14px;
  }

  .schedule-detail-head {
    padding: 12px 16px;
  }

  .schedule-detail-head strong {
    font-size: 17px;
  }

  .schedule-detail-body {
    padding: 16px;
  }

  .schedule-detail-body li {
    font-size: 14px;
    line-height: 1.7;
  }

  .schedule-note {
    font-size: 13px;
  }
}

.access-section { background: #fff; }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.venue-card {
  position: relative;
  min-height: 330px;
  padding: 34px 28px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line);
}
.venue-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(0, 91, 172, .08);
}
.venue-number {
  color: var(--sky);
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}
.venue-card h3 {
  margin: 24px 0 8px;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.35;
}
.venue-card p { margin: 0; color: var(--muted); }
.venue-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.venue-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.venue-links a::after { content: "↗"; color: var(--sky); }
.venue-links a:hover { background: var(--blue); color: #fff; }

.teams-section {
  background:
    linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.team-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items:baseline;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-weight: 800;
  line-height: 1.55;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.team-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-en);
  font-size: 22px;
}
.team-card small {
  grid-column: 2;
  display: block;
  margin-top: -6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.result-section {
  background: var(--blue-deep);
  color: #fff;
}
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.result-card {
  position: relative;
  min-height: 320px;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(0, 91, 172, .8), rgba(0, 29, 61, .96));
  box-shadow: var(--shadow);
}
.result-card--photo {
  background:
    linear-gradient(145deg, rgba(0, 29, 61, .82), rgba(0, 91, 172, .78)),
    url("../img/hero-image.webp") center / cover no-repeat;
}
.result-card .section-title { color: #fff; }
.result-card strong {
  display: inline-block;
  margin-top: 26px;
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: .04em;
}
.result-card p { margin: 12px 0 0; }

.contact-section { background: var(--bg); }
.contact-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}
address {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg);
  font-style: normal;
  font-weight: 500;
}
address strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 22px;
}
address a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 38px 0;
  background: var(--blue-dark);
  color: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo { width: 230px; }
.footer-inner p { margin: 0; color: rgba(255,255,255,.7); }

@media (max-width: 1080px) {
  .global-nav a { padding-inline: 9px; font-size: 12px; }
  .header-logo { width: 190px; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; }
  .hero-card { max-width: 440px; }
  .feature-grid,
  .venue-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container,
  .header-inner,
  .hero-inner { width: min(100% - 32px, 1120px); }
  .site-header { background: rgba(255,255,255,.96); }
  .header-inner { min-height: 66px; }
  .header-logo { width: 176px; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    align-items: center;
    justify-items: end;
    position: relative;
    z-index: 1002;
    padding: 8px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--blue-dark);
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle em {
    font-family: var(--font-en);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .12em;
  }
  body.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(35deg); }
  body.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-35deg); }
  .global-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    z-index: 1001;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0, 30, 80, .16);
    transform: translateY(-120%);
    transition: transform .24s ease;
  }
  body.is-nav-open .global-nav { transform: translateY(0); }
  .global-nav ul { display: block; }
  .global-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 15px;
  }
  .hero {
    min-height: auto;
    padding: 112px 0 70px;
  }
  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 15, 45, .96) 0%, rgba(0, 35, 85, .72) 55%, rgba(0, 15, 45, .74) 100%);
  }
  .hero-title-main { font-size: clamp(70px, 22vw, 120px); }
  .hero-card { padding: 24px; }
  .sponsor-band-inner,
  .split-layout,
  .schedule-card,
  .contact-box,
  .result-grid {
    grid-template-columns: 1fr;
  }
  .note { grid-column: auto; }
  .sponsor-list { display: grid; grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .feature-grid,
  .venue-grid,
  .team-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .schedule-section { background-attachment: scroll; }
  .footer-inner { display: block; }
  .footer-logo { display: inline-block; margin-bottom: 18px; }
}

@media (max-width: 480px) {
  .container,
  .header-inner,
  .hero-inner { width: min(100% - 24px, 1120px); }
  .hero-title-sub { font-size: 22px; }
  .hero-lead { font-size: 15px; }
  .section-title { font-size: 26px; }
  .sns-panel,
  .contact-box,
  .result-card { padding: 24px; }
  .team-card { grid-template-columns: 38px 1fr; padding: 16px; }
  .team-card span { width: 38px; height: 38px; font-size: 19px; }
  .schedule-date-block strong { font-size: 46px; }
}

/* --------------------------------
   大会概要
-------------------------------- */
.overview-section {
  background: #f6f9fc;
}

.overview-table-wrap {
  margin-top: 36px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 54, 92, 0.08);
  overflow: hidden;
}

.overview-list {
  margin: 0;
}

.overview-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #dce8f2;
}

.overview-item:last-child {
  border-bottom: none;
}

.overview-item dt {
  margin: 0;
  padding: 24px 26px;
  background: #005bac;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.overview-item dd {
  margin: 0;
  padding: 24px 30px;
  color: #1f2d3d;
  line-height: 1.9;
  font-size: 15px;
}

.overview-item dd p {
  margin: 0;
}

.overview-item dd p + p {
  margin-top: 6px;
}

.overview-name-list,
.overview-text-list,
.overview-venue-list {
  margin: 0;
  padding: 0;
}

.overview-name-list {
  list-style: disc;
  columns: 2;
  column-gap: 36px;
margin-left: 1.4rem;
}

.overview-text-list {
  list-style: disc;
margin-left: 1.4rem;
}

.overview-name-list li,
.overview-text-list li,
.overview-venue-list li {
  break-inside: avoid;
  line-height: 1.9;
}



.overview-text-list--ordered,
.overview-venue-list {
  padding-left: 1.5em;
}

.overview-sub-block + .overview-sub-block {
  margin-top: 18px;
}

.overview-sub-block h3 {
  margin: 0 0 6px;
  color: #005bac;
  font-size: 16px;
  font-weight: 700;
}

.overview-note {
  color: #5e6f80;
  font-size: 14px;
}

/* --------------------------------
   SP調整
-------------------------------- */
@media screen and (max-width: 768px) {
  .overview-table-wrap {
    margin-top: 28px;
    border-radius: 18px;
  }

  .overview-item {
    display: block;
  }

  .overview-item dt {
    padding: 14px 18px;
    font-size: 14px;
  }

  .overview-item dd {
    padding: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .overview-name-list {
    columns: 1;
  }

  .overview-sub-block h3 {
    font-size: 15px;
  }

  .overview-note {
    font-size: 13px;
  }
}

.time{
background: var(--blue-dark);
color: #FFFFFF;
text-align:center;
display: block;
margin-top: 14px;
padding: 3px 0;
}

.pc{
	display: block!important;
}
.sp{
	display: none!important;
}

@media screen and (max-width: 768px) {

	.pc{
	display: none!important;
}
.sp{
	display: block!important;
}
	
}

/* --------------------------------
   大会日程 詳細
-------------------------------- */
.schedule-card--detail {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 54, 92, 0.1);
}

.schedule-content--full {
  width: 100%;
  padding: 42px;
  color: #1f2d3d;
}

.schedule-title-block {
  margin-bottom: 34px;
}

.schedule-kicker {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-content--full h3 {
  margin: 0;
  color: #1f2d3d;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
}

.schedule-period {
  display: inline-block;
  margin-top: 24px!important;
  padding: 8px 18px;
  background: #005bac;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.schedule-detail-list {
  display: grid;
  gap: 22px;
}

.schedule-detail-day {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  background: #f6f9fc;
  border: 1px solid #dce8f2;
  border-radius: 22px;
}

.schedule-detail-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 30px;
  background: #005bac;
  color: #fff;
}

.schedule-detail-head span {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.schedule-detail-head strong {
  display: block;
  margin: 10px 0 6px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.schedule-detail-head small {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.schedule-detail-body {
  padding: 30px 34px;
  color: #1f2d3d;
}

.schedule-detail-body h4 {
  margin: 0 0 10px;
  color: #005bac;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.schedule-detail-body h4:not(:first-child) {
  margin-top: 24px;
}

.schedule-detail-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-detail-body li {
  position: relative;
  margin: 0;
  padding-left: 1.15em;
  color: #1f2d3d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.schedule-detail-body li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
  color: #005bac;
  font-weight: 900;
}

.schedule-note {
  margin: 10px 0 0;
  padding-left: 1.15em;
  color: #5e6f80;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}


/* --------------------------------
   SP調整
-------------------------------- */
@media screen and (max-width: 768px) {
  .schedule-card--detail {
    border-radius: 20px;
  }

  .schedule-content--full {
    padding: 28px 20px;
  }

  .schedule-title-block {
    margin-bottom: 24px;
  }

  .schedule-content--full h3 {
    font-size: 30px;
  }

  .schedule-period {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .schedule-detail-list {
    gap: 18px;
  }

  .schedule-detail-day {
    display: block;
    border-radius: 18px;
  }

  .schedule-detail-head {
    padding: 20px;
  }

  .schedule-detail-head span {
    font-size: 14px;
  }

  .schedule-detail-head strong {
    margin: 8px 0 4px;
    font-size: 38px;
  }

  .schedule-detail-head small {
    font-size: 16px;
  }

  .schedule-detail-body {
    padding: 22px 20px;
  }

  .schedule-detail-body h4 {
    font-size: 19px;
  }

  .schedule-detail-body li {
    font-size: 15px;
  }

  .schedule-note {
    font-size: 13px;
  }
}