/*----------------------------------　　jadcaの日*/
:root {
  --sky: #4fc3f7;
  --sky-deep: #0288d1;
  --sky-dark: #01579b;
  --mint: #26c6da;
  --mint-light: #b2ebf2;
  --green: #43e97b;
  --white: #ffffff;
  --off-white: #f0f8ff;
  --text-dark: #0d2a3a;
  --text-mid: #1a4a6b;
  --accent-red: #ef5350;
  --accent-yellow: #ffd600;
  --shadow: 0 8px 40px rgba(1, 87, 155, 0.13);
}
#jadca-day *,
#jadca-day *::before,
#jadca-day *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#jadca-day {
  scroll-behavior: smooth;
}
#jadca-day {
  background: #e8f4fd;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== HERO ===== */
#jadca-day .hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #b3e5fc 0%, #4fc3f7 40%, #0288d1 80%, #01579b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px 80px;
}

/* 空のアニメーション雲 */
#jadca-day .cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50px;
  filter: blur(6px);
  animation: cloudDrift linear infinite;
}
#jadca-day .cloud::before,
#jadca-day .cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
#jadca-day .cloud-1 {
  width: 200px;
  height: 60px;
  top: 10%;
  left: -220px;
  animation-duration: 28s;
}
#jadca-day .cloud-1::before {
  width: 100px;
  height: 80px;
  top: -30px;
  left: 30px;
}
#jadca-day .cloud-2 {
  width: 140px;
  height: 45px;
  top: 25%;
  left: -160px;
  animation-duration: 38s;
  animation-delay: -12s;
}
#jadca-day .cloud-3 {
  width: 260px;
  height: 70px;
  top: 60%;
  left: -280px;
  animation-duration: 22s;
  animation-delay: -5s;
  opacity: 0.4;
}
#jadca-day .cloud-4 {
  width: 180px;
  height: 55px;
  top: 75%;
  left: -200px;
  animation-duration: 32s;
  animation-delay: -20s;
}

@keyframes cloudDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 300px));
  }
}

/* 風ライン */
#jadca-day .wind-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
#jadca-day .wind-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 2px;
  animation: windBlow linear infinite;
}
#jadca-day .wind-line:nth-child(1) {
  width: 200px;
  top: 20%;
  left: -220px;
  animation-duration: 3s;
  animation-delay: 0s;
}
#jadca-day .wind-line:nth-child(2) {
  width: 300px;
  top: 35%;
  left: -320px;
  animation-duration: 4s;
  animation-delay: 0.8s;
}
#jadca-day .wind-line:nth-child(3) {
  width: 150px;
  top: 55%;
  left: -170px;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
}
#jadca-day .wind-line:nth-child(4) {
  width: 250px;
  top: 70%;
  left: -270px;
  animation-duration: 3.5s;
  animation-delay: 0.3s;
}
#jadca-day .wind-line:nth-child(5) {
  width: 180px;
  top: 85%;
  left: -200px;
  animation-duration: 2.8s;
  animation-delay: 2s;
}
@keyframes windBlow {
  to {
    transform: translateX(calc(100vw + 350px));
  }
}
#jadca-day .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
#jadca-day .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 8px 28px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.8s ease both;
}
#jadca-day .hero-date {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  animation: fadeDown 0.8s 0.1s ease both;
}
#jadca-day .hero-date span {
  display: block;
  font-size: 0.38em;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}
#jadca-day .hero-title {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: white;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 60px 0 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  animation: fadeDown 0.8s 0.2s ease both;
}
#jadca-day .hero-catchcopy {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.2em;
  animation: fadeDown 0.8s 0.3s ease both;
  margin-bottom: 36px;
}
#jadca-day .hero-mascot {
  width: min(280px, 60vw);
  animation:
    floatUp 3.5s ease-in-out infinite,
    fadeDown 1s 0.4s ease both;
  filter: drop-shadow(0 20px 40px rgba(0, 50, 100, 0.35));
  margin-top: 10px;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
