:root {
  --bg: #f6f1ea;
  --bg-soft: #fffaf5;
  --paper: rgba(255, 255, 255, 0.72);
  --paper-strong: #ffffff;
  --text: #141414;
  --text-soft: #5f5a55;
  --line: rgba(20, 20, 20, 0.10);
  --line-strong: rgba(20, 20, 20, 0.18);
  --dark: #141414;
  --dark-soft: #242124;
  --accent: #ff8b7a;
  --accent-deep: #f05f7f;
  --accent-soft: #ffe1db;
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.10);
  --container: 1200px;
  --space-section: 110px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
  background: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ==============================
   BUTTON
============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.btn-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

/* ==============================
   HERO FULL SCREEN
============================== */

.site-header {
  display: none;
}

.hero {
  position: relative;
}

.hero-full {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.hero-full picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-full picture img,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.12) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.48) 0%,
      rgba(0,0,0,.22) 35%,
      rgba(0,0,0,.06) 60%,
      rgba(0,0,0,0) 80%
    );
}

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  min-height: 84px;
  padding: 20px 48px;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  gap: 32px;
  color: #fff;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--text-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-brand .brand-main {
  color: #ff9aa0;
  font-size: 1.15rem;
}

.hero-brand .brand-sub {
  color: rgba(255, 255, 255, 0.72);
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero-nav a:hover {
  color: #fff;
}

.hero-header-btn {
  justify-self: end;
  min-height: 52px;
  padding: 0 34px;
  color: #141414;
  background: #ff9aa0;
}

.hero-full-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-copy-onimage {
  width: min(58%, 720px);
  padding: 88px 0;
  color: #fff;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-copy-onimage .eyebrow {
  color: #ff9aa0;
}

.hero h1,
.section-head h2,
.center-head h2,
.future-box h2,
.final-cta-box h2 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.08;
  color: #fff;
}

.hero h1 span {
  color: #ff9aa0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
}

.hamburger,
.page-top,
.mobile-menu {
  display: none;
}

.sp-only {
  display: none;
}

/* ==============================
   INTRO
============================== */

.intro-strip {
  padding: 16px 0 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-grid article {
  padding: 28px 24px;
}

.strip-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.strip-grid span {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--accent-deep);
}

.strip-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.strip-grid p {
  color: var(--text-soft);
  margin: 0;
}

/* ==============================
   COMMON SECTION
============================== */

.section {
  padding: var(--space-section) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.section-head h2,
.center-head h2,
.future-box h2,
.final-cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-body p,
.center-head p,
.recommend-note,
.footer-copy,
.faq-answer,
.future-box p:last-child,
.final-cta-box p {
  color: var(--text-soft);
}

.center-head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-photo {
  margin: 34px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.section-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==============================
   DARK SECTION
============================== */

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 139, 122, 0.14), transparent 28%),
    linear-gradient(180deg, #171417 0%, #0f0f10 100%);
}

.section-dark .eyebrow,
.section-dark .center-head p,
.section-dark .value-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .center-head h2,
.section-dark .value-card h3 {
  color: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.value-card p {
  margin: 0;
}

/* ==============================
   PROGRAM
============================== */

.program-list {
  display: grid;
  gap: 20px;
}

/* ===== プログラムカード:画像あり3カラム ===== */
.program-card {
  display: grid;
  grid-template-columns: 90px 1fr 320px;  /* 番号 / テキスト / 画像(右) */
  gap: 32px;
  align-items: center;
}

.program-media {
  margin: 0;
}

.program-media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;         /* 縦横比が違う画像でも枠にフィット */
  border-radius: 14px;
}

/* 偶数カード(02, 04, 06)は画像を左に */
.program-card:nth-of-type(even) {
  grid-template-columns: 90px 320px 1fr;  /* 番号 / 画像(左) / テキスト */
}

.program-card:nth-of-type(even) .program-media {
  grid-column: 2;
  grid-row: 1;
}

.program-card:nth-of-type(even) .program-content {
  grid-column: 3;
  grid-row: 1;
}
.program-no {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-deep);
}

.program-content h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.35;
}

.program-content p {
  color: var(--text-soft);
}

.program-content ul {
  margin-top: 14px;
}

.program-content li + li {
  margin-top: 6px;
}

.program-kicker {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

/* ==============================
   SOFT SECTION
============================== */

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.06));
}

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

.recommend-grid article {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  font-weight: 600;
}

.recommend-note {
  margin-top: 22px;
  text-align: center;
}

