/* ============================================================
   INCLUSIVE DANCE FES 26-27 — Stylesheet
   ============================================================ */


/* ==========================================================
   1. Reset / Base
   ========================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background: #fff;
  font-weight: 500;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }


/* ==========================================================
   2. Utility
   ========================================================== */
.pc { display: block; }
.sp { display: none; }

@media (max-width: 750px) {
  .pc { display: none; }
  .sp { display: block; }
}


/* ==========================================================
   3. Header / Nav
   ========================================================== */
.site-header { position: relative; z-index: 30; }

.header-fixed-nav {
  position: fixed;
  top: 20px;
  right: 50px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.social-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.social-nav a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: transform .25s ease, opacity .25s ease;
}
.social-nav a:hover {
  transform: translateY(-2px);
  opacity: .68;
}
.social-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-nav ul {
  display: grid;
  gap: 5px;
  text-align: right;
}
.global-nav a {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  transition: opacity .25s ease, transform .25s ease;
}
.global-nav a:hover {
  opacity: .55;
  transform: translateX(-2px);
}

.menu-toggle,
.mobile-nav { display: none; }

/* Header responsive */
@media (max-width: 1024px) {
  .header-fixed-nav { right: 40px; }
}

@media (max-width: 750px) {
  .header-fixed-nav {
    top: 12px;
    right: 16px;
    gap: 0;
  }

  .global-nav,
  .header-fixed-nav > .social-nav { display: none; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #000;
    transition: transform .28s ease, opacity .28s ease;
  }
  .menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    transform-origin: center;
    transition:
      transform .38s cubic-bezier(.22,1,.36,1),
      opacity .24s ease,
      width .24s ease;
  }
  .menu-toggle .menu-toggle__label {
    width: auto;
    height: auto;
    background: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-top: 1px;
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.6); }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(243,241,238,.98);
    padding: 96px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    z-index: 35;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity .42s cubic-bezier(.22,1,.36,1),
      transform .42s cubic-bezier(.22,1,.36,1),
      visibility 0s linear .42s;
  }
  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition:
      opacity .42s cubic-bezier(.22,1,.36,1),
      transform .42s cubic-bezier(.22,1,.36,1),
      visibility 0s linear 0s;
  }
  .mobile-nav ul {
    display: grid;
    gap: 18px;
    text-align: center;
  }
  .mobile-nav a {
    font-size: 22px;
    font-weight: 900;
  }
  .mobile-nav ul,
  .mobile-nav .social-nav--mobile {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity .36s cubic-bezier(.22,1,.36,1),
      transform .36s cubic-bezier(.22,1,.36,1);
  }
  .mobile-nav.is-open ul {
    opacity: 1;
    transform: none;
    transition-delay: .08s;
  }
  .mobile-nav.is-open .social-nav--mobile {
    opacity: 1;
    transform: none;
    transition-delay: .16s;
  }

  .mobile-nav .social-nav--mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 35px;
    margin-top: 20px;
  }
  .mobile-nav .social-nav--mobile li { margin: 0; }
  .mobile-nav .social-nav--mobile a {
    width: 24px;
    height: 24px;
  }
}


/* ==========================================================
   4. Hero
   ========================================================== */
.hero {
  width: 100%;
  background: #f3f1ee;
}
.hero img {
  width: 100%;
  height: auto;
}

@media (max-width: 750px) {
  .hero { padding-top: 0; }
}


/* ==========================================================
   5. Section container
   ========================================================== */
section .content {
  max-width: 1230px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 1300px) {
  html, body { overflow-x: hidden; }
}

@media screen and (max-width: 1300px) and (min-width: 751px) {
  section .content {
    width: min(94%, 1180px);
    padding: 56px 0;
  }
}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  section .content {
    width: min(94%, 1040px);
    padding: 48px 0;
  }
}

@media screen and (max-width: 750px) {
  section .content {
    width: calc(95% - 32px);
    padding: 40px 0;
  }
}


/* ==========================================================
   6. #about
   ========================================================== */
#about {
  background: #e6ff00;
  padding-bottom: 60px;
}
#about .content { padding: 60px 0 0 0; }
#about .txt-area {
  width: 70%;
  margin-left: 30%;
  margin-top: -6.5%;
}
#about .txt-area p {
  font-size: 20px;
  line-height: 1.8;
}
#about .txt-area span {
  font-weight: 900;
  font-size: 24px;
}
#about .txt-area em {
  font-weight: 900;
  font-style: normal;
}
#about .day {
  background: #fff;
  font-size: 40px;
  font-weight: 900;
  padding: 20px 50px;
  margin-left: 30%;
  margin-top: 40px;
}
#about .day img { width: 70%; }

/* About responsive */
@media screen and (max-width: 1300px) and (min-width: 751px) {
  #about { padding-bottom: 56px; }
  #about .content { padding-top: 56px; }
  #about h1 { width: min(100%, 1100px); }
  #about .txt-area {
    width: 64%;
    margin-left: 32%;
    margin-top: -5%;
  }
  #about .txt-area p {
    font-size: clamp(16px, 1.55vw, 19px);
    line-height: 1.9;
  }
  #about .day {
    margin-left: 32%;
    margin-top: 32px;
    padding: 16px 32px;
  }
  #about .day img { width: min(100%, 640px); }
}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  #about .txt-area {
    width: 100%;
    margin-left: 0;
    margin-top: 28px;
  }
  #about .day {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    padding: 16px 24px;
  }
  #about .day img { width: 100%; }
}

@media screen and (max-width: 750px) {
  #about { padding-bottom: 40px; }
  #about .content { padding: 40px 0 0; }
  #about h1 { width: 100%; }
  #about .txt-area {
    width: 100%;
    margin: 24px 0 0;
  }
  #about .txt-area p {
    font-size: 16px;
    line-height: 1.8;
  }
  #about .txt-area span { font-size: 18px; }
  #about .day {
    margin: 24px 16px 0;
    padding: 16px 18px;
  }
  #about .day img { width: 100%; }
}


/* ==========================================================
   7. #workshop
   ========================================================== */
#workshop h2 { background: #49daff; }
#workshop h2 span {
  max-width: 315px;
  width: 60%;
  margin: 0 auto;
  padding: 60px 0;
  display: block;
}
#workshop .map-box { position: relative; }
#workshop .txt-area {
  border: 2px solid #000;
  padding: 20px 30px;
  margin-top: 30px;
  position: relative;
}
#workshop .txt-area p {
  font-size: 24px;
  line-height: 1.8;
}
#workshop .note {
  font-size: 15px;
  margin-top: 20px;
}

/* Workshop badges */
#workshop .workshop-badges {
  position: absolute;
  width: clamp(120px, 16vw, 230px);
  bottom: -8%;
  right: 30px;
}
#workshop .workshop-badge {
  max-width: 160px;
  width: 100%;
  height: auto;
}

/* Workshop grid / city card */
#workshop .workshop-area {
  padding: 60px 0 0;
  background: #fff;
}
#workshop .workshop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

#workshop .city-card {
  border: 2px solid #000;
  padding: 18px 10px 14px;
  box-sizing: border-box;
}
#workshop .city-card--fukuoka { background: #ffb837; }
#workshop .city-card--osaka   { background: #ff4f72; }
#workshop .city-card--nagoya  { background: #2de70b; }
#workshop .city-card--tokyo   { background: #49b4ff; }
#workshop .city-card--sapporo { background: #f8eb18; }

/* SAPPORO は枠が多いので縦方向伸縮（PC only） */
@media screen and (min-width: 751px) {
  #workshop .city-card--sapporo {
    display: flex;
    flex-direction: column;
  }
}

#workshop .city-card__title { margin: 0 0 15px; }
#workshop .city-card__place {
  margin: 12px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}