#jadca-day .hero-week-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 10px 24px;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
  animation: fadeDown 0.8s 0.5s ease both;
  margin-top: 180px;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== WAVE ===== */
#jadca-day .wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #e8f4fd;
}
#jadca-day .wave-divider svg {
  display: block;
}

/* ===== SECTION BASE ===== */
#jadca-day section {
  padding: 80px 20px;
}
#jadca-day .section-inner {
  max-width: 980px;
  margin: 0 auto;
}
#jadca-day .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky-deep);
  border-bottom: 2px solid var(--sky);
  padding-bottom: 4px;
  margin-bottom: 14px;
}
#jadca-day .section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 20px;
}

/* ===== ABOUT SECTION ===== */
#jadca-day .about-section {
  background: var(--off-white);
}
#jadca-day .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 680px) {
  #jadca-day .about-grid {
    grid-template-columns: 1fr;
  }
}
#jadca-day .about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}
#jadca-day .kigo-box {
  background: linear-gradient(135deg, var(--sky-deep), var(--mint));
  border-radius: 20px;
  padding: 36px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
#jadca-day .kigo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}
#jadca-day .kigo-nums {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}
#jadca-day .kigo-nums sub {
  font-size: 0.4em;
  vertical-align: baseline;
  font-weight: 700;
}
#jadca-day .kigo-label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
  opacity: 0.9;
  position: relative;
}
#jadca-day .kigo-furigana {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 8px;
  position: relative;
  letter-spacing: 0.05em;
}

/* ===== POLICY SECTION ===== */
#jadca-day .policy-section {
  background: white;
}
#jadca-day .policy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  #jadca-day .policy-cards {
    grid-template-columns: 1fr;
  }
}
#jadca-day .policy-card {
  background: var(--off-white);
  /* border-left: 4px solid var(--sky); */
  border-radius: 12px;
  padding: 28px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
#jadca-day .policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
#jadca-day .policy-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
#jadca-day .policy-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sky-dark);
  margin-bottom: 10px;
}
#jadca-day .policy-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ===== CHARACTER SECTION ===== */
#jadca-day .character-section {
  background: linear-gradient(180deg, #dff3fc 0%, #c8eaf8 100%);
  position: relative;
  overflow: hidden;
}
#jadca-day .character-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
#jadca-day .character-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 680px) {
  #jadca-day .character-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
#jadca-day .character-img-wrap {
  position: relative;
  text-align: center;
}
#jadca-day .character-img-wrap img {
  width: min(320px, 90%);
  filter: drop-shadow(0 20px 50px rgba(1, 87, 155, 0.25));
  animation: floatUp 3.5s ease-in-out infinite;
}
#jadca-day .character-name {
  display: inline-block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(120deg, var(--sky-deep), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
#jadca-day .character-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}
#jadca-day .character-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#jadca-day .character-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 12px 16px;
}
#jadca-day .character-features li .feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== LAMP STATUS ===== */
#jadca-day .lamp-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
#jadca-day .lamp-card {
  flex: 1;
  min-width: 160px;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}
#jadca-day .lamp-card.red {
  background: #fff5f5;
  border: 2px solid #ef9a9a;
  color: #c62828;
}
#jadca-day .lamp-card.green {
  background: #f0fff4;
  border: 2px solid #81c784;
  color: #1b5e20;
}
#jadca-day .lamp-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px currentColor;
}
#jadca-day .lamp-card.red .lamp-dot {
  background: #f44336;
}
#jadca-day .lamp-card.green .lamp-dot {
  background: #4caf50;
}

/* ===== CHECKLIST SECTION ===== */
#jadca-day .check-section {
  background: var(--off-white);
}
#jadca-day .check-intro {
  background: linear-gradient(135deg, var(--sky-deep) 0%, #0097a7 100%);
  border-radius: 20px;
  padding: 36px 40px;
  color: white;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
#jadca-day .check-intro-mascot {
  width: 100px;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}
