:root {
      --careu-navy: #202A44;
      --careu-teal: #00a89a;
      --careu-orange: #ff8b4a;
      --bg-soft: #f7fafc;
      --text-main: #111827;
      --muted: #6b7280;
    }

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

    body {
      margin: 0;
      font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: #ffffff;
      color: var(--text-main);
    }

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

    .container {
      width: min(1180px, 100%);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =========================
       TOP BLUE BAR
    ========================= */
    .top-bar {
      background: #202A44;
      color: #fff;
      font-size: 14px;
    }

    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 40px;
    }

    .top-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-left .phone {
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .top-right {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
    }

    .top-right a {
      opacity: .9;
    }

    .top-right a:hover {
      opacity: 1;
    }

    .lang {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
    }

    /* =========================
       MAIN HEADER NAV
    ========================= */
    header {
/*      background: #fff;*/
      box-shadow: 0 1px 0 rgba(15, 23, 42, .06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
    }

    .logo-box {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-main {
      font-size: 30px;
      font-weight: 700;
      color: #5c2c61;
    }

    .logo-sub {
      font-size: 13px;
      color: #6b7280;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 15px;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a.active {
      color: #c99a7b;
      font-weight: 600;
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background: #c99a7b;
      border-radius: 999px;
    }

    .btn-ask {
      background: #202A44;
      color: #fff;
      padding: 12px 28px;
      border-radius: 0;
      border: none;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: .18em;
      font-weight: 700;
      cursor: pointer;
    }

    .btn-ask:hover {
      opacity: .9;
    }

    /* =========================
       HERO SECTION (スライダー)
    ========================= */
    .hero {
      position: relative;
      width: 100%;
      color: #fff;
      height: 520px;
      overflow: hidden;
    }

    .hero-swiper {
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    .hero-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #c2a1b2 0%, rgba(15, 23, 42, .60) 45%, rgba(15, 23, 42, 0.05) 70%);
      z-index: -1;
    }

    .hero-content {
      max-width: 560px;
    }

    .hero-title {
      font-family: "Playfair Display", serif;
      font-size: 46px;
      line-height: 1.15;
      font-weight: 600;
      margin: 0 0 18px;
    }

    .hero-title span {
      display: block;
    }

    .hero-text {
      font-size: 17px;
      line-height: 1.8;
      color: #e5e7eb;
      max-width: 520px;
      margin-bottom: 34px;
    }

    .hero-text strong {
      font-weight: 700;
      color: #fff;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      margin-top: 8px;
    }

    .btn-learn {
      background: #202A44;
      border: none;
      color: #fff;
      padding: 12px 30px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 700;
      cursor: pointer;
    }

    .btn-learn:hover {
      opacity: .9;
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 60px;
      background: #ffffff;
      color: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
      user-select: none;
      z-index: 10;
    }

    .hero-arrow.left {
      left: 0;
    }

    .hero-arrow.right {
      right: 0;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
      content: "";
    }

    /* ===== HERO WRAPPER (Set Appointment などのボックス) ===== */
    .hero-wrap {
      background: url("../img-careu/bg.png") no-repeat center top #e5e7eb;
      background-size: cover;
      display: flex;
      align-items: stretch;
      justify-content: center;
/*      padding: 80px 0 90px;*/
    }

    .hero-inner {
      position: relative;
      display: flex;
      align-items: stretch;
    }

    .img01 {
      position: absolute;
      bottom: 0;
      left: -40px;
    }

    .hero-right {
      width: 563px;
      max-width: 100%;
      color: #fff;
      padding: 25px 15px 20px 15px;
      margin-left: auto;
      background: #4b5563;
      backdrop-filter: blur(2px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-eyebrow {
      font-size: 16px;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .9;
      margin-bottom: 8px;
    }

    .hero-right .hero-title {
      font-family: "Playfair Display", serif;
      font-size: 40px;
      line-height: 1.2;
      margin: 0 0 18px;
    }

    .hero-copy {
      font-size: 16px;
      line-height: 1.8;
      max-width: 640px;
      opacity: .95;
      margin-bottom: 30px;
    }

    .hero-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .hero-card {
      background: rgba(15, 23, 42, 0.20);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .hero-card-top {
      padding: 18px 20px 14px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-card-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .hero-card-title {
      font-weight: 700;
      font-size: 15px;
      line-height: 1.4;
    }

    .hero-card-bottom {
      background: #f7941d;
      text-align: center;
      padding: 14px 10px 12px;
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .14em;
    }

    .hero-card-bottom span {
      display: block;
    }

    .hero-card-bottom .small {
      font-size: 11px;
      opacity: .9;
      margin-top: 2px;
    }

    /* =========================
       SERVICES SECTION
    ========================= */
    .services-section {
      padding: 80px 0 100px;
      background: #f1f9ff;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 40px;
      align-items: flex-start;
      justify-items: center;
    }

    .service-item {
      text-align: center;
      max-width: 260px;
    }

    .service-icon-wrap {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: #e5e7eb;
      box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .service-icon-wrap img {
      width: 72%;
      height: auto;
      display: block;
    }

    .service-title-bar {
      background: #EFBF04;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 8px;
      font-family: "Playfair Display", serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .service-desc {
      font-size: 16px;
      line-height: 1.7;
      color: #4b5563;
      margin: 0 auto 24px;
    }

    .service-btn {
      display: inline-block;
      background: #00a89a;
      color: #ffffff;
      padding: 10px 28px;
      border-radius: 4px;
      font-family: "Playfair Display", serif;
      font-size: 18px;
      font-weight: 600;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    }

    /* =========================
       RESOURCE CENTER (CareU Training & Deployment)
    ========================= */
    .page-wrapper {
      max-width: 1160px;
      margin: 0 auto;
      padding: 64px 16px 80px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .section-header h1 {
      font-size: clamp(32px, 4vw, 44px);
      margin: 0 0 12px;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .section-header h1 span {
      color: var(--careu-teal);
    }

    .section-header p {
      margin: 0;
      font-size: 15px;
      color: var(--muted);
    }

    .tab-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 32px;
      margin: 40px 0 36px;
      border-bottom: 1px solid #e5e7eb;
      padding-bottom: 8px;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .tab-link {
      position: relative;
      padding: 6px 0 12px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.15s ease;
      white-space: nowrap;
      background: transparent;
      border: none;
    }

    .tab-link:hover {
      color: var(--careu-teal);
    }

    .tab-link.active {
      color: var(--careu-navy);
    }

    .tab-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      border-radius: 999px;
      background: var(--careu-orange);
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .resource-card {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
      display: flex;
      flex-direction: column;
      min-height: 280px;
    }

    .resource-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      display: block;
    }

    .card-body {
      padding: 18px 20px 50px;
      background: #006a7a;
      color: #ffffff;
      position: relative;
      flex: 1;
    }

    .card-category {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 6px;
    }

    .card-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .card-meta {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }

    .card-footer {
      position: absolute;
      right: 18px;
      bottom: 14px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      font-size: 13px;
    }

    .pill {
      background: var(--careu-orange);
      color: #ffffff;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }
      /* =========================
   CAREU COMMUNITY SECTION
========================= */
.careu-community {
  padding: 70px 0 80px;
  background: #f7fafc;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.careu-title {
  text-align: center;
  margin-bottom: 32px;
}

.careu-title h1 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  color: #202A44; /* Navy */
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.careu-title p {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
}

/* Instagram Header */
.careu-insta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.careu-insta-box img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.careu-username {
  font-size: 18px;
  font-weight: 700;
}

.careu-username small {
  display: block;
  font-size: 13px;
  color: #6b7280;
}

/* Community Grid */
.careu-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.careu-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.15);
}

.careu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.careu-card-footer {
  padding: 12px 14px 14px;
  font-size: 14px;
  color: #374151;
}
      /* =========================
      CAREU FOOTER
========================= */

.careu-footer {
  background: #202a44; /* teal-dark */
  color: #ffffff;
  padding: 50px 0 20px;
/*  margin-top: 60px;*/
  font-family: "Inter", sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SECTION */
.footer-logo {
	background-color: #fff;
  width: 130px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  margin: 0;
}

/* QUICK LINKS */
.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  color: #e8f7fa;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-size: 15px;
  margin: 6px 0;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: underline;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 14px;
}

.footer-social img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

/* BOTTOM TEXT */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 0.4px;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-soci


/* responsive */
@media (max-width: 960px) {
  .careu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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


    @media (max-width: 960px) {
      .hero-inner {
        flex-direction: column;
      }

      .hero-right {
        margin-left: 0;
        margin-top: 260px;
        padding: 40px 24px 48px;
      }

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

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 48px;
      }

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

      .top-bar-inner,
      .nav {
        padding-inline: 16px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        height: auto;
      }

      .hero-arrow {
        display: none;
      }
    }

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

      .card-grid {
        grid-template-columns: 1fr;
      }
    }