#workshop .city-card__place span { font-size: 12px; }

#workshop .city-card__btn {
  display: block;
  margin-top: 12px;
  transition: opacity .25s ease, transform .25s ease;
}
#workshop .city-card__btn:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Schedule box */
#workshop .schedule-box {
  background: #fff;
  border: 2px solid #000;
  padding: 10px 10px 12px;
  margin-bottom: 8px;
}
#workshop .schedule-box__date {
  margin: 0 0 4px;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #000;
}
#workshop .schedule-box__date span {
  font-size: 0.5em;
  font-weight: 700;
}
#workshop .schedule-box__time {
  margin: 10px 0 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
#workshop .schedule-box__genre {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  letter-spacing: 0em;
}
#workshop .schedule-box__genre span { font-size: 0.6em; }
#workshop .schedule-box__genre span.min {
  display: block;
  line-height: 1;
  margin-top: 5px;
}
#workshop .schedule-box__place {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

#workshop .schedule-box--coming {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}
#workshop .schedule-box__coming {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #333;
  letter-spacing: 0.03em;
}

/* Workshop responsive */
@media screen and (max-width: 1300px) and (min-width: 751px) {
  #workshop h2 span { padding: 48px 0; }
  #workshop h3 { width: min(100%, 920px); }
  #workshop .txt-area {
    width: 100%;
    top: -6%;
    padding: 18px;
  }
  #workshop .txt-area p {
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.75;
  }
  #workshop .workshop-area { padding: 36px 0 0; }
  #workshop .workshop-grid { gap: 12px; }
  #workshop .city-card { padding: 14px 8px 12px; }
  #workshop .city-card__title { margin-bottom: 12px; }
  #workshop .schedule-box {
    padding: 8px 8px 10px;
    margin-bottom: 7px;
  }
  #workshop .schedule-box__genre { font-size: 12px; }
  #workshop .schedule-box__date {
    font-size: clamp(20px, 2.25vw, 28px);
    letter-spacing: -0.03em;
  }
  #workshop .city-card__place {
    margin-top: 10px;
    font-size: clamp(11px, 1.2vw, 14px);
  }
  #workshop .city-card__place span {
    font-size: clamp(10px, 1vw, 12px);
  }
}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  #workshop h2 span { padding: 42px 0; }
  #workshop .map-box {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
    position: static;
    width: 100%;

  }
  #workshop .map-box > img {
    width: 100%;
    height: auto;
  }
  #workshop .txt-area {
    width: 100%;
    position: static;
    padding: 18px;
  }
  #workshop .workshop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media screen and (max-width: 750px) {
  #workshop h2 span {
    width: calc(100% - 32px);
    padding: 34px 0;
    max-width: 260px;
  }
  #workshop .content { padding-top: 32px; }
  #workshop h3 {
    width: 100%;
    max-width: none;
  }
  #workshop .map-box {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    position: static;
    width: 100%;
  }
  #workshop .map-box > img {
    width: 100%;
    height: auto;
  }
  #workshop .txt-area {
    width: 100%;
    position: static;
    border-width: 1.5px;
    padding: 16px;
  }
  #workshop .txt-area p {
    font-size: 16px;
    line-height: 1.75;
  }

  #workshop .workshop-area { padding: 32px 0 0; }

  #workshop .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
  }
  #workshop .city-card {
    padding: 16px 12px 14px;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
  }

  /* SAPPORO はSPだと全幅＋内部2カラムgrid */
  #workshop .city-card--sapporo {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  #workshop .city-card--sapporo .city-card__title {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  #workshop .city-card--sapporo .city-card__btn {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
  }
  #workshop .city-card--sapporo .schedule-box { margin-bottom: 0; }

  #workshop .city-card__title { margin-bottom: 12px; }
  #workshop .city-card__title img { width: 100%; }
  #workshop .city-card__btn {
    font-size: 15px;
  }
  #workshop .city-card__btn img { width: 100%; }
  #workshop .city-card__place {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 12px;
  }
  #workshop .city-card__place span { font-size: 11px; }

  #workshop .schedule-box {
    padding: 10px;
    margin-bottom: 10px;
  }
  #workshop .schedule-box__date  { font-size: 26px; }
  #workshop .schedule-box__time  { font-size: 14px; }
  #workshop .schedule-box__genre { font-size: 13px; }
  #workshop .schedule-box__place { font-size: 12px; }
  #workshop .schedule-box--coming { min-height: 64px; }
  #workshop .schedule-box__coming { font-size: 16px; }

  #workshop .workshop-badges {
    position: static;
    width: 140px;
    margin: 16px auto 0;
  }
}


/* ==========================================================
   8. #contest
   ========================================================== */
#contest h2 { background: #2de70b; }
#contest h2 span {
  max-width: 240px;
  width: 60%;
  margin: 0 auto;
  padding: 60px 0;
  display: block;
}
#contest h3 {
  max-width: 850px;
  width: 70%;
}
#contest .map-box {
  margin: 50px auto 0;
  position: relative;
  width: 100%;
}
#contest .txt-area {
  width: 100%;
  border: 2px solid #000;
  padding: 20px;
}
#contest .txt-area p {
  font-size: 20px;
  line-height: 1.8;
}

#contest .txt-area p.note {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 10px;
}

#contest .txt-area p.indent {
  font-size: 15px;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}


/* Contest badges */
#contest .contest-badges {
  width: clamp(120px, 16vw, 230px);
  position: absolute;
  right: 0px;
  top: -25%;
}
#contest .contest-badge {
  width: 100%;
  height: auto;
}

/* Contest grid */
#contest .contest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 50px;
}
#contest .contest-card {
  position: relative;
  overflow: visible;
}
#contest .contest-card a {
  display: block;
  transform-origin: center center;
}
#contest .contest-card img {
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  #contest .contest-card a {
    transition: transform .45s cubic-bezier(.22,1,.36,1), filter .35s ease;
    will-change: transform;
  }
  #contest .contest-card:hover a {
    transform: translateY(-6px) scale(1.035);
    filter: drop-shadow(0 16px 24px rgba(0,0,0,.14));
  }
}

/* Contest FINAL */
#contest .contest-final {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
#contest .contest-final__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Contest responsive */
@media screen and (max-width: 1300px) and (min-width: 751px) {
  #contest h2 span { padding: 48px 0; }
  #contest h3 { width: min(100%, 920px); }
  #contest .txt-area p {
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.75;
  }
  #contest .contest-grid {
    gap: 32px 28px;
    padding: 48px 0 24px;
  }
  

}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  #contest h2 span { padding: 42px 0; }
  #contest .map-box {
    display: flex;
    flex-direction: column; /* HTMLの順序どおり：txt-area → contest-guide → 地図 */
    gap: 28px;
    position: static;
    width: 100%;
    margin-top: 44px;
  }
  #contest .map-box > img {
    width: 100%;
    height: auto;
  }
  #contest .txt-area {
    width: 100%;
    position: static;
    padding: 18px;
  }
  #contest .contest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }
}

@media screen and (max-width: 750px) {
  #contest h2 span {
    width: calc(100% - 32px);
    padding: 34px 0;
    max-width: 190px;
  }
  #contest .content { padding-top: 32px; }
  #contest h3 {
    width: 100%;
    max-width: none;
  }
  #contest .map-box {
    margin-top: 30px;
    display: flex;
    flex-direction: column; /* HTMLの順序どおり。地図は class="pc" で非表示 */
    gap: 24px;
    position: static;
    width: 100%;
    padding-left: 0;
  }
  #contest .map-box > img {
    width: 100%;
    height: auto;
  }
  #contest .txt-area {
    width: 100%;
    position: static;
    border-width: 1.5px;
    padding: 16px;
  }
  #contest .txt-area p {
    font-size: 16px;
    line-height: 1.75;
  }
  #contest .contest-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
    padding: 30px 0 0;
  }
  #contest .contest-card img { width: 100%; }
  #contest .contest-badges {
    position: static;
    width: 140px;
    margin: 16px auto 0;
  }
  #contest .contest-final {
    margin-top: 30px;
    padding: 0;
  }
}