#jadca-day .check-intro-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
#jadca-day .check-intro-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
}
#jadca-day .check-table-wrapper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
#jadca-day .check-table {
  width: 100%;
  border-collapse: collapse;
}
#jadca-day .check-table thead tr {
  background: linear-gradient(90deg, var(--sky-dark), var(--sky-deep));
  color: white;
}
#jadca-day .check-table thead th {
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
#jadca-day .check-table thead th:first-child {
  text-align: left;
}
#jadca-day .check-table tbody tr {
  border-bottom: 1px solid #e8f4fd;
}
#jadca-day .check-table tbody tr:hover {
  background: #f0f8ff;
}
#jadca-day .check-table .cat-row td {
  background: linear-gradient(90deg, #e3f5fd, #f0f8ff);
  font-weight: 700;
  color: var(--sky-dark);
  padding: 10px 16px;
  font-size: 0.9rem;
  border-left: 4px solid var(--sky);
}
#jadca-day .check-table .item-row td {
  padding: 11px 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  vertical-align: middle;
}
#jadca-day .check-table .item-row td.check-col {
  text-align: center;
}
#jadca-day .check-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sky);
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
#jadca-day .check-box:hover {
  background: var(--mint-light);
}
#jadca-day .check-result {
  background: white;
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}
#jadca-day .check-result h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sky-dark);
  margin-bottom: 18px;
}
#jadca-day .result-levels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#jadca-day .result-level {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
}
#jadca-day .result-level.lv1 {
  background: #e8f8e8;
  border-left: 4px solid #66bb6a;
}
#jadca-day .result-level.lv2 {
  background: #fff8e1;
  border-left: 4px solid #ffa726;
}
#jadca-day .result-level.lv3 {
  background: #fde8e8;
  border-left: 4px solid #ef5350;
}
#jadca-day .result-num {
  font-weight: 900;
  font-size: 1.1rem;
  min-width: 80px;
}
#jadca-day .lv1 .result-num {
  color: #2e7d32;
}
#jadca-day .lv2 .result-num {
  color: #e65100;
}
#jadca-day .lv3 .result-num {
  color: #b71c1c;
}

/* ===== POSES SECTION ===== */
#jadca-day .poses-section {
  background: white;
}
#jadca-day .poses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  #jadca-day .poses-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#jadca-day .pose-card {
  background: linear-gradient(180deg, #e8f6fd 0%, #dff0f9 100%);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: 2px solid transparent;
}
#jadca-day .pose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(1, 87, 155, 0.15);
  border-color: var(--sky);
}
#jadca-day .pose-card img {
  width: 100%;
  max-width: 160px;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 20px rgba(1, 87, 155, 0.2));
}
#jadca-day .pose-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sky-dark);
  margin-bottom: 8px;
}
#jadca-day .pose-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== WEEK SECTION ===== */
#jadca-day .week-section {
  display: none;
  background: linear-gradient(160deg, var(--sky-dark) 0%, #0097a7 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
#jadca-day .week-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}
#jadca-day .week-section .section-label {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}
#jadca-day .week-section .section-title {
  color: white;
}
#jadca-day .week-timeline {
  position: relative;
  margin-top: 50px;
  padding-bottom: 20px;
}
#jadca-day .week-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}
@media (max-width: 680px) {
  #jadca-day .week-timeline::before {
    left: 24px;
  }
}
#jadca-day .week-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 32px;
  position: relative;
}
#jadca-day .week-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 680px) {
  #jadca-day .week-item,
  #jadca-day .week-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
  }
}
#jadca-day .week-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid white;
  flex-shrink: 0;
  z-index: 1;
  top: 10px;
}
@media (max-width: 680px) {
  #jadca-day .week-dot {
    left: 17px;
  }
}
#jadca-day .week-card {
  flex: 1;
  max-width: 42%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(6px);
}
@media (max-width: 680px) {
  #jadca-day .week-card {
    max-width: 100%;
  }
  #jadca-day .week-item:nth-child(even) .week-card {
    margin-left: 0;
  }
}
#jadca-day .week-card .wdate {
  font-size: 0.85rem;
  color: var(--mint);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