/* ==============================
   BENEFITS
============================== */

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.benefit-item {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

/* ==============================
   ACCENT
============================== */

.section-accent {
  padding-top: 20px;
}

.future-box {
  padding: 46px;
  background: linear-gradient(135deg, rgba(255, 139, 122, 0.14), rgba(255, 255, 255, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* ==============================
   FAQ
============================== */

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 0 22px;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 38px 22px 0;
  position: relative;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-deep);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 22px;
}

/* ==============================
   FINAL CTA
============================== */

.final-cta {
  padding-top: 20px;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  padding: 42px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.final-cta-box .eyebrow,
.final-cta-box p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.final-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.04);
}

/* ==============================
   FOOTER
============================== */

.site-footer {
  padding: 34px 0 46px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.footer-brand {
  margin: 0 0 6px;
  font-weight: 800;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--text);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1100px) {
  .two-col,
  .final-cta-box,
  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy-onimage {
    width: min(64%, 680px);
  }

  .hero-header {
    grid-template-columns: 190px 1fr 230px;
    gap: 22px;
    padding: 18px 32px;
  }

  .hero-nav {
    gap: 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 860px) {
  :root {
    --space-section: 80px;
  }

  .hero-header {
    padding: 16px 20px;
  }

  .hero-header-btn {
    display: none;
  }

  .hero-full,
  .hero-full-inner {
    min-height: 760px;
  }

  .hero-copy-onimage {
    width: 100%;
    padding: 70px 0 340px;
  }

  .strip-grid,
  .recommend-grid,
  .benefit-list,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid article:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .program-card,
  .program-card:nth-of-type(even) {
    grid-template-columns: 1fr;   /* 縦積み */
    gap: 16px;
  }

  .program-card:nth-of-type(even) .program-media,
  .program-card:nth-of-type(even) .program-content {
    grid-column: auto;            /* PC用の列指定をリセット */
    grid-row: auto;
  }

  /* 並び順:番号 → 画像 → テキスト */
  .program-media { order: 1; }
  .program-content { order: 2; }

  .program-media img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: center top;   /* 上側を優先して残す */
    border-radius: 12px;
  }

  .program-no {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
  .sp-only {
    display: block;
  }
  .hero-full,
  .hero-full-inner {
    min-height: 100svh;
  }
  .hero-full-inner {
    align-items: stretch;
    display: flex;
  }
  .hero-bg {
    object-position: center 75%;
    filter: brightness(1.10);
  }
  .hero-shade {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.42) 25%,
        rgba(0,0,0,.15) 48%,
        rgba(0,0,0,0) 68%
      );
  }
  .hero-header {
    display: flex;
    min-height: 70px;
    padding: 14px 18px;
  }
  .hero-brand .brand-main {
    font-size: 0.95rem;
  }
  .hero-brand .brand-sub {
    font-size: 0.62rem;
  }
  .hero-nav,
  .hero-header-btn {
    display: none;
  }
  .hamburger {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 200;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    background: rgba(0,0,0,0.38);
  }
  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 40px;
    background: rgba(10, 10, 10, 0.94);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu a {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .mobile-menu-cta {
    margin-top: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  }
  .hero-copy-onimage {
    width: 100%;
    min-height: 90svh;
    display: flex;
    flex-direction: column;
    padding: 76px 0 28px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9.4vw, 3rem);
    line-height: 1.07;
    margin-bottom: 16px;
  }
  .hero-lead {
    font-size: 0.86rem;
    line-height: 1.75;
    margin-bottom: 0;
  }
 
.hero-actions {
    margin-top: 0;
    flex-direction: row;
    gap: 10px;
    transform: none;
  }

.hero-actions .btn {
    flex: 1;
    width: auto;
    min-width: 0;
    padding: 13px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .btn {
    width: 100%;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
    transform: none;
  }
  .hero-badges span {
    justify-content: center;
    min-height: 42px;
    font-size: 0.82rem;
  }
  .page-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 180;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 139, 122, 0.92);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  }
  .section-head h2,
  .center-head h2,
  .future-box h2,
  .final-cta-box h2 {
    font-size: 2rem;
  }
  .future-box,
  .final-cta-box {
    padding: 28px 22px;
  }
  .footer-inner {
    flex-direction: column;
  }
}

.hero-bottom {
    margin-top: auto;   /* ← ボタン+バッジのセットごと下端へ */
  }

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #333;          /* ← アイコンの色。黒なら #000、グレーなら #666 */
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==============================
   PRICE
============================== */

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.price-card-campaign {
  border: 1px solid var(--accent-deep);
  background: linear-gradient(135deg, rgba(255, 139, 122, 0.10), #ffffff);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 22px;
  margin: 0;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.price-label {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: 1.05rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.price-row span {
  color: var(--text-soft);
  font-weight: 600;
}

.price-row strong {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-card-campaign .price-row strong {
  color: var(--accent-deep);
}

.price-row strong small {
  font-size: 0.9rem;
  margin-left: 2px;
}

.price-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.price-common {
  max-width: 860px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.price-common li + li {
  margin-top: 4px;
}

.price-cta-lead {
  margin-bottom: 16px;
  color: var(--text-soft);
}

@media (max-width: 860px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.price-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-enmusubi {
  min-width: 220px;
}

@media (max-width: 640px) {
  .price-cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

.price-notice {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.price-notice-title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 0.95rem;
}

.price-notice ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.price-notice li + li {
  margin-top: 4px;
}

/* ==============================
   SCHEDULE
============================== */

.schedule-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 70px 110px 130px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.schedule-item-special {
  border: 1px solid var(--accent-deep);
  background: linear-gradient(135deg, rgba(255, 139, 122, 0.10), #ffffff);
}

.schedule-no {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-deep);
  letter-spacing: 0.06em;
}

.schedule-date {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.schedule-date small {
  font-size: 0.8rem;
  margin-left: 2px;
  color: var(--text-soft);
}

.schedule-time {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}

.schedule-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
}

.schedule-venue {
  max-width: 860px;
  margin: 20px auto 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .schedule-item {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    row-gap: 4px;
    padding: 16px 18px;
  }

  .schedule-no {
    grid-column: 1;
    grid-row: 1;
  }

  .schedule-date {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.15rem;
  }

  .schedule-time {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.78rem;
  }

  .schedule-title {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.88rem;
  }
}