/* ==========================================================
   9. #ambassador
   ========================================================== */
#ambassador h2 { background: #ffb837; }
#ambassador h2 span {
  max-width: 375px;
  width: 60%;
  margin: 0 auto;
  padding: 60px 0;
  display: block;
}

#ambassador .ambassador-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 40px;
}

#ambassador .ambassador-card {
  height: auto;
  min-height: auto;
  display: block;
  padding: 24px 20px 28px;
  text-align: left;
}
#ambassador .ambassador-card__photo {
  width: 100%;
  margin: 0 0 20px;
}
#ambassador .ambassador-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border: 2px solid #000;
}
#ambassador .ambassador-card__name {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
#ambassador .ambassador-card__name-sub {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}
#ambassador .ambassador-card__bio {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  min-height: 240px;
}
#ambassador .ambassador-card__msg-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0em;
}
#ambassador .ambassador-card__msg {
  margin: 0;
  margin-top: -8px;
  font-size: 15px;
  line-height: 1.8;
  padding: 20px;
  border: 2px solid #000;
  box-sizing: border-box;
  min-height: 400px;
}

/* Ambassador responsive */
@media screen and (max-width: 1300px) and (min-width: 751px) {
  #ambassador h2 span { padding: 48px 0; }
  #ambassador .ambassador-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 24px;
  }
  #ambassador .ambassador-card {
    height: auto;
    min-height: auto;
  }
    #ambassador .ambassador-card__bio {
    min-height: 260px;
  }
      #ambassador .ambassador-card__msg {
    min-height: 500px;
  }
}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  #ambassador h2 span { padding: 42px 0; }
  #ambassador .ambassador-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  #ambassador .ambassador-card {
    height: auto;
    min-height: auto;
    padding: 20px 14px 24px;
  }
  #ambassador .ambassador-card__name { font-size: 22px; }
  #ambassador .ambassador-card__name-sub { font-size: 13px; }
  #ambassador .ambassador-card__bio {
    font-size: 12px;
    min-height: 180px;
  }
  #ambassador .ambassador-card__msg-title { font-size: 18px; }
  #ambassador .ambassador-card__msg {
    font-size: 12px;
    padding: 14px;
    min-height: 340px;
  }
}

@media screen and (max-width: 750px) {
  #ambassador h2 span {
    width: calc(100% - 32px);
    padding: 34px 0;
    max-width: 280px;
  }
  #ambassador .content { padding-top: 32px; }
  #ambassador .ambassador-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0;
  }
  #ambassador .ambassador-card {
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
  }
  #ambassador .ambassador-card__photo { margin-bottom: 16px; }
  #ambassador .ambassador-card__photo img {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  #ambassador .ambassador-card__name {
    font-size: 30px;
    text-align: left;
    margin-bottom: 8px;
  }
  #ambassador .ambassador-card__name-sub {
    display: inline-block;
    font-size: 14px;
    margin-left: 4px;
  }
  #ambassador .ambassador-card__bio {
    font-size: 14px;
    min-height: auto;
    margin-bottom: 16px;
  }
  #ambassador .ambassador-card__msg-title { font-size: 24px; }
  #ambassador .ambassador-card__msg {
    font-size: 14px;
    padding: 16px;
    min-height:auto;
  }
}


/* ==========================================================
   10. Footer
   ========================================================== */
.site-footer {
  background: #e6ff00;
  padding: 64px 40px 72px;
}
.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: start;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__nav a {
  color: #111;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.1;
}
.site-footer__nav a:hover { opacity: .7; }

.site-footer__info dl {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(12px, 1.25vw, 16px);
}
.site-footer__info dt {
  width: 10%;
  text-align: right;
  margin-bottom: 5px;
}
.site-footer__info dd {
  width: 77%;
  margin-bottom: 5px;
}
.site-footer__info dd.list { line-height: 1.7; }

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.site-footer__contact {
  width: 100%;
  max-width: 380px;
  min-height: 74px;
  border: 2px solid #111;
  background: #f4f4f4;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.site-footer__contact:hover { opacity: .8; }
.site-footer__contact-en {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 600;
}
.site-footer__contact-ja {
  margin-top: 4px;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 500;
}
.site-footer__note{
font-size: 13px;
margin-top: 20px;
}
.site-footer__sns {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.site-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer__sns a:hover { opacity: .7; }
.site-footer__sns img {
  width: 28px;
  height: 28px;
  display: block;
}

/* Footer responsive */
@media screen and (max-width: 1300px) and (min-width: 751px) {
  .site-footer__nav a { font-size: 18px; }
}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  .site-footer__inner {
    row-gap: 28px;
  }
  .site-footer__right {
    align-items: flex-start;
    min-height: auto;
  }
  .site-footer__sns { margin-top: 20px; }
}

@media screen and (max-width: 900px) {
  .site-footer { padding: 48px 24px 56px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .site-footer__right {
    align-items: flex-start;
    min-height: auto;
  }
  .site-footer__contact { width: 100%; }
  .site-footer__sns { margin-top: 24px; }
}

@media screen and (max-width: 750px) {
  .site-footer { padding: 36px 16px 40px; }
  .site-footer__inner {
  display: block;
    row-gap: 24px;
    padding: 0 5%;
  }
  .site-footer__nav { gap: 10px; }
  .site-footer__nav a { font-size: 16px; }

  .site-footer__info dl {
    flex-direction: column;
    display: block;
  }
  .site-footer__info dt {
    width: 100%;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .site-footer__info dd {
    width: 100%;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 10px;
    margin-left: 0;
    padding-left: 0;
  }

  .site-footer__right { align-items: stretch; }
  .site-footer__contact {
    width: 100%;
    max-width: none;
    min-height: 74px;
  }
  .site-footer__contact-en { font-size: 20px; }
  .site-footer__contact-ja { font-size: 15px; }
  .site-footer__sns {
    margin-top: 30px;
    justify-content: center;
    gap: 30px;
  }
  .site-footer__sns img {
    width: 30px;
    height: 30px;
  }
}


/* ==========================================================
   11. Animation
   ========================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.is-visible {
  opacity: 1;
  transform: none;
}

.reveal,
.reveal-pop,
.reveal-tilt {
  opacity: 0;
  will-change: transform, opacity;
  transition-property: transform, opacity, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0ms);
}
.reveal      { transform: translateY(34px); }
.reveal-pop  { transform: translateY(40px) scale(.92); }
.reveal-tilt {
  transform: translateY(42px) rotate(-2deg) scale(.94);
  transform-origin: center center;
}
.reveal.is-visible,
.reveal-pop.is-visible,
.reveal-tilt.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .reveal,
  .reveal-pop,
  .reveal-tilt,
  #contest .contest-card a,
  #contest .contest-card img,
  .social-nav a,
  .global-nav a,
  .menu-toggle span {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ==========================================================
   12. Accessibility
   ========================================================== */
body.menu-open { overflow: hidden; }

a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.global-nav a:focus-visible,
.site-footer__nav a:focus-visible,
.site-footer__contact:focus-visible {
  opacity: .7;
}

/* =============================================================
   WORKSHOP モーダル
   ============================================================= */
button.city-card__btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}
button.city-card__btn img { display: block; }

body.modal-open { overflow: hidden; }

.workshop-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.workshop-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, visibility 0s linear 0s;
}

.workshop-modal__panel {
  transform: translateY(16px) scale(.96);
  transition: transform .3s cubic-bezier(.2, .8, .25, 1), opacity .25s ease;
  opacity: 0;
}
.workshop-modal.is-open .workshop-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .workshop-modal,
  .workshop-modal__panel {
    transition: none;
  }
  .workshop-modal__panel {
    transform: none;
  }
}

