@charset "UTF-8";
:root {
  --sun: #2e6fdb;
  --sun-dark: #2557b3;
  --ink: #2b2b2b;
  --accent: #63a130;
  --cta: #c7440d;
  --white: #ffffff;
  --bg-sub: #f6f5f1;
  --gray-text: #555555;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

#nijikura,
#taiken,
#map {
  scroll-margin-top: var(--header-h, 57px);
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 3px solid var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.header-inner .btn {
  display: none;
}
@media all and (min-width: 721px) {
  .header-inner .btn {
    display: flex;
  }
}

p {
  word-break: auto-phrase;
}

.pc {
  display: inline-flex;
}
@media all and (max-width: 720px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media all and (max-width: 720px) {
  .sp {
    display: inline-flex;
  }
}

.brand {
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--cta);
  color: #fff;
}
.btn-outline-dark {
  background: #fff;
  color: var(--ink);
}
.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}
.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  transform: skewX(-15deg);
  animation: btn-shine 3.5s linear infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-glow::after {
    animation: none;
  }
}

@keyframes btn-shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/* Hero */
.hero {
  position: relative;
  background: var(--sun);
  min-height: calc(100vh - var(--header-h, 57px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 8px;
  overflow: hidden;
}
.hero > .wrap {
  position: relative;
  z-index: 3;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: var(--sun);
}

.hero-parallax-layer {
  position: absolute;
  left: -8%;
  width: 116%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-deco2 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.15));
}
@media (prefers-reduced-motion: reduce) {
  .hero-deco2 {
    animation: none;
  }
}
.hero-deco2--1 {
  width: 100px;
  right: 4%;
  bottom: 4%;
}
.hero-deco2--2 {
  width: 84px;
  right: 9%;
  top: 8%;
}
.hero-deco2--3 {
  width: 90px;
  left: 10%;
  top: 10%;
}
@media (max-width: 720px) {
  .hero-deco2 {
    display: none;
  }
}

.hero-logo2 {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 0 12px;
  pointer-events: none;
}
.hero-logo2 img {
  width: 620px;
  max-width: 80%;
  animation: logo-splash 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transform-origin: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo2 img {
    animation: none;
  }
}
@media (max-width: 720px) {
  .hero-logo2 img {
    width: 320px;
  }
}
.hero-logo2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  animation: logo-burst 1s ease-out both;
  z-index: -1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo2::after {
    animation: none;
  }
}
@media (max-width: 720px) {
  .hero-logo2 {
    margin-bottom: 6px;
  }
}

@keyframes logo-splash {
  0% {
    transform: scale(0) rotate(-12deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes logo-burst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.hero-copy-col {
  flex: 1 1 320px;
}

.hero-illust-col {
  flex: 1 1 220px;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) {
  .hero-illust-col {
    min-height: 220px;
  }
}

.hero-illust {
  position: absolute;
  width: 160px;
  filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.15));
}
.hero-illust--1 {
  left: 8%;
  top: 6%;
  transform: rotate(-6deg);
}
.hero-illust--2 {
  right: 4%;
  bottom: 4%;
  transform: rotate(6deg);
}
@media (max-width: 720px) {
  .hero-illust {
    width: 150px;
  }
}

.hero-eyebrow,
.hero-headline,
.hero-lead {
  text-shadow: -1.5px -1.5px 0 rgba(0, 0, 0, 0.85), 1.5px -1.5px 0 rgba(0, 0, 0, 0.85), -1.5px 1.5px 0 rgba(0, 0, 0, 0.85), 1.5px 1.5px 0 rgba(0, 0, 0, 0.85), 0 3px 10px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.hero-eyebrow {
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  font-size: 0.85rem;
  color: #fff;
}

.hero-headline {
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 6px;
  color: #fff;
}
@media (max-width: 720px) {
  .hero-headline {
    font-size: 1.9rem;
  }
}

.hero-year {
  color: #fff;
}

.u-mark {
  position: relative;
  display: inline-block;
  /* padding-bottom: 14px; */
  /* &::before,
  &::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    height: 4px;
    background: #fff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8));
  } */
}
.u-mark::before {
  bottom: 7px;
}
.u-mark::after {
  bottom: 1px;
}

.hero-lead {
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0 0 8px;
  color: #fff;
}

.hero-info-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 8px 18px;
  display: inline-block;
  margin: 0 0 10px;
  width: 100%;
}
.hero-info-card p {
  margin: 1px 0;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-note {
  font-size: 0.7rem;
  color: var(--gray-text);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btns .btn {
  width: calc(50% - 10px);
  padding: 10px 18px;
  font-size: 0.6rem;
  justify-content: center;
  display: flex;
}
@media all and (min-width: 721px) {
  .hero-btns .btn {
    font-size: 0.88rem;
    text-align: center;
  }
}

/* Curve dividers */
.curve {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 0;
  margin: -1px 0;
}
.curve svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 720px) {
  .curve {
    height: 36px;
  }
}
.curve--sun-to-white {
  background: var(--sun);
}
.curve--sun-to-white svg path {
  fill: var(--bg-sub);
}
.curve--white-to-sun {
  background: var(--bg-sub);
}
.curve--white-to-sun svg path {
  fill: var(--sun);
}

/* Sections */
.section {
  padding: 64px 0;
}
.section-white {
  background: var(--bg-sub);
}
.section-sun {
  background: var(--sun);
}
.section-sun .eyebrow,
.section-sun .section-title,
.section-sun .schedule-date,
.section-sun .schedule-caveat,
.section-sun .theme-sample-caption {
  color: #fff;
}

.eyebrow {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--sun);
  margin: 0 0 8px;
}
.eyebrow-dark {
  color: var(--ink);
}

.section-title {
  text-align: center;
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 44px;
}
@media (max-width: 720px) {
  .section-title {
    font-size: 1.4rem;
  }
}

.title-underline {
  display: block;
  width: 70px;
  height: 12px;
  margin: 16px auto 0;
  position: relative;
}
.title-underline::before, .title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink);
}
.title-underline::before {
  top: 0;
}
.title-underline::after {
  top: 8px;
}

