
    @import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

    :root {
      --primary: #FF6B6B;
      --secondary: #FFA07A;
      --accent: #FFE5E5;
      --bg: #FFFAFA;
      --dark: #CC3333;
      --text: #2D2D2D;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 400;
      color: var(--text);
      background-color: var(--bg);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER & NAV ===== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 250, 250, 0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 12px rgba(255, 107, 107, 0.12);
      z-index: 1000;
      transition: box-shadow 0.3s ease;
    }

    .nav-wrapper {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }

    .nav-logo-main {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--primary);
      line-height: 1.2;
    }

    .nav-logo-sub {
      font-size: 0.68rem;
      color: var(--secondary);
      letter-spacing: 0.05em;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 2rem;
    }

    .nav-menu a {
      text-decoration: none;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-menu a:hover {
      color: var(--primary);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-cta-btn {
      background-color: var(--primary);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.875rem !important;
      font-weight: 700 !important;
      transition: background-color 0.3s ease, transform 0.2s ease !important;
      box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
    }

    .nav-cta-btn::after {
      display: none !important;
    }

    .nav-cta-btn:hover {
      background-color: var(--dark) !important;
      transform: translateY(-2px);
    }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger-btn span {
      display: block;
      width: 26px;
      height: 3px;
      background-color: var(--text);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.is-active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger-btn.is-active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.is-active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: rgba(255, 250, 250, 0.98);
      backdrop-filter: blur(10px);
      z-index: 999;
      padding: 16px 0;
      box-shadow: 0 8px 24px rgba(255, 107, 107, 0.15);
    }

    .mobile-nav.is-open {
      display: block;
    }

    .mobile-nav-list {
      list-style: none;
      padding: 0 24px;
    }

    .mobile-nav-list li {
      border-bottom: 1px solid var(--accent);
    }

    .mobile-nav-list a {
      display: block;
      padding: 14px 8px;
      text-decoration: none;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .mobile-nav-list a:hover {
      color: var(--primary);
    }

    /* ===== HERO ===== */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 229, 229, 0.95) 0%, rgba(255, 250, 250, 0.85) 60%, rgba(255, 160, 122, 0.25) 100%);
      z-index: 0;
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background-image: url('./images/wellness_journey_start_motivat_1.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.12;
      z-index: -1;
    }

    .hero-blob-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 107, 107, 0.18) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      border-radius: 50%;
      z-index: 0;
    }

    .hero-blob-2 {
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(255, 160, 122, 0.2) 0%, transparent 70%);
      bottom: 50px;
      left: -80px;
      border-radius: 50%;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 48px;
      width: 100%;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .hero-badge {
      display: inline-block;
      background-color: var(--accent);
      color: var(--dark);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 50px;
      letter-spacing: 0.06em;
      width: fit-content;
    }

    .hero-heading {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.3;
      color: var(--text);
    }

    .hero-heading .highlight {
      color: var(--primary);
      position: relative;
    }

    .hero-heading .highlight::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 6px;
      background-color: var(--accent);
      z-index: -1;
    }

    .hero-description {
      font-size: 1.05rem;
      color: #555;
      max-width: 500px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background-color: var(--primary);
      color: #fff;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
      display: inline-block;
    }

    .btn-primary:hover {
      background-color: var(--dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(204, 51, 51, 0.4);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      border: 2px solid var(--primary);
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-outline:hover {
      background-color: var(--accent);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      padding-top: 16px;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
    }

    .hero-stat-number {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.75rem;
      color: #777;
      margin-top: 4px;
    }

    .hero-image-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-img {
      width: 100%;
      max-width: 520px;
      height: 480px;
      object-fit: cover;
      border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
      box-shadow: 0 20px 60px rgba(255, 107, 107, 0.25);
    }

    .hero-floating-card {
      position: absolute;
      background: #fff;
      border-radius: 16px;
      padding: 12px 18px;
      box-shadow: 0 8px 24px rgba(255, 107, 107, 0.2);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text);
    }

    .hero-floating-card-1 {
      bottom: 60px;
      left: -20px;
    }

    .hero-floating-card-2 {
      top: 60px;
      right: -20px;
    }

    .hero-floating-card .card-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      color: #999;
      font-size: 0.75rem;
    }

    .scroll-arrow {
      width: 28px;
      height: 28px;
      border-right: 2px solid var(--secondary);
      border-bottom: 2px solid var(--secondary);
      transform: rotate(45deg);
      animation: bounce-down 1.5s infinite;
    }

    @keyframes bounce-down {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50% { transform: rotate(45deg) translateY(6px); }
    }

    /* ===== SECTION SHARED ===== */
    .section-padding {
      padding: 80px 0;
    }

    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--secondary);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--text);
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .section-desc {
      font-size: 1rem;
      color: #666;
      max-width: 600px;
      line-height: 1.8;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header .section-desc {
      margin: 0 auto;
    }

    .divider-line {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 2px;
      margin: 12px auto 0;
    }

    /* ===== VALUE PILLARS ===== */
    .pillars-section {
      background-color: var(--accent);
      padding: 80px 0;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .pillar-card {
      background-color: #fff;
      border-radius: 16px;
      padding: 40px 32px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    .pillar-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(255, 107, 107, 0.2);
    }

    .pillar-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 2.2rem;
    }

    .pillar-title {
      font-size: 1.3rem;
      color: var(--text);
      margin-bottom: 14px;
    }

    .pillar-desc {
      font-size: 0.92rem;
      color: #666;
      line-height: 1.8;
    }

    .pillar-tag {
      display: inline-block;
      background-color: var(--accent);
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      margin-top: 16px;
    }

    /* ===== SERVICES ===== */
    .services-section {
      padding: 80px 0;
      background-color: var(--bg);
    }

    .services-filter {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .filter-btn {
      padding: 10px 22px;
      border-radius: 50px;
      border: 2px solid var(--accent);
      background-color: transparent;
      color: #777;
      font-size: 0.875rem;
      font-weight: 500;
      font-family: 'Noto Sans JP', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.is-active {
      background-color: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .service-card {
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(255, 107, 107, 0.18);
    }

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

    .service-card-body {
      padding: 28px 28px 32px;
    }

    .service-category-tag {
      display: inline-block;
      background-color: var(--accent);
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
      letter-spacing: 0.04em;
    }

    .service-card-title {
      font-size: 1.15rem;
      color: var(--text);
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 0.88rem;
      color: #777;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 700;
      transition: gap 0.3s ease;
    }

    .service-card-link:hover {
      gap: 10px;
    }

    .service-card-link .arrow {
      font-size: 1rem;
    }

    .service-card.is-hidden {
      display: none;
    }

    /* ===== GALLERY ===== */
    .gallery-section {
      padding: 80px 0;
      background-color: var(--accent);
    }

    .gallery-carousel-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
    }

    .gallery-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .gallery-slide {
      min-width: 100%;
      position: relative;
    }

    .gallery-slide-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .gallery-before-after {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .gallery-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-img-wrap img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .gallery-img-wrap:hover img {
      transform: scale(1.05);
    }

    .gallery-label-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: rgba(255, 107, 107, 0.9);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
    }

    .gallery-slide-content {
      padding: 24px;
    }

    .gallery-slide-tag {
      display: inline-block;
      background-color: #fff;
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .gallery-slide-title {
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .gallery-slide-desc {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .gallery-member-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .gallery-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .gallery-member-name {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text);
    }

    .gallery-member-detail {
      font-size: 0.75rem;
      color: #999;
    }

    .gallery-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 32px;
    }

    .gallery-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--primary);
      background-color: #fff;
      color: var(--primary);
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-btn:hover {
      background-color: var(--primary);
      color: #fff;
    }

    .gallery-dots {
      display: flex;
      gap: 8px;
    }

    .gallery-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ddd;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .gallery-dot.is-active {
      background-color: var(--primary);
      transform: scale(1.3);
    }

    /* Lightbox */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }

    .lightbox-overlay.is-open {
      display: flex;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: 12px;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 32px;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
      transition: color 0.3s ease;
    }

    .lightbox-close:hover {
      color: var(--primary);
    }

    /* ===== TRUST METRICS ===== */
    .metrics-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
      position: relative;
      overflow: hidden;
    }

    .metrics-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .metric-item {
      padding: 32px 24px;
    }

    .metric-number {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 3rem;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
    }

    .metric-suffix {
      font-size: 1.4rem;
    }

    .metric-label {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
    }

    .metric-divider {
      width: 40px;
      height: 3px;
      background-color: rgba(255, 255, 255, 0.4);
      margin: 12px auto 0;
      border-radius: 2px;
    }

    /* ===== FEATURED CONTENT ===== */
    .blog-section {
      padding: 80px 0;
      background-color: var(--bg);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .blog-card {
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(255, 107, 107, 0.16);
    }

    .blog-card-img-wrap {
      position: relative;
      overflow: hidden;
    }

    .blog-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .blog-card:hover .blog-card-img {
      transform: scale(1.05);
    }

    .blog-card-category {
      position: absolute;
      top: 16px;
      left: 16px;
      background-color: var(--primary);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
    }

    .blog-card-body {
      padding: 24px;
    }

    .blog-card-meta {
      font-size: 0.78rem;
      color: #aaa;
      margin-bottom: 10px;
    }

    .blog-card-title {
      font-size: 1.05rem;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .blog-card-excerpt {
      font-size: 0.85rem;
      color: #777;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .blog-card-link {
      color: var(--primary);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s ease;
    }

    .blog-card-link:hover {
      gap: 10px;
    }

    .blog-section-footer {
      text-align: center;
      margin-top: 40px;
    }

    /* ===== CTA / PRICING ===== */
    .pricing-section {
      padding: 80px 0;
      background-color: var(--accent);
    }

    .limited-banner {
      background: linear-gradient(90deg, var(--dark), var(--primary), var(--secondary));
      color: #fff;
      text-align: center;
      padding: 14px 24px;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 48px;
      border-radius: 12px;
      letter-spacing: 0.04em;
    }

    .limited-banner span {
      background-color: rgba(255, 255, 255, 0.2);
      padding: 3px 10px;
      border-radius: 50px;
      margin-left: 8px;
      font-size: 0.82rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }

    .pricing-card {
      background-color: #fff;
      border-radius: 16px;
      padding: 40px 32px;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 2px solid transparent;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
    }

    .pricing-card.is-featured {
      border-color: var(--primary);
      box-shadow: 0 8px 32px rgba(255, 107, 107, 0.2);
    }

    .pricing-popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 6px 20px;
      border-radius: 50px;
      white-space: nowrap;
    }

    .pricing-tier-name {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--secondary);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .pricing-plan-name {
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 4px;
    }

    .pricing-price {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 2.8rem;
      color: var(--primary);
      line-height: 1;
      margin: 16px 0 4px;
    }

    .pricing-price-sub {
      font-size: 0.82rem;
      color: #aaa;
      margin-bottom: 24px;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pricing-features li {
      font-size: 0.88rem;
      color: #555;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }

    .pricing-features li .check {
      color: var(--primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pricing-features li .cross {
      color: #ccc;
      flex-shrink: 0;
    }

    .pricing-enroll-btn {
      display: block;
      text-align: center;
      padding: 14px 24px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .pricing-enroll-btn.primary-btn {
      background-color: var(--primary);
      color: #fff;
      box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
    }

    .pricing-enroll-btn.primary-btn:hover {
      background-color: var(--dark);
      transform: translateY(-2px);
    }

    .pricing-enroll-btn.outline-btn {
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .pricing-enroll-btn.outline-btn:hover {
      background-color: var(--accent);
    }

    .pricing-guarantee {
      text-align: center;
      font-size: 0.85rem;
      color: #888;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background-color: var(--text);
      color: #ccc;
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 6px;
    }

    .footer-brand-tagline {
      font-size: 0.8rem;
      color: var(--secondary);
      margin-bottom: 16px;
    }

    .footer-desc {
      font-size: 0.85rem;
      color: #aaa;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.83rem;
      color: #aaa;
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .footer-contact-item .icon {
      color: var(--secondary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-col-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-list a {
      text-decoration: none;
      color: #aaa;
      font-size: 0.85rem;
      transition: color 0.3s ease;
    }

    .footer-nav-list a:hover {
      color: var(--secondary);
    }

    .footer-hours-item {
      font-size: 0.83rem;
      color: #aaa;
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }

    .footer-hours-item span:last-child {
      color: #ccc;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copyright {
      font-size: 0.78rem;
      color: #777;
    }

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

    .footer-legal-links a {
      font-size: 0.78rem;
      color: #777;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-text {
        align-items: center;
      }

      .hero-description {
        text-align: center;
      }

      .hero-image-wrap {
        display: none;
      }

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

      .gallery-slide-inner {
        grid-template-columns: 1fr;
      }

      .gallery-before-after {
        grid-template-columns: 1fr 1fr;
      }

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

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

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

      .pricing-card.is-featured {
        order: -1;
      }

      .limited-banner {
        font-size: 0.8rem;
      }
    }

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

      .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
      }

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

      .gallery-before-after {
        grid-template-columns: 1fr;
      }

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