.workshop-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  cursor: pointer;
}

.workshop-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  background: #ffb837;
  padding: 56px 48px 48px;
  margin: auto;
  overflow: hidden;
}

.workshop-modal__badge {
  position: absolute;
  top: 70px;
  right: 64px;
  width: 150px;
  height: auto;
  z-index: 2;
}

.workshop-modal__inner {
  position: relative;
  z-index: 1;
}

.workshop-modal--fukuoka .workshop-modal__panel { background: #ffb837; }
.workshop-modal--osaka   .workshop-modal__panel { background: #ff4f72; }
.workshop-modal--nagoya  .workshop-modal__panel { background: #2de70b; }
.workshop-modal--tokyo   .workshop-modal__panel { background: #49b4ff; }
.workshop-modal--sapporo .workshop-modal__panel { background: #f8eb18; }

.workshop-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #000;
}

.workshop-modal__header {
  margin-bottom: 18px;
}

.workshop-modal__city {
  margin: 0;
}
.workshop-modal__city img {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
}

.workshop-modal__date {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 28px;
  color: #111;
  line-height: 1.5;
}

.workshop-modal__heading {
  margin: 0 0 12px;
  line-height: 1;
}
.workshop-modal__heading img {
  display: block;
  height: 26px;
  width: auto;
}

.workshop-modal__instructors {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-instructor {
  background: #fff;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 20px;
  align-items: start;
  position: relative;
}

.modal-instructor__time {
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 8px 14px;
  border-top-right-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}

.modal-instructor__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.modal-instructor__name {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
}
.modal-instructor__name span {
  font-size: 14px;
  font-weight: 600;
}

.modal-instructor__bio {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  white-space: pre-wrap;
}

.workshop-modal__apply {
  display: block;
  width: min(100%, 420px);
  margin: 32px auto 0;
  padding: 18px 28px;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.workshop-modal__apply:hover { opacity: .85; }

@media (max-width: 768px) {
  .workshop-modal { padding: 20px 12px; }
  .workshop-modal__panel { padding: 48px 20px 28px; border-radius: 14px; }
  .workshop-modal__badge { width: 70px; top: 75px; right: 20px; }
  .workshop-modal__city img { max-width: 280px; }
  .workshop-modal__date { font-size: 18px; margin-bottom: 18px; }
  .workshop-modal__heading img { height: 20px; }
  .workshop-modal__apply { font-size: 16px; padding: 14px 20px; }
  .modal-instructor {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
  .modal-instructor__photo img { aspect-ratio: 4 / 3; }
  .modal-instructor__name { font-size: 18px; }
  .modal-instructor__time {
    position: static;
    order: 1;
    justify-self: end;
    font-size: 12px;
    padding: 6px 10px;
    border-top-right-radius: 0;
  }
}


/* ==========================================================
   13. #news (トップページ)
   ========================================================== */
#news { background: #fff; }
#news .content { padding: 0 0 60px; }

.news__head { text-align: center; padding: 60px 0; margin: 0; }
.news__head img {
  width: 150px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.news__divider {
  border-top: 1px solid #111;
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 44px;
  margin-left: calc(50% - 50vw);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card { margin: 0; }
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  border: 2px solid #000;
  padding: 20px;
  transition: box-shadow .25s ease, transform .25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news-card__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  }
}

.news-card__thumb {
  width: 100%;
  overflow: hidden;
}
.news-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-card__date {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  letter-spacing: .02em;
}
.news-card__title {
  margin: 5px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.news-card__btn {
  display: block;
  margin: auto 0 0;
  padding-top: 20px;
}
.news-card__btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* News responsive */
@media screen and (max-width: 1300px) and (min-width: 751px) {
  .news__head { padding: 48px 0; }
}

@media screen and (max-width: 1100px) and (min-width: 751px) {
  .news__head { padding: 42px 0; }
  .news-grid { gap: 28px; }
  .news-card__title { font-size: 16px; }
}

@media screen and (max-width: 750px) {
  #news .content { padding: 0 0 40px; }
  .news__head { padding: 34px 0; }
  .news__head img { width: 125px; }
  .news__divider { margin-bottom: 32px; }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-card__date { font-size: 16px; }
 .news-card__title { font-size: 18px; }
}


/* ==========================================================
   14. GUEST SHOWCASE ページ
   ========================================================== */
.guest-showcase {
  --gs-pink: #fb5573;
  --gs-yellow: #e6ff00;
}

/* コンテンツ幅をトップページ（section .content）に合わせる
   ※GSの .content は section 自身に付くため section .content では当たらない */
.guest-showcase .content {
  max-width: 1230px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) and (min-width: 751px) {
  .guest-showcase .content,
  .guest-showcase .gs-band--deadline { width: min(94%, 1180px); }
}
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .guest-showcase .content,
  .guest-showcase .gs-band--deadline { width: min(94%, 1040px); }
}
@media screen and (max-width: 750px) {
  .guest-showcase .content,
  .guest-showcase .gs-band--deadline { width: calc(95% - 32px); }
}

/* ピンク帯 */
.gs-band {
  background: var(--gs-pink);
  text-align: center;
}
/* ヘッダー帯：全幅・ボーダーなし */
.gs-band--head { padding: 30px 16px; }
.gs-band__title {
  width: min(86%, 550px);
  height: auto;
  margin: 0 auto;
  display: block;
}
/* 締切帯：コンテンツ幅・1px黒ボーダー */
.gs-band--deadline {
  padding: 34px 16px;
  max-width: 1230px;
  width: 90%;
  margin: 30px auto 80px;
  border: 1px solid #000;
}
.gs-band__deadline {
  width: min(88%, 660px);
  height: auto;
  margin: 0 auto;
}

/* イントロ */
.gs-intro {
  text-align: center;
  padding: 56px 0 48px;
}
.gs-intro__catch img {
  width: min(82%, 800px);
  height: auto;
  margin: 0 auto;
}
.gs-intro__title {
  margin: 0;
}
.gs-intro__title img {
  width: 94%;
  height: auto;
  margin: 20px auto 0;
}
.gs-intro__date {
  margin: 28px 0 0;
}
.gs-intro__date img {
  width: min(86%, 900px);
  height: auto;
  margin: 0 auto;
}

/* ゲストクルー */
.gs-crew { padding: 0 0 50px; }
.gs-crew__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.gs-crew__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.gs-crew__name {
  margin: -22px 0 0 -14px;
  position: relative;
  z-index: 1;
}
.gs-crew__name img {
  height: 48px;
  width: auto;
  display: block;
}
.gs-crew__desc {
  margin: 14px 0 0;
  font-size: 22px;
  font-weight: 700;
}

/* 募集要項 見出し（左右に罫線） */
.gs-heading {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
}
.gs-heading::before,
.gs-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #111;
}
.gs-heading span {
  padding: 0 30px;
  font-size: 35px;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* 募集要項 ボックス群 */
.gs-reqs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-top: 40px;
}
.gs-req {
  border: 1px solid #000;
  padding: 35px 32px;
  min-width: 0;
}
.gs-req__head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 30px;
}
.gs-req__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.gs-req__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
}

.gs-req__body p {
  font-size: 18px;
  line-height: 1.8;
}
.gs-indent { padding-left: 1.2em; }
.gs-num { padding-left: 1.5em; text-indent: -1.5em; }

.gs-check {
  display: grid;
  gap: 12px;
}
.gs-check li {
  position: relative;
  padding-left: 1.9em;
  font-size: 18px;
  line-height: 1.7;
}
.gs-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 1.3em;
  height: 1.3em;
  background: url("../img/icon_check.svg") center/contain no-repeat;
}

.gs-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* 応募ボックス（RHT. / Twiggz Fam） */
.gs-entry__title {
  color: var(--gs-pink);
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 25px;
}
.gs-entry__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.gs-entry__label {
  font-size: 24px;
  font-weight: 700;
}
.gs-entry__date {
  margin: 6px 0 0;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}
.gs-entry__date span {
  font-size: .45em;
  font-weight: 700;
}
.gs-entry__date .gs-narrow {
  display: inline-block;
  transform: scaleX(.8);
  transform-origin: left center;
}
.gs-entry__time {
  margin: 8px 0 0;
  font-size: 35px;
  font-weight: 700;
}
.gs-entry__place {
  margin: 4px 0 0;
  font-size: 23px;
  font-weight: 700;
}
.gs-entry__photo {
  width: 220px;
  max-width: 100%;
  flex-shrink: 0;
}
.gs-entry__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.gs-entry__btn {
  display: block;
  width: min(100%, 400px);
  margin: 35px auto 0;
  transition: opacity .25s ease, transform .25s ease;
}
.gs-entry__btn img {
  width: 100%;
  height: auto;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .gs-entry__btn:hover {
    opacity: .85;
    transform: translateY(-2px);
  }
}

/* GUEST SHOWCASE responsive */
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .gs-crew__grid { gap: 32px; }
  .gs-req { padding: 24px; }
  .gs-heading span { font-size: 26px; }
}

@media screen and (max-width: 750px) {
  .gs-band--head { padding: 22px 16px; }
  .gs-band--deadline { padding: 20px 10px; margin: 20px auto 60px; }
  .gs-band__title { width: min(65%, 550px); }

  .gs-intro { padding: 40px 0 36px; }
  .gs-intro__catch img,
  .gs-intro__date img { width: 100%; }
  .gs-intro__title img { width: 100%; margin-top: 16px; }

  .gs-crew__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gs-crew__name { margin-top: -24px; }
  .gs-crew__name img { height: 40px; }
  .gs-crew__desc { font-size: 18px; }

  .gs-heading span { font-size: 30px; padding: 0 16px; }

  .gs-reqs {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 28px;
  }
  .gs-req { padding: 22px 20px; }
  .gs-req__head { gap: 20px; margin-bottom: 20px; }
  .gs-req__icon { width: 70px; height: 70px; }
  .gs-req__title { font-size: 20px; }
  .gs-req__title span{font-size: 18px;}

  .gs-entry__title { font-size: 20px; }
  .gs-entry__title span { font-size: 18px; }
  .gs-entry__label { font-size: 16px; }
  .gs-entry__date { font-size: 40px; }
  .gs-entry__time { font-size: 20px; }
  .gs-entry__place { font-size: 16px; }
  .gs-entry__photo { width: 120px; }
}


/* ==========================================================
   15. CONTEST 募集要項導線 / 地区予選モーダル
   ========================================================== */

/* --- 説明ボックス内の募集要項まとめ（スライド1） --- */
#contest .contest-box { margin-bottom: 50px; }
#contest .contest-box__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin: 28px 0 16px;
}
#contest .contest-box__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
}
#contest .contest-box__cta-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
#contest .contest-box .contest-guide__btn {
  flex-shrink: 0;
  min-width: 320px;
}