#jadca-day .week-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ===== MESSAGE SECTION ===== */
#jadca-day .message-section {
  background: var(--off-white);
}
#jadca-day .message-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  #jadca-day .message-cards {
    grid-template-columns: 1fr;
  }
}
#jadca-day .message-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border-top: 5px solid var(--sky);
}
#jadca-day .message-card:nth-child(2) {
  border-top-color: var(--mint);
}
#jadca-day .message-card:nth-child(3) {
  border-top-color: var(--sky-dark);
}
#jadca-day .message-card:hover {
  transform: translateY(-5px);
}
#jadca-day .msg-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}
#jadca-day .message-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sky-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
#jadca-day .message-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ===== CTA SECTION ===== */
#jadca-day .cta-section {
  background: linear-gradient(135deg, #01579b 0%, #0097a7 50%, #26c6da 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
#jadca-day .cta-section::before {
  content: "4/19";
  position: absolute;
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
}
#jadca-day .cta-inner {
  position: relative;
}
#jadca-day .cta-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
#jadca-day .cta-inner p {
  font-size: 1.05rem;
  opacity: 0.9;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
#jadca-day .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--sky-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.05em;
}
#jadca-day .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}
#jadca-day .org-info {
  margin-top: 48px;
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 2;
}

/* ===== FOOTER ===== */
#jadca-day footer {
  background: var(--sky-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
#jadca-day footer strong {
  color: white;
}

/* ===== SCROLL ANIMATION ===== */
#jadca-day .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
#jadca-day .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#jadca-day .check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--sky);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}
#jadca-day .check-box.is-checked {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
}
#jadca-day .check-box.is-checked::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) translateY(-1px);
}
#jadca-day .check-table .item-row.is-yes-checked {
  background: #ddf0fc;
}
#jadca-day .check-table .item-row.is-yes-checked td:first-child {
  font-weight: 700;
  color: var(--sky-dark);
}
#jadca-day .check-counter__num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sky-dark);
}
#jadca-day .check-counter__unit {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-left: -10px;
}
#jadca-day .check-judgment {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.3s;
}
#jadca-day .check-judgment.lv0 {
  background: #f0f8ff;
  color: #aaa;
}
#jadca-day .check-judgment.lv1 {
  background: #e8f8e8;
  color: #2e7d32;
}
#jadca-day .check-judgment.lv2 {
  background: #fff8e1;
  color: #e65100;
}
#jadca-day .check-judgment.lv3 {
  background: #fde8e8;
  color: #b71c1c;
}
#jadca-day .check-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
#jadca-day .check-counter__label {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 600;
  white-space: nowrap;
}
#jadca-day .check-counter__bar-wrap {
  flex: 1;
  min-width: 120px;
  height: 12px;
  background: #e8f4fd;
  border-radius: 6px;
  overflow: hidden;
}
#jadca-day .check-counter__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sky-deep), var(--mint));
  border-radius: 6px;
  transition: width 0.4s ease;
}

@media (max-width: 680px) {
  #jadca-day .hero-week-badge {
    margin: 0;
  }

  #jadca-day .hero-catchcopy {
    margin: 0px;
  }

  #jadca-day .character-features {
    text-align: left;
  }

  #jadca-day .check-intro {
    flex-wrap: wrap;
    gap: 10px;
  }

  #jadca-day .check-intro {
    padding: 40px 20px;
  }

  #jadca-day .check-intro-mascot {
    margin: 0 auto;
    width: 140px;
  }
  
  #jadca-day .hero-title {
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 30px 0 6px;
  }
}