.section-lead {
  text-align: center;
  margin-top: -28px;
  margin-bottom: 32px;
  color: var(--gray-text);
}

/* ニジクラ紹介 */
.nijikura-intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  text-align: center;
}
.nijikura-intro-illust {
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.nijikura-intro-illust span {
  font-weight: bold;
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
}
.nijikura-intro-text {
  flex: 1 1 320px;
  min-width: 280px;
  text-align: left;
}
.nijikura-intro-text p {
  margin: 0 0 14px;
  line-height: 1.9;
}

.nijikura-logo-img {
  width: 200px;
  margin: 0 auto;
}

.credit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
}
.credit-row img {
  width: 150px;
}

/* 番号カード */
.numbered-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.numbered-card {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 0 0 22px;
  width: 30%;
  text-align: center;
}
.numbered-card .num {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--ink);
  color: var(--accent);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 8px;
  transform: rotate(8deg);
  z-index: 1;
}
.numbered-card h3 {
  margin: 14px 0 0;
  padding: 0 16px;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .numbered-card {
    width: 100%;
    max-width: 100%;
  }
}

.numbered-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 17px 17px 0 0;
}
.numbered-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テーマ例 */
.theme-sample {
  text-align: center;
}
.theme-sample img {
  max-width: 100%;
}
.theme-sample-img {
  max-width: 380px;
  margin: 0 auto;
}
.theme-sample-caption {
  margin-top: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
}

/* ワークショップの流れ */
.flow-instructor-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (min-width: 721px) {
  .flow-instructor-row {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.flow-box {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  flex: 1 1 380px;
  max-width: 480px;
  margin: 0;
}
@media (max-width: 768px) {
  .flow-box {
    max-width: 100%;
  }
}

.flow-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 20px;
}

.flow-list2 {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.flow-list2::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--ink);
  opacity: 0.2;
}

.flow-item2 {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-weight: 700;
}
.flow-item2::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ink);
}
.flow-item2--milestone {
  font-weight: 900;
  font-size: 1.02rem;
}
.flow-item2--milestone::before {
  background: var(--accent);
}
.flow-item2--sub {
  font-size: 0.92rem;
  padding-left: 50px;
  color: #333;
}
.flow-item2--sub::before {
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--sun);
  border: 2px solid var(--ink);
}

.flow-note2 {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: var(--gray-text);
  text-align: center;
}

/* スケジュール */
.schedule-date {
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 0 28px;
}