@media screen and (max-width: 750px) {
  #contest .contest-box__title { font-size: 19px; }
  #contest .contest-box__cta-text { font-size: 15px; }
  #contest .contest-box .contest-guide__btn { min-width: 0; width: 100%; }
}

/* --- 募集要項への導線バナー（未使用・予備） --- */
.contest-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 2px solid #000;
  padding: 24px 28px;
  margin: 50px 0;
  background: #fff;
}
.contest-guide__lead {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}
.contest-guide__sub {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
}
.contest-guide__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: opacity .25s ease, transform .25s ease;
}
.contest-guide__btn::after { content: "▶"; font-size: .8em; margin-left: 10px; }
@media (hover: hover) and (pointer: fine) {
  .contest-guide__btn:hover { opacity: .85; transform: translateY(-2px); }
}

.contest-grid__label {
  margin: 50px 0 -20px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
}

/* --- カードのクリック領域 --- */
.contest-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .45s cubic-bezier(.22,1,.36,1), filter .35s ease;
}
.contest-card__open img { width: 100%; height: auto; }
.contest-card__cta {
  display: block;
  margin-top: 10px;
  padding: 12px 10px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}
.contest-card__cta::after { content: "▶"; font-size: .8em; margin-left: 8px; }
@media (hover: hover) and (pointer: fine) {
  .contest-card__open:hover {
    transform: translateY(-6px) scale(1.035);
    filter: drop-shadow(0 16px 24px rgba(0,0,0,.14));
  }
}

/* --- モーダル土台（ワークショップモーダルと同じ挙動） --- */
.cmodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.cmodal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, visibility 0s linear 0s;
}
.cmodal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  cursor: pointer;
}
.cmodal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  overflow: hidden;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.25,1), opacity .25s ease;
}
.cmodal.is-open .cmodal__panel { transform: none; opacity: 1; }

.cmodal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 4px 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #000;
  z-index: 3;
}
.cmodal__close-x {
  font-size: 30px;
  line-height: 1;
}
.cmodal__close-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}
.cmodal__close:hover { opacity: .6; }

/* --- ヘッダー（地域カラー） --- */
.cmodal__head {
  padding: 30px 40px 26px;
  text-align: center;
}
.cmodal__head--tokyo   { background: #49b4ff; }
.cmodal__head--sapporo { background: #f8eb18; }
.cmodal__head--osaka   { background: #ff4f72; }
.cmodal__head--nagoya  { background: #2de70b; }
.cmodal__head--fukuoka { background: #ffb837; }
.cmodal__head--online  { background: #c9a6ff; }

.cmodal__logo {
  width: min(80%, 500px);
  height: auto;
  margin: 0 auto 10px;
}
.cmodal__title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .04em;
}

.cmodal__body { padding: 34px 40px 40px; }

/* --- 日程・会場 --- */
.cmodal__key {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid #ddd;
}
.cmodal__key-item {
  display: contents;
}
.cmodal__key-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #000;
  padding: 6px 14px;
  align-self: start;
  white-space: nowrap;
}
.cmodal__key-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

/* --- エントリーCTA --- */
.cmodal__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  padding: 22px 26px;
  background: #f5f5f5;
  border: 2px solid #000;
}
.cmodal__cta-period {
  font-size: 15px;
  font-weight: 700;
}
.cmodal__cta-period strong {
  display: block;
  margin-top: 4px;
  font-size: 21px;
  font-weight: 900;
}
.cmodal__cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 18px 30px;
  background: #e6ff00;
  border: 2px solid #000;
  color: #000;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .03em;
  border-radius: 999px;
  transition: opacity .25s ease, transform .25s ease;
}
.cmodal__cta-btn::after { content: "▶"; font-size: .8em; margin-left: 10px; }
@media (hover: hover) and (pointer: fine) {
  .cmodal__cta-btn:hover { opacity: .85; transform: translateY(-2px); }
}

/* --- セクション --- */
.cmodal__sec { margin-top: 36px; }
.cmodal__sec-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .04em;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid #000;
}
.cmodal__sec-sub { font-size: .7em; font-weight: 700; }
.cmodal__lead {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- 定義リスト（多列グリッド） --- */
.cmodal__dl { display: grid; gap: 18px 26px; }
.cmodal__dl--1 { grid-template-columns: minmax(0, 1fr); }
.cmodal__dl--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cmodal__dl--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cmodal__dl--tight { margin-top: 20px; gap: 12px 26px; }
.cmodal__dl-item { min-width: 0; }
.cmodal__dl dt {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 6px;
  padding-left: 12px;
  border-left: 4px solid #000;
  line-height: 1.3;
}
.cmodal__dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}
.cmodal__note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}
.cmodal__tbd { color: #888; }

/* --- タイムテーブル（1列・時刻｜内容の行組み） --- */
.cmodal__time {
  display: grid;
  grid-template-columns: 1fr;
}
.cmodal__time li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 14px 8px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 16px;
  line-height: 1.5;
}
.cmodal__time-t {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}
.cmodal__time-c { font-weight: 500; }

