/* ================================================
   SWITCH LP - RESKILLING SUBSIDY SUPPORT
   Color: Blue-green (#2a9d8f), Simple & Clean
   ================================================ */

/* ------  Reset & Base  ------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a2e35;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-width: 1300px;
}

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

a {
  color: #2a9d8f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ------  Container  ------ */
.container {
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
}

.container-wide {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ------  Buttons  ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: #2a9d8f;
  color: #ffffff;
  border-color: #2a9d8f;
  box-shadow: 0 4px 14px rgba(42, 157, 143, 0.35);
}

.btn-primary:hover {
  background: #217a6f;
  border-color: #217a6f;
  box-shadow: 0 6px 20px rgba(42, 157, 143, 0.45);
}

.btn-outline {
  background: #fff;
  color: #2a9d8f;
  border-color: #2a9d8f;
}

.btn-outline:hover {
  background: #e6f7f5;
}

.btn-header {
  background: #2a9d8f;
  color: #ffffff;
  border-color: #2a9d8f;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

.btn-header:hover {
  background: #217a6f;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 1.1rem 3rem;
  font-size: 1.15rem;
  border-radius: 50px;
  width: 100%;
  max-width: 360px;
}

/* ------  Header  ------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e0f0ee;
  padding: 0.85rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a2e35;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #2a9d8f;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a2e35;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.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);
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* ------  Hero  ------ */
.hero {
  background: linear-gradient(135deg, #f0faf9 0%, #e6f7f5 50%, #f5fdfc 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 38%;
  align-items: flex-end;
  gap: 5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: #2a9d8f;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.35;
  color: #1a2e35;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: #2a9d8f;
  display: block;
}

.hero-title .highlight {
  font-size: 3.2rem;
  color: #e76f51;
}

.hero-sub {
  font-size: 1.0rem;
  color: #3d5a63;
  margin-bottom: 2rem;
  line-height: 1.9;
}


.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illust {
  width: 100%;
}

/* ------  Notice Banner  ------ */
.notice-banner {
  background: #fff3cd;
  border-top: 2px solid #f0a500;
  border-bottom: 2px solid #f0a500;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  color: #5a4000;
}

.notice-banner .container {
  text-align: center;
}

.notice-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ------  Sections  ------ */
.section {
  padding: 5rem 0;
}

.section-bg {
  background: #e8f7f5;
}

.section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2a9d8f;
  margin-bottom: 0.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #1a2e35;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.section-desc {
  font-size: 0.95rem;
  color: #5a7a82;
}

/* ------  Cards  ------ */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.cards-3 {
}

.card {
  width: calc(33.33% - 1rem);
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid #d0eeeb;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(42, 157, 143, 0.15);
  transform: translateY(-4px);
}

.card-illust {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-label {
  font-size: 0.85rem;
  color: #5a7a82;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.card-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1a2e35;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.card-value strong {
  color: #2a9d8f;
  font-size: 1.7rem;
}

.card-note {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Subsidy meta */
.subsidy-meta {
  margin-top: 2.5rem;
  background: #e8f7f5;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border: 1px solid #d0eeeb;
}

.subsidy-meta dl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-row {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.meta-row dt {
  font-weight: 700;
  color: #2a9d8f;
  min-width: 90px;
  font-size: 0.9rem;
}

.meta-row dd {
  color: #1a2e35;
  font-size: 0.95rem;
}

.meta-refs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}


.btn-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #2a9d8f;
  background: #ffffff;
  border: 2px solid #2a9d8f;
  border-radius: 8px;
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-ref:hover {
  background: #2a9d8f;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(42, 157, 143, 0.35);
}

.btn-ref-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ------  Checklist  ------ */
.checklist-wrap {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 3rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: 0;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 70px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: #1a2e35;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  border: 1.5px solid #d0eeeb;
  line-height: 1.6;
  position: relative;
}

.checklist li::after {
  content: '';
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #fff;
  border-right: 1.5px solid #d0eeeb;
  border-top: 1.5px solid #d0eeeb;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #2a9d8f;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.check-icon::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.checklist-illust {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: end;
}

.checklist-illust img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* ------  Course  ------ */
.course-list {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.course-list-lead {
  font-size: 1rem;
  color: #3d5a63;
  margin-bottom: 1rem;
}

.course-list-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  list-style: disc;
  padding: 1.5rem 1rem 1.5rem 3rem;
  border: 1px solid #d0eeeb;
  background: #e8f7f5;
  border-radius: 12px;
}

.course-list-items li {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e35;
}

.course-recommend-tag {
  display: inline-block;
  background: #2a9d8f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.15rem 0.7rem;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.course-detail-box {
  background: #ffffff;
  border: 2px solid #2a9d8f;
  border-radius: 16px;
}

.course-recommend {
  text-align: center;
  margin: 0 auto 2rem;
  padding: 20px;
  background: #2a9d8f;
  border-radius: 13px 13px 0 0;
}

.course-recommend-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.course-recommend-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.course-intro {
  width: 92%;
  margin: 0 auto 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
}

.curriculum {
  border-radius: 16px;
}

.curriculum-title {
  width: 92%;
  margin: 0 auto 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2a9d8f;
  letter-spacing: 0.05em;
}

.curriculum-steps {
  width: 92%;
  margin: 0 auto 4%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.curr-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #e8f7f5;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}


.curr-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #2a9d8f;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  line-height: 1.4;
  margin-top: 0.15rem;
  letter-spacing: 0.1em;
}

.curr-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2e35;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.core-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  background: #2a9d8f;
  color: #ffffff;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.curr-desc {
  font-size: 0.82rem;
  color: #5a7a82;
  line-height: 1.5;
}

/* Course result */
.course-result {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #e6f7f5;
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  border: 2px solid #2a9d8f;
}

.result-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.result-text {
  font-size: 1.05rem;
  color: #1a2e35;
  line-height: 1.6;
}

.result-text strong {
  color: #2a9d8f;
}


/* ------  Flow  ------ */
.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.flow-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem 1rem 1.25rem;
  border: 1.5px solid #d0eeeb;
  position: relative;
  margin-top: 1.2rem;
}

.flow-step-illust {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.flow-step-illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-num {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  background: #2a9d8f;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.flow-who {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  line-height: 1.4;
}

.who-switch {
  background: #d0eeeb;
  color: #2a9d8f;
}

.who-client {
  background: #e4eaec;
  color: #264653;
}

.flow-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2e35;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.flow-desc {
  font-size: 0.8rem;
  color: #3d5a63;
  line-height: 1.6;
  text-align: left;
  width: 100%;
  flex: 1;
}

.flow-important-note {
  font-size: 0.75rem;
  color: #e76f51;
  font-weight: 700;
  line-height: 1.4;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #b2ddd7;
  flex-shrink: 0;
  padding: 0 0.25rem;
  align-self: center;
}

/* ------  Notice Box  ------ */
.notice-box {
  background: #fff9f7;
  border: 2px solid #e76f51;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.notice-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0442d;
  margin-bottom: 1.1rem;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notice-list li {
  font-size: 0.95rem;
  color: #3a2010;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.7;
}

.notice-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #e76f51;
  font-weight: 700;
}

/* ------  Contact  ------ */
.contact-section {
  background: #2a9d8f;
}

.contact-section .container {
  background: #fff;
  border-radius: 28px;
  padding: 48px 56px;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-cta-box {
  text-align: center;
}

/* ------  Footer  ------ */
.site-footer {
  background: #1a2e35;
  padding: 2.5rem 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-company {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-note {
  font-size: 0.78rem;
  color: #8aaab2;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.75rem;
  color: #6a8a92;
}

/* ------  Utilities  ------ */
.sp-only {
  display: none;
}

/* PC非表示（SP専用） */
.m-pc-hidden {
  display: none;
}

/* SP非表示（PC専用）*/
.m-sp-hidden {
  display: revert;
}

/* ================================================
   RESPONSIVE - Tablet (≤ 900px)
   ================================================ */
@media (max-width: 640px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-illust {
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-title {
    font-size: 6.5vw;
  }

  .hero-title .highlight {
    font-size: 2.6rem;
  }

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

  .checklist-wrap {
    grid-template-columns: 1fr;
  }


  .curriculum-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    flex-wrap: wrap;
  }

  .flow-step {
    min-width: 140px;
  }
}

/* ================================================
   RESPONSIVE - Mobile (≤ 600px)
   ================================================ */
@media (max-width: 640px) {
  body {
    min-width: auto;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0f0ee;
    box-shadow: none;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }

  .header-nav.nav-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .header-nav a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid #f0f8f7;
    font-size: 0.95rem;
  }

  .header-nav a:last-child {
    border-bottom: none;
  }

  .site-header {
    position: sticky;
    overflow: visible;
  }

  .section {
    padding: 3.5rem 0;
  }

  .flow-step-illust {
    height: 65px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .sp-only {
    display: inline;
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero-title {
    font-size: 6.5vw;
  }

  .hero-title .highlight {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn,
  .hero-cta .btn-xl {
    width: 70%;
    max-width: none;
    padding: 0.7rem 1rem;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .curriculum {
    /* padding: 1rem; */
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0.1rem 0;
  }

  .flow-step {
    min-width: unset;
  }

  .notice-box {
    padding: 1.5rem 1rem;
  }

  .btn-xl {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
  }


  .course-result {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .notice-banner .container {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .subsidy-meta {
    padding: 1rem;
  }

  .meta-row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .m-pc-hidden {
    display: revert;
  }

  .m-sp-hidden {
    display: none;
  }

  /* --- Container --- */
  .container {
    width: 90%;
  }
  .container-wide {
    width: 90%;
  }

  /* --- Hero --- */
  .hero-inner {
    gap: 2rem;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.9rem;
    line-height: 1.4;
  }
  .hero-title {
    font-size: 6.5vw;
    line-height: 1.4;
  }
  .hero-sub {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  .hero-cta {
    gap: 0.8rem;
  }

  /* --- Section header --- */
  .section-header {
    margin-bottom: 2rem;
  }
  .section-label {
    font-size: 0.7rem;
  }
  .section-desc {
    font-size: 0.8rem;
  }

  /* --- Cards --- */
  .cards-grid {
    gap: 1rem;
  }
  .card {
    width: 100%;
    padding: 1.5rem;
  }
  .card-illust {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .card-illust::before {
    width: 100px;
    height: 100px;
  }
  .card-label {
    margin-bottom: 0.2rem;
  }
  .card-value {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  .card-value strong {
    font-size: 1.7rem;
  }

  /* --- Subsidy meta --- */
  .subsidy-meta {
    margin-top: 1rem;
    padding: 1rem;
  }
  .meta-row dt {
    font-size: 0.85rem;
  }
  .meta-row dd {
    font-size: 0.85rem;
  }
  .meta-refs {
    gap: 0.5rem;
  }
  .btn-ref {
    font-size: 0.8rem;
    gap: 0.3rem;
    border-width: 1px;
    padding: 0.5rem 0.5rem;
  }

  /* --- Checklist --- */
  .checklist {
    margin-bottom: 0;
  }
  .checklist li {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    gap: 0.5rem;
    line-height: 1.5;
  }
  .checklist li::after {
    right: auto;
    top: auto;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-top: none;
    border-right: 1.5px solid #d0eeeb;
    border-bottom: 1.5px solid #d0eeeb;
  }
  .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .check-icon::after {
    width: 8px;
    height: 5px;
  }
  .checklist-illust {
    display: flex;
  }
  .checklist-illust img {
    max-width: 120px;
  }

  /* --- Curriculum --- */
  .curriculum-title {
    width: 90%;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .curriculum-steps {
    width: 90%;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }
  .curr-step {
    gap: 0.7rem;
    padding: 1rem 0.8rem;
  }
  .curr-name {
    font-size: 0.9rem;
  }
  .curr-desc {
    font-size: 0.8rem;
  }

  /* --- Course result --- */
  .course-result {
    gap: 0.7rem;
    border-width: 1px;
  }
  .result-icon {
    width: 30px;
    height: 30px;
  }
  .result-text {
    font-size: 0.85rem;
  }

  /* --- Flow --- */
  .flow-step {
    padding: 2rem 1rem 1.5rem;
  }
  .flow-who {
    font-size: 0.7rem;
  }
  .flow-title {
    font-size: 1rem;
  }
  .flow-desc {
    font-size: 0.8rem;
    text-align: center;
  }

  /* --- Notice --- */
  .notice-list li {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* --- Contact --- */
  .contact-section {
    padding: 3rem 0;
  }
  .contact-section .container {
    padding: 30px 18px;
  }
  .contact-section .section-header{
    margin-bottom: 1.5rem;
  }

  /* --- Header --- */
  .header-right {
    gap: 1rem;
  }
  .btn-header {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  /* --- Hero CTA --- */
  .hero-cta .btn,
  .hero-cta .btn-xl {
    font-size: 0.85rem;
  }

  /* --- Course intro --- */
  .course-intro{
    width: 90%;
    font-size: 0.85rem;
    line-height: 1.7;
  }


  /* --- Course detail box --- */
  .course-detail-box {
    border-radius: 10px;
  }

  /* --- Course list --- */
  .course-list-lead {
    font-size: 0.85rem;
  }
  .course-list-items{
    padding: 1rem 1rem 1rem 2rem;
  }
  .course-list-items li {
    font-size: 0.8rem;
  }
  
  .course-recommend{
    padding: 18px;
    margin-bottom: 1rem;
    border-radius: 8px 8px 0 0;
  }
  .course-recommend-tag{
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
  }
  .course-recommend-name {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  /* --- Contact CTA ボタンは50px維持 --- */
  .contact-cta-box .btn {
    border-radius: 50px;
  }

  /* --- Border radius 統一 (50px / 50% は除く) --- */
  .btn,
  .card,
  .subsidy-meta,
  .btn-ref,
  .checklist li,
  .curriculum,
  .curr-step,
  .core-badge,
  .course-result,
  .flow-step,
  .notice-box,
  .contact-section .container,
  .hamburger span {
    border-radius: 10px;
  }
}
