/* ============================================================
   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;
}
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: 225px auto 0;
  position: relative;
  width: 100%;
  padding-left: 100px;
}
#contest .txt-area {
  width: 62%;
  position: absolute;
  left: 0%;
  top: -34%;
  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: -34%;
}
#contest .contest-badge {
  width: 100%;
  height: auto;
}

/* Contest grid */
#contest .contest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  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 .map-box { margin-top: 72px; }
  #contest .txt-area {
    width: 58%;
    left: 0;
    padding: 18px;
    top: -29%;
  }
  #contest .map-box {
  padding-left: 0;
  margin-top: 200px
}
  #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-reverse;
    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-reverse;
    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(2, 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;
  }
}