/* --- アクセス（地図＋交通手段の2列） --- */
.cmodal__access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}
.cmodal__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}
.cmodal__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- 人物カード（3列） --- */
.cmodal__people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cmodal__person { min-width: 0; }
.cmodal__person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid #000;
  background: #f0f0f0;
}
.cmodal__person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cmodal__person-photo--tbd {
  display: grid;
  place-items: center;
  border-style: dashed;
  border-color: #bbb;
  color: #aaa;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}
.cmodal__person-role {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 12px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.cmodal__person-role + .cmodal__person-name { margin-top: 6px; }

/* MC / DJ は横型カード（左：写真小 ／ 右：バッジ＋名前）を2列で */
.cmodal__people--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cmodal__people--pair .cmodal__person {
  display: grid;
  grid-template-columns: 108px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 6px 18px;
  align-items: start;
}
.cmodal__people--pair .cmodal__person-photo {
  grid-row: 1 / 4;
  width: 108px;
  aspect-ratio: 1 / 1;
}
.cmodal__people--pair .cmodal__person-role {
  grid-row: 1;
  margin-top: 0;
  justify-self: start;
}
.cmodal__people--pair .cmodal__person-name {
  grid-row: 2;
  margin-top: 0;
}
.cmodal__person-name {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 900;
}
.cmodal__person-bio {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.7;
}
.cmodal__person-bio--tbd { color: #888; }

/* --- フッター --- */
.cmodal__foot {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid #000;
  text-align: center;
}
.cmodal__foot-links {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
}
.cmodal__foot-links a { text-decoration: underline; }
.cmodal__foot-links a:hover { opacity: .7; }
.cmodal__foot-sep { margin: 0 8px; color: #999; }

@media (prefers-reduced-motion: reduce) {
  .cmodal, .cmodal__panel, .contest-card__open { transition: none; }
  .cmodal__panel { transform: none; }
}

/* --- CONTEST モーダル レスポンシブ --- */
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .cmodal__body { padding: 30px 28px 34px; }
  .cmodal__dl--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media screen and (max-width: 750px) {
  .contest-guide {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
    margin-top: 0;
    gap: 16px;
  }
  .contest-guide__lead { font-size: 18px; }
  .contest-guide__sub { font-size: 14px; }
  .contest-guide__btn { width: 100%; min-width: 0; padding: 14px 20px; }
  .contest-grid__label { font-size: 28px; margin: 0; }
  .contest-card__cta { font-size: 14px; padding: 10px; }

  .cmodal { padding: 16px 10px; }
  .cmodal__panel { border-radius: 12px; }
  .cmodal__head { padding: 24px 20px 20px; }
  .cmodal__logo { width: 86%; }
  .cmodal__title { font-size: 22px; }
  .cmodal__body { padding: 24px 18px 30px; }

  .cmodal__key {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 20px;
  }
  .cmodal__key-item {
    display: block;
    margin-bottom: 12px;
  }
  .cmodal__key-label { display: inline-block; margin-bottom: 6px; font-size: 13px; }
  .cmodal__key-value { font-size: 17px; }

  .cmodal__cta { padding: 18px; gap: 14px; }
  .cmodal__cta-period { font-size: 14px; }
  .cmodal__cta-period strong { font-size: 17px; }
  .cmodal__cta-btn { width: 100%; min-width: 0; font-size: 16px; padding: 15px 20px; }

  .cmodal__sec { margin-top: 28px; }
  .cmodal__sec-title { font-size: 17px; }
  .cmodal__dl--2,
  .cmodal__dl--3 { grid-template-columns: 1fr; }
  .cmodal__dl { gap: 16px; }
  .cmodal__dl dd { font-size: 14px; }

  .cmodal__time li { grid-template-columns: 104px 1fr; gap: 12px; font-size: 14px; padding: 11px 4px; }

  .cmodal__access { grid-template-columns: 1fr; gap: 18px; }
  .cmodal__map { aspect-ratio: 16 / 11; }

  .cmodal__people { grid-template-columns: 1fr; gap: 20px; }
  .cmodal__person {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 4px 14px; /* 行4px（名前↔プロフ） / 列14px（写真↔テキスト） */
    align-items: start;
  }
  .cmodal__person-name { margin-top: 0; font-size: 17px; }
  .cmodal__person-bio { margin-top: 0; }
  .cmodal__person-photo { grid-row: span 3; }

  .cmodal__foot { margin-top: 30px; padding-top: 22px; }
  .cmodal__foot-links { font-size: 13px; }
}


/* ==========================================================
   16. 募集要項ページ（contest-guideline.html）
   ========================================================== */
.guideline { --gl-green: #2de70b; }

/* --- タイトル帯（全幅） --- */
.gl-band {
  background: var(--gl-green);
  text-align: center;
  padding: 44px 20px 40px;
}
.gl-band__en img {
  width: min(88%, 500px);
  height: auto;
  margin: 0 auto;
}
.gl-band__title {
  margin-top: 8px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
}

/* --- コンテンツ幅（トップページに合わせる） --- */
.gl-inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 56px 0 80px;
}

/* --- リード --- */
.gl-lead p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
}
.gl-lead p:last-child { margin-bottom: 0; }

/* --- 目次 --- */
.gl-toc {
  margin-top: 44px;
  border: 2px solid #000;
  padding: 26px 30px 28px;
  background: #fafafa;
}
.gl-toc__title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.gl-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 0;
  padding: 0; /* ol のブラウザ既定インデントを解除 */
  list-style: none;
  counter-reset: toc;
}
.gl-toc__list li { counter-increment: toc; }
.gl-toc__list a {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gl-toc__list a::before {
  content: counter(toc, decimal-leading-zero) ". ";
  font-weight: 900;
  text-decoration: none;
}
.gl-toc__list a:hover { opacity: .6; }

/* --- セクション --- */
.gl-sec {
  margin-top: 60px;
  scroll-margin-top: 24px;
}
.gl-sec__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .04em;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 3px solid #000;
}
.gl-sec__num {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  padding: 6px 10px;
  background: #000;
  color: var(--gl-green);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
}
.gl-sub {
  margin: 32px 0 14px;
  font-size: 19px;
  font-weight: 900;
  padding-left: 14px;
  border-left: 5px solid var(--gl-green);
  line-height: 1.4;
}
/* セクション見出しの「直後」に来るサブ見出しだけ上マージンを詰める */
.gl-sec__title + .gl-sub { margin-top: 0; }

.gl-text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* --- 定義リスト --- */
.gl-dl { display: grid; gap: 2px; }
.gl-dl__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #f4f4f4;
}
.gl-dl__item dt {
  padding: 18px 20px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}
.gl-dl__item dd {
  margin: 0;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.85;
  background: #fff;
  border: 1px solid #ddd;
  border-left: 0;
}

/* --- テーブル --- */
.gl-table-wrap { overflow-x: auto; }
.gl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
}
.gl-table th,
.gl-table td {
  border: 1px solid #ccc;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.gl-table thead th {
  background: #000;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}
.gl-table tbody th {
  background: #f4f4f4;
  font-weight: 900;
  width: 30%;
}
.gl-table--schedule tbody th { width: auto; white-space: nowrap; }
.gl-table--judge tbody td { width: 120px; text-align: center; white-space: nowrap; }

.gl-ok,
.gl-ng {
  display: inline-block;
  min-width: 62px;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.gl-ok { background: var(--gl-green); }
.gl-ng { background: #eee; color: #777; }

/* --- リスト・注記 --- */
.gl-list {
  display: grid;
  gap: 10px;
  list-style: none;
}
.gl-list li {
  position: relative;
  padding-left: 1.3em;
  font-size: 15px;
  line-height: 1.85;
}
.gl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  background: #000;
}
.gl-list--check li::before {
  width: 1em;
  height: 1em;
  top: .35em;
  background: url("../img/icon_check.svg") center/contain no-repeat;
}
.gl-list--check li { padding-left: 1.7em; }

.gl-notes {
  margin-top: 14px;
  display: grid;
  gap: 6px;
  list-style: none;
}
.gl-notes li {
  position: relative;
  padding-left: 1.3em;
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}
.gl-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.gl-note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

/* --- 強調ブロック --- */
.gl-highlight {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--gl-green);
  border: 2px solid #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}
.gl-highlight strong { font-size: 1.2em; font-weight: 900; }

.gl-callout {
  margin-top: 22px;
  padding: 20px 24px;
  border: 2px solid #000;
  background: #fafafa;
}
.gl-callout__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}
.gl-callout p { font-size: 15px; line-height: 1.8; }

/* --- カード（エントリー方式） --- */
.gl-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.gl-card {
  border: 2px solid #000;
  padding: 24px 26px 26px;
}
.gl-card__label {
  display: inline-block;
  padding: 4px 12px;
  background: #000;
  color: var(--gl-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}
.gl-card__title {
  margin: 12px 0 12px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
}
.gl-card__title span { font-size: .7em; }
.gl-card p { font-size: 15px; line-height: 1.85; }

/* --- ステップ --- */
.gl-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0; /* ol のブラウザ既定インデントを解除 */
  list-style: none;
  counter-reset: step;
}
.gl-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #ccc;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.7;
}
.gl-steps__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: var(--gl-green);
  font-size: 15px;
  font-weight: 900;
}