.pair-cards {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 12px;
}
@media (min-width: 721px) {
  .pair-cards {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pair-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 22px 34px;
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pair-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}
.pair-card .pair-date {
  display: block;
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 2px;
  padding-left: 0.5rem;
}
.pair-card .btn {
  margin-top: 14px;
}
.pair-card--am .pair-time {
  color: var(--sun-dark);
}
.pair-card--pm .pair-time {
  color: var(--cta);
}
.pair-card--sat .pair-date {
  color: var(--sun);
}
.pair-card--sunday .pair-date {
  color: #d63030;
}
@media (min-width: 721px) {
  .pair-card {
    min-width: calc(50% - 1rem);
  }
}
@media (max-width: 720px) {
  .pair-card {
    min-width: 100%;
  }
}

.pair-time {
  font-family: "Dela Gothic One", "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.schedule-caveat {
  text-align: center;
  font-weight: 700;
  margin: 0 0 32px;
}

.capacity-box {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 721px) {
  .capacity-box {
    max-width: 900px;
  }
}

.capacity-main {
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.6;
}

.big-num {
  font-size: 1.8rem;
  color: var(--sun);
  font-weight: 900;
}

.capacity-note {
  margin: 0;
  font-weight: 700;
  color: var(--sun);
  font-size: 0.9rem;
}

/* 体験会コーナー */
.carousel-lead {
  text-align: center;
  font-weight: 700;
  margin: 0 0 20px;
}

.tag-pill {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag-pill--outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.featured-card {
  position: relative;
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 26px;
  max-width: 640px;
  margin: 0 auto 40px;
  overflow: hidden;
}
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.featured-card::after {
  content: "COMING SOON";
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  background: var(--cta);
  color: #fff;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 10px 28px;
  border-radius: 10px;
  border: 3px solid var(--ink);
  z-index: 2;
  animation: coming-soon-pulse 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .featured-card::after {
    animation: none;
  }
}
@media (max-width: 720px) {
  .featured-card::after {
    font-size: 1.1rem;
    padding: 8px 18px;
  }
}

.featured-body {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .featured-body {
    flex-direction: column;
    text-align: center;
  }
}

.featured-thumb {
  width: 150px;
  aspect-ratio: 4/3;
  background: #fff;
  border: 2px dashed var(--ink);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.featured-thumb span {
  font-size: 2rem;
  opacity: 0.7;
}
.featured-thumb small {
  font-size: 0.7rem;
  color: var(--gray-text);
  font-weight: 700;
}
@media (max-width: 720px) {
  .featured-thumb {
    width: 100%;
  }
}

@keyframes coming-soon-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-8deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-8deg) scale(1.1);
  }
}
.featured-info {
  flex: 1;
  min-width: 200px;
}
.featured-info h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.featured-copy {
  color: var(--sun);
  font-weight: 900;
  margin: 0 0 8px;
}

.featured-time {
  font-weight: 800;
  margin: 0;
}

.game-carousel {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 721px) {
  .game-carousel {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

.game-card2 {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 0 0 22px;
  width: 100%;
  text-align: center;
}
@media (min-width: 721px) {
  .game-card2 {
    width: 48%;
  }
}
.game-card2 .tag-pill {
  margin: 14px 0 12px;
}
.game-card2 h3 {
  margin: 6px 0 0;
  padding: 0 16px;
  font-size: 1rem;
}

.game-thumb2 {
  aspect-ratio: 4/3;
  background: #f6f6f6;
  border-radius: 17px 17px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.game-thumb2 span {
  font-size: 1.8rem;
  opacity: 0.7;
}
.game-thumb2 small {
  font-size: 0.7rem;
  color: var(--gray-text);
  font-weight: 700;
}
.game-thumb2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 講師紹介 */
.instructor-card2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 22px;
  flex: 1 1 300px;
  margin: 0;
  box-sizing: border-box;
  max-width: 380px;
}
@media (max-width: 768px) {
  .instructor-card2 {
    max-width: 100%;
  }
}

.instructor-photo2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  object-fit: cover;
  flex-shrink: 0;
}

.instructor-info {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.instructor-name2 {
  font-weight: 900;
  margin: 0 0 4px;
  text-align: center;
}

.instructor-desc2 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-text);
}

.coderdojo {
  margin: 8px 0 20px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--gray-text);
  overflow-wrap: break-word;
}

.coderdojo-fb-btn {
  display: table;
  margin: 10px auto 0;
}

/* 会場マップ */
.venue-block {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.venue-placeholder {
  flex: 1 1 320px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
}

.venue-map-img {
  width: 100%;
  display: block;
}

.venue-map-note {
  margin: 10px 16px 14px;
  text-align: center;
  color: var(--gray-text);
  font-size: 0.78rem;
}

.venue-text {
  flex: 1 1 260px;
  font-size: 0.95rem;
}

.access-title {
  margin-top: 0;
}

.access-map2 {
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
}

/* 最終CTA */
.cta-final {
  padding-top: 40px;
  padding-bottom: 60px;
}

.cta-final-box {
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 32px;
  padding: 48px 24px;
  text-align: center;
}
.cta-final-box h2 {
  margin: 0 0 26px;
  font-size: 1.4rem;
}
@media (min-width: 721px) {
  .cta-final-box {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-final-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media (min-width: 721px) {
  .cta-final-btns .btn {
    padding: 14px 22px;
  }
}

.cta-note2 {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: var(--gray-text);
}

/* Footer */
.site-footer2 {
  background: #fff;
  border-top: 3px solid var(--ink);
  padding: 36px 0;
}

.footer-inner2 {
  text-align: center;
}

.footer-organizer2 {
  font-weight: 900;
  margin: 0 0 6px;
}

.footer-cooperation2, .footer-jimu {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-text);
  margin: 0 0 20px;
}

.footer-disclaimer2 {
  max-width: 640px;
  margin: 0 auto;
}
.footer-disclaimer2 p {
  margin: 0 0 4px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: #999;
  text-align: left;
  text-indent: -1rem;
  margin-left: 1rem;
}
.footer-disclaimer2 p:last-child {
  margin-bottom: 0;
}