/* --- 審査基準 --- */
.gl-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.gl-score__block {
  border: 2px solid #000;
  padding: 26px 28px 28px;
  text-align: center;
}
.gl-score__block--main { background: var(--gl-green); }
.gl-score__pct {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}
.gl-score__pct span { font-size: .45em; margin-left: 2px; }
.gl-score__label {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
}
.gl-score__items {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  list-style: none;
  text-align: left;
}
.gl-score__items li {
  background: #fff;
  border: 1px solid #000;
  padding: 12px 16px;
}
.gl-score__items strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
}
.gl-score__items span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

/* --- フッターCTA --- */
.gl-foot {
  margin-top: 70px;
  padding-top: 36px;
  border-top: 3px solid #000;
  text-align: center;
}
.gl-foot__text { font-size: 15px; line-height: 1.8; }
.gl-foot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  margin-top: 20px;
  padding: 18px 32px;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: opacity .25s ease, transform .25s ease;
}
.gl-foot__btn::after { content: "▶"; font-size: .8em; margin-left: 10px; }
@media (hover: hover) and (pointer: fine) {
  .gl-foot__btn:hover { opacity: .85; transform: translateY(-2px); }
}

/* --- 募集要項ページ レスポンシブ --- */
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .gl-inner { width: min(94%, 1000px); }
  .gl-dl__item { grid-template-columns: 180px 1fr; }
}

@media screen and (max-width: 750px) {
  .gl-band { padding: 30px 16px 28px; }
  .gl-band__en img { width: 82%; }
  .gl-band__title { font-size: 30px; }

  .gl-inner {
    width: calc(95% - 24px);
    padding: 36px 0 56px;
  }
  .gl-lead p { font-size: 15px; line-height: 1.9; margin-bottom: 16px; }

  .gl-toc { margin-top: 32px; padding: 20px; }
  .gl-toc__list { grid-template-columns: 1fr; gap: 10px; }

  .gl-sec { margin-top: 44px; }
  .gl-sec__title {
    font-size: 20px;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  .gl-sec__num { min-width: 42px; font-size: 15px; padding: 5px 8px; }
  .gl-sub { font-size: 17px; margin: 26px 0 12px; }

  .gl-dl__item { grid-template-columns: 1fr; }
  .gl-dl__item dt { padding: 12px 16px; font-size: 14px; }
  .gl-dl__item dd {
    padding: 14px 16px;
    font-size: 14px;
    border-left: 1px solid #ddd;
    border-top: 0;
  }

  .gl-table { font-size: 14px; }
  .gl-table th,
  .gl-table td { padding: 11px 12px; }
  .gl-table tbody th { width: auto; }
  .gl-table--schedule { min-width: 560px; }
  .gl-table--judge tbody td { width: 90px; }

  .gl-list li,
  .gl-text,
  .gl-callout p,
  .gl-card p { font-size: 14px; }

  .gl-highlight { font-size: 15px; padding: 14px 16px; }

  .gl-cards { grid-template-columns: 1fr; gap: 16px; }
  .gl-card { padding: 20px; }
  .gl-card__title { font-size: 18px; }

  .gl-steps li { font-size: 14px; padding: 12px 14px; gap: 12px; }
  .gl-steps__num { width: 30px; height: 30px; font-size: 14px; }

  .gl-score { grid-template-columns: 1fr; gap: 16px; }
  .gl-score__block { padding: 22px 20px; }
  .gl-score__pct { font-size: 52px; }

  .gl-foot { margin-top: 50px; padding-top: 28px; }
  .gl-foot__btn { min-width: 0; width: 100%; font-size: 15px; padding: 16px 20px; }
}


/* ==========================================================
   17. エントリーフォーム（entry-*.html）
   ========================================================== */
.entry { --ef-color: #49b4ff; }
.entry--tokyo   { --ef-color: #49b4ff; }
.entry--sapporo { --ef-color: #f8eb18; }
.entry--osaka   { --ef-color: #ff4f72; }
.entry--nagoya  { --ef-color: #2de70b; }
.entry--fukuoka { --ef-color: #ffb837; }
.entry--online  { --ef-color: #c9a6ff; }

/* --- タイトル帯 --- */
.ef-band {
  background: var(--ef-color);
  text-align: center;
  padding: 40px 20px 36px;
}
.ef-band__logo img {
  width: min(88%, 500px);
  height: auto;
  margin: 0 auto 10px;
}
.ef-band__title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.3;
}

.ef-inner {
  max-width: 860px;
  width: 90%;
  margin: 0 auto;
  padding: 44px 0 80px;
}

/* --- ステップ --- */
.ef-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.ef-steps__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  border: 2px solid #ddd;
  color: #aaa;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
}
.ef-steps__num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  font-size: 14px;
}
.ef-steps__item.is-current {
  border-color: #000;
  background: #000;
  color: #fff;
}
.ef-steps__item.is-current .ef-steps__num {
  background: var(--ef-color);
  color: #000;
}
.ef-steps__item.is-done {
  border-color: #000;
  color: #000;
}
.ef-steps__item.is-done .ef-steps__num { background: #000; color: #fff; }

/* --- リード --- */
.ef-lead p {
  font-size: 15px;
  line-height: 1.9;
}
.ef-lead__meta {
  display: grid;
  gap: 2px;
  margin: 20px 0 14px;
}
.ef-lead__meta > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  background: #f4f4f4;
  border: 1px solid #ddd;
}
.ef-lead__meta dt {
  padding: 12px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.ef-lead__meta dd {
  margin: 0;
  padding: 12px 16px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}
/* ハニーポット（スパム対策・画面外に隠す。display:none にしないのはbot回避のため） */
.ef-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ef-tbd { color: #888; font-weight: 500; }
.ef-note-inline { font-size: 13px; font-weight: 500; color: #555; margin-left: 4px; }
.ef-lead__link { font-size: 14px; }
.ef-lead__link a { text-decoration: underline; font-weight: 700; }
.ef-lead__link a:hover { opacity: .7; }

/* --- 出場地区（固定表示） --- */
.ef-fixed {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 34px;
  padding: 18px 22px;
  border: 2px solid #000;
  background: var(--ef-color);
}
.ef-fixed__label {
  font-size: 14px;
  font-weight: 900;
  padding: 5px 12px;
  background: #000;
  color: #fff;
}
.ef-fixed__value {
  font-size: 22px;
  font-weight: 900;
}
.ef-fixed__change {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}
.ef-fixed__change:hover { opacity: .7; }

/* --- グループ --- */
.ef-group {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
}
.ef-group__title {
  display: block;
  width: 100%;
  padding: 0 0 10px;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .04em;
  border-bottom: 3px solid #000;
}

/* --- フィールド --- */
.ef-field {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e2e2e2;
  align-items: start;
}
.ef-label {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  padding-top: 12px;
}
.ef-req,
.ef-any {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  vertical-align: 2px;
}
.ef-req { background: #e5004f; color: #fff; }
.ef-any { background: #eee; color: #666; }

.ef-control { min-width: 0; }
.ef-control input[type="text"],
.ef-control input[type="email"],
.ef-control input[type="tel"],
.ef-control input[type="number"],
.ef-control textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ccc;
  border-radius: 0;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.ef-control textarea { resize: vertical; }
.ef-control input:focus,
.ef-control textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}
.ef-control input::placeholder,
.ef-control textarea::placeholder { color: #b5b5b5; }

.ef-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ef-input--num { max-width: 140px; }
.ef-unit { font-size: 15px; font-weight: 700; }

.ef-note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}
.ef-note a { text-decoration: underline; }

.ef-error {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: #e5004f;
}
.ef-error:empty { display: none; }
.ef-field.is-error input,
.ef-field.is-error textarea { border-color: #e5004f; background: #fff6f9; }

/* --- 同意 --- */
.ef-agree {
  margin-top: 34px;
  padding: 24px 26px;
  border: 2px solid #000;
  background: #fafafa;
}
.ef-field--agree {
  display: block;
  padding: 8px 0;
  border-bottom: 0;
}
.ef-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.7;
}
.ef-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: #000;
  cursor: pointer;
}
.ef-check a { text-decoration: underline; font-weight: 700; }
.ef-check a:hover { opacity: .7; }

.ef-summary-error {
  margin-top: 24px;
  padding: 14px 18px;
  border: 2px solid #e5004f;
  background: #fff6f9;
  color: #e5004f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.ef-summary-error a { text-decoration: underline; }

/* --- ボタン --- */
.ef-submit {
  margin-top: 40px;
  text-align: center;
}
.ef-submit--two {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ef-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 20px 32px;
  border: 2px solid #000;
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}
.ef-btn--primary {
  background: #000;
  color: #fff;
}
.ef-btn--primary::after { content: "▶"; font-size: .8em; margin-left: 10px; }
.ef-btn--back {
  background: #fff;
  color: #000;
}
.ef-btn[disabled] { opacity: .5; cursor: not-allowed; }
@media (hover: hover) and (pointer: fine) {
  .ef-btn:not([disabled]):hover { opacity: .85; transform: translateY(-2px); }
}

/* --- 確認画面 --- */
.ef-confirm {
  display: grid;
  gap: 2px;
  margin-top: 30px;
}
.ef-confirm__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 1px solid #ddd;
}
.ef-confirm__row dt {
  padding: 16px 18px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}
.ef-confirm__row dd {
  margin: 0;
  padding: 16px 18px;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  word-break: break-word;
  white-space: pre-wrap;
}
.ef-confirm__row dd.is-empty { color: #aaa; font-weight: 500; }

/* --- 完了画面 --- */
.ef-complete {
  margin-top: 20px;
  padding: 44px 40px;
  border: 3px solid #000;
  background: var(--ef-color);
  text-align: center;
}
.ef-complete__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
}
.ef-complete__text {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.9;
}
.ef-complete__note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
  background: rgba(255,255,255,.75);
  padding: 14px 16px;
}

.ef-complete-next { margin-top: 44px; }
.ef-complete-next__title {
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 3px solid #000;
}
.ef-flow {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.ef-flow li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid #ccc;
  font-size: 15px;
  line-height: 1.7;
}
.ef-flow__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

/* --- エントリーフォーム レスポンシブ --- */
@media screen and (max-width: 750px) {
  .ef-band { padding: 26px 16px 24px; }
  .ef-band__logo img { width: 84%; }
  .ef-band__title { font-size: 22px; }

  .ef-inner {
    width: calc(95% - 24px);
    padding: 30px 0 56px;
  }

  .ef-steps { gap: 4px; margin-bottom: 28px; }
  .ef-steps__item {
    flex-direction: column;
    gap: 4px;
    padding: 10px 4px;
    font-size: 12px;
  }
  .ef-steps__num { width: 22px; height: 22px; font-size: 12px; }

  .ef-lead p { font-size: 14px; }
  .ef-lead__meta > div { grid-template-columns: 1fr; }
  .ef-lead__meta dt { padding: 8px 14px; font-size: 13px; }
  .ef-lead__meta dd { padding: 12px 14px; font-size: 14px; }

  .ef-fixed { padding: 14px 16px; gap: 10px 14px; }
  .ef-fixed__value { font-size: 18px; }
  .ef-fixed__change { margin-left: 0; width: 100%; }

  .ef-group__title { font-size: 17px; }
  .ef-field {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
  .ef-label { padding-top: 0; font-size: 14px; }
  .ef-control input[type="text"],
  .ef-control input[type="email"],
  .ef-control input[type="tel"],
  .ef-control input[type="number"],
  .ef-control textarea { padding: 12px 14px; }

  .ef-agree { padding: 18px; margin-top: 28px; }
  .ef-check { font-size: 14px; gap: 10px; }

  .ef-submit { margin-top: 30px; }
  .ef-submit--two { flex-direction: column-reverse; gap: 12px; }
  .ef-btn {
    min-width: 0;
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }

  .ef-confirm__row { grid-template-columns: 1fr; }
  .ef-confirm__row dt { padding: 10px 14px; font-size: 13px; }
  .ef-confirm__row dd { padding: 14px; font-size: 15px; }

  .ef-complete { padding: 28px 20px; }
  .ef-complete__title { font-size: 20px; }
  .ef-complete__text { font-size: 14px; }
  .ef-complete__note { font-size: 12px; }

  .ef-complete-next { margin-top: 34px; }
  .ef-complete-next__title { font-size: 17px; }
  .ef-flow li { font-size: 14px; padding: 12px 14px; gap: 12px; }
}


/* ==========================================================
   18. 文書ページ（大会規約 / 個人情報の取り扱い）
   ※レイアウトは募集要項ページの .gl-* を流用。差分のみここに定義
   ========================================================== */
.gl-band--doc { background: #f3f1ee; }
.gl-band__label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #666;
}

/* 準備中ブロック（原稿が入ったら削除する想定） */
.gl-callout--wip {
  margin-top: 0;
  border-style: dashed;
  border-color: #aaa;
  text-align: center;
}
.gl-callout--wip .gl-callout__title {
  font-size: 18px;
  margin-bottom: 10px;
}
.gl-callout--wip a { text-decoration: underline; }
.gl-callout--wip a:hover { opacity: .7; }

@media screen and (max-width: 750px) {
  .gl-band__label { font-size: 11px; }
  .gl-callout--wip .gl-callout__title { font-size: 16px; }
}
