    /* ========================================
     基本設定
     ======================================== */
    :root {
      --primary-color: #FFD700;
      --primary-light: #FFE55C;
      --primary-dark: #F5C542;
      --secondary-color: #FFF8DC;
      --accent-yellow: #FFEB99;
      --accent-peach: #FFE4B5;
      --beige: #F5F5DC;
      --cream: #FFFACD;
      --soft-orange: #FFE4C4;
      --warm-white: #FFFEF7;
      --text-primary: #5D4E37;
      --text-secondary: #8B7355;
      --text-light: #A68A64;
      --bg-primary: #FFFEFA;
      --bg-secondary: #FFFDE6;
      --bg-card: #FFFFFF;
      --shadow-soft: 0 4px 20px rgba(255, 215, 0, .15);
      --shadow-medium: 0 8px 30px rgba(255, 215, 0, .2);
      --shadow-strong: 0 12px 40px rgba(255, 215, 0, .25);
      --border-radius-sm: 12px;
      --border-radius-md: 20px;
      --border-radius-lg: 30px;
      --border-radius-xl: 50px;
      --font-primary: "UD デジタル 教科書体 NK-R", "UD Digi Kyokasho NK-R", "Zen Maru Gothic", sans-serif;
      --font-accent: "UD デジタル 教科書体 NK-R", "UD Digi Kyokasho NK-R", "Zen Maru Gothic", sans-serif;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-primary);
      color: var(--text-primary);
      background-color: var(--bg-primary);
      line-height: 1.8;
      font-size: 18px;
      /* Slightly smaller base size */
      overflow-x: hidden
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px
    }

    /* ヘッダー */
    .header {
      background: linear-gradient(135deg, var(--secondary-color) 0%, var(--warm-white) 100%);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-soft);
      border-bottom: 3px solid var(--accent-yellow)
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1010;
      /* Ensure header content is above the menu if it overlaps */
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 24px;
      font-weight: 700;
      color: var(--text-primary);
      font-family: var(--font-accent)
    }

    .logo i {
      color: var(--primary-color);
      font-size: 32px
    }

    .nav {
      display: flex;
      gap: 30px;
      align-items: center
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
      transition: all .3s ease;
      position: relative;
      padding: 8px 0;
      background: none;
      border: none;
      font-family: inherit;
      font-size: inherit;
      cursor: pointer;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--primary-color);
      transition: width .3s ease;
      border-radius: 10px
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%
    }

    .nav-link:hover {
      color: var(--primary-dark)
    }

    /* Dropdown Styles */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 250px;
      box-shadow: var(--shadow-medium);
      border-radius: 8px;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1100;
    }

    .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      display: block;
      padding: 10px 20px;
      color: var(--text-primary);
      text-decoration: none;
      font-size: 14px;
      transition: background 0.2s;
    }

    .dropdown-item:hover {
      background: var(--bg-secondary);
      color: var(--primary-dark);
    }

    .dropdown-subitem {
      display: block;
      padding: 8px 20px 8px 35px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 13px;
    }

    .dropdown-subitem:hover {
      color: var(--primary-dark);
      background: var(--warm-white);
    }

    .dropdown-toggle {
      background: none;
      border: none;
      font-family: inherit;
      font-size: inherit;
      cursor: pointer;
      padding: 8px 0;
    }

    .menu-toggle {
      display: none;
      background: var(--primary-color);
      color: #fff;
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      z-index: 1100;
      transition: all .3s ease;
      box-shadow: var(--shadow-medium);
      position: relative
    }

    .menu-toggle:hover {
      background: var(--primary-dark);
      transform: scale(1.05)
    }

    .mobile-menu {
      display: none;
      /* Hidden by default on desktop */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      padding-top: 80px;
      padding-bottom: 20px;
      box-shadow: var(--shadow-medium);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      /* Hide when not open */
      opacity: 0;
      /* Hide when not open */
      transition: max-height .4s ease-in-out, opacity 0.3s ease, visibility 0.3s;
    }

    .mobile-menu.open {
      display: block;
      visibility: visible;
      opacity: 1;
      max-height: 500px;
      /* Ensure enough height for menu items */
    }

    .mobile-submenu .mobile-nav-link {
      text-align: left;
      padding: 12px 25% !important;
    }

    .mobile-submenu .mobile-nav-link.mobile-nav-link-child {
      text-align: left;
      padding: 12px 25% 12px 28% !important;
    }

    .mobile-menu-inner {
      display: flex;
      flex-direction: column;
      padding: 0
    }

    @media (max-width: 768px) {
      .mobile-menu {
        display: block;
        /* Allow it to be visible in mobile view (controlled by max-height) */
      }
    }

    .mobile-menu.open {
      max-height: 800px
    }

    .mobile-nav-link {
      display: block;
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
      padding: 14px 20px;
      border-bottom: 1px solid var(--accent-yellow);
      transition: background .2s ease
    }

    .mobile-nav-link:last-child {
      border-bottom: none
    }

    .mobile-nav-link:hover {
      background: var(--accent-yellow);
      color: var(--text-primary)
    }

    .mobile-menu.active {
      display: flex;
      flex-direction: column;
      gap: 15px
    }

    .mobile-nav-link {
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
      padding: 12px;
      border-radius: var(--border-radius-sm);
      transition: all .3s ease;
      text-align: center
    }

    .mobile-nav-link:hover {
      background: var(--accent-yellow);
      color: var(--text-primary)
    }

    /* Accordion Toggle Refinement */
    .accordion-toggle {
      font-weight: 500 !important;
      color: var(--text-primary) !important;
    }

    .accordion-toggle i {
      width: 28px;
      height: 28px;
      background: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* ヒーロー */
    .hero {
      position: relative;
      padding: 0;
      margin: 0
    }

    .hero-slider {
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      overflow: hidden;
    }

    .hero-slides {
      position: relative;
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      max-height: 75vh;
    }

    /* ふわっとフェードする基本設定 */
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      z-index: 1;
      transition: opacity 3s ease;
      pointer-events: none;
      /* 非アクティブはクリック不可 */
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* 表示中スライド */
    .hero-slide.is-active {
      opacity: 1;
      z-index: 2;
      pointer-events: auto;
      /* 必要なら有効化 */
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 24px
    }

    .hero-overlay-inner {
      max-width: 960px;
      background: rgba(255, 255, 255, 0.6);
      /* Lighter overlay */
      backdrop-filter: blur(4px);
      border-radius: 24px;
      padding: 28px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .9);
      padding: 8px 16px;
      border-radius: 9999px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 14px;
      font-weight: 700;
      color: var(--text-primary);
      font-size: 14px
    }

    .hero-title {
      font-size: 40px;
      /* adjusted */
      line-height: 1.2;
      margin-bottom: 10px;
      color: var(--text-primary);
      /* Changed to dark text for lighter bg */
      font-family: var(--font-accent)
    }

    .hero-description {
      font-size: 18px;
      color: var(--text-primary);
      /* Changed to dark text */
      margin-bottom: 22px;
      line-height: 1.8;
      max-width: 450px;
      /* Limit line length ~20-25 chars */
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center
    }

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

    .btn-secondary {
      background: #fff;
      color: var(--text-primary);
      border: 2px solid var(--accent-yellow)
    }

    .hero-dots {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .6);
      border: 1px solid rgba(0, 0, 0, .15);
      cursor: pointer
    }

    .hero-dot.is-active {
      background: #fff
    }

    @media (max-width:1024px) {
      .hero-slides {
        height: 64vh
      }

      .hero-title {
        font-size: 40px
      }
    }

    @media (max-width:768px) {
      .hero-slides {
        height: 56vh
      }

      .hero-title {
        font-size: 32px
      }

      .hero-overlay-inner {
        padding: 20px
      }
    }

    @media (max-width:480px) {
      .hero-slides {
        height: 48vh
      }

      .hero-title {
        font-size: 26px
      }

      .hero-description {
        font-size: 18px
      }
    }

    /* 特徴 */
    .features {
      padding: 80px 0;
      background: var(--bg-primary)
    }

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

    .feature-card {
      background: #fff;
      padding: 40px 30px;
      border-radius: var(--border-radius-md);
      text-align: center;
      transition: all .3s ease;
      box-shadow: var(--shadow-soft);
      border: 3px solid var(--accent-yellow)
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-medium);
      border-color: var(--primary-color)
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 36px;
      color: #fff;
      box-shadow: var(--shadow-soft)
    }

    .feature-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--text-primary);
      font-family: var(--font-accent);
      font-weight: 700
    }

    .feature-card p {
      color: var(--text-secondary);
      font-size: 15px
    }

    /* セクション共通 */
    .section-header {
      text-align: center;
      margin-bottom: 60px
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-yellow);
      color: var(--text-primary);
      padding: 8px 20px;
      border-radius: var(--border-radius-xl);
      font-weight: 600;
      margin-bottom: 16px;
      font-size: 14px;
      box-shadow: var(--shadow-soft)
    }

    .section-badge i {
      font-size: 16px
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 16px;
      font-family: var(--font-accent)
    }

    .section-description {
      font-size: 18px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 1em;
    }

    .section-link {
      text-align: center;
    }

    .link-btn {
      font-size: 16px;
      display: block;
      align-items: center;
      gap: 8px;
      background: var(--primary-dark);
      color: var(--text-primary);
      padding: 8px 30px;
      border-radius: var(--border-radius-xl);
      font-weight: 600;
      margin-bottom: 25px;
      box-shadow: var(--shadow-soft);
      text-align: center;
      width: 100%;
    }

    .link-btn a {
      color: var(--text-primary);
      text-decoration: none;
    }

    br.sp {
      display: none;
    }

    /* ご挨拶 */
    .greetings {
      padding: 100px 0;
      background: linear-gradient(180deg, var(--bg-primary) 0%, var(--secondary-color) 100%)
    }

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

    .greeting-card {
      background: #fff;
      padding: 40px;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-soft);
      transition: all .3s ease;
      position: relative;
      border: 3px solid var(--accent-yellow)
    }

    .greeting-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-strong)
    }

    .greeting-card.featured {
      border: 3px solid var(--primary-color);
      background: linear-gradient(135deg, var(--warm-white) 0%, #fff 100%)
    }

    .featured-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
      color: #fff;
      padding: 6px 16px;
      border-radius: var(--border-radius-xl);
      font-size: 12px;
      font-weight: 700;
      box-shadow: var(--shadow-soft)
    }

    .greeting-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 42px;
      color: #fff;
      box-shadow: var(--shadow-medium)
    }

    .greeting-card h3 {
      font-size: 24px;
      margin-bottom: 16px;
      color: var(--text-primary);
      text-align: center;
      font-family: var(--font-accent);
      font-weight: 700
    }

    .greeting-card>p {
      color: var(--text-secondary);
      text-align: center;
      margin-bottom: 24px;
      line-height: 1.7
    }

    .greeting-list {
      list-style: none;
      margin-bottom: 24px
    }

    .greeting-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      color: var(--text-primary)
    }

    .greeting-list i {
      color: var(--primary-color);
      font-size: 14px
    }

    .greeting-price {
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-dark);
      background: var(--accent-yellow);
      padding: 16px;
      border-radius: var(--border-radius-sm);
      margin-top: 20px
    }

    .greetings .section-header {
      margin-bottom: 0px
    }

    /* サービス */
    .services {
      padding: 100px 0;
      background: linear-gradient(180deg, var(--bg-primary) 0%, var(--secondary-color) 100%)
    }

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

    .service-card {
      background: #fff;
      padding: 40px;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-soft);
      transition: all .3s ease;
      position: relative;
      border: 3px solid var(--accent-yellow)
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-strong)
    }

    .service-card.featured {
      border: 3px solid var(--primary-color);
      background: linear-gradient(135deg, var(--warm-white) 0%, #fff 100%)
    }

    .featured-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
      color: #fff;
      padding: 6px 16px;
      border-radius: var(--border-radius-xl);
      font-size: 12px;
      font-weight: 700;
      box-shadow: var(--shadow-soft)
    }

    .service-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 42px;
      color: #fff;
      box-shadow: var(--shadow-medium)
    }

    .service-card h3 {
      font-size: 24px;
      margin-bottom: 0px;
      color: var(--text-primary);
      text-align: center;
      font-family: var(--font-accent);
      font-weight: 700
    }

    .service-card>p {
      color: var(--text-secondary);
      text-align: center;
      margin-bottom: 24px;
      line-height: 1.7
    }

    .service-list {
      list-style: none;
      margin-bottom: 24px
    }

    .service-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      color: var(--text-primary)
    }

    .service-list i {
      color: var(--primary-color);
      font-size: 14px
    }

    .service-price {
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-dark);
      background: var(--accent-yellow);
      padding: 16px;
      border-radius: var(--border-radius-sm);
      margin-top: 20px
    }

    /* その他 */
    .others {
      padding: 100px 0;
      background: var(--bg-primary)
    }

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

    .other-card {
      background: #fff;
      border-radius: var(--border-radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      position: relative;
      height: 300px;
      transition: all .3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none
    }

    .other-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease
    }

    .other-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s ease
    }

    .other-card h3 {
      position: relative;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      z-index: 2;
      border: 2px solid #fff;
      padding: 12px 30px;
      border-radius: 50px;
      font-family: var(--font-accent)
    }

    .other-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium)
    }

    .other-card:hover img {
      transform: scale(1.1)
    }

    .other-card:hover .other-overlay {
      background: rgba(0, 0, 0, .2)
    }

    /* マップ・アクセス */
    .access-map {
      width: 100%;
      height: 400px;
      border: none;
      filter: grayscale(10%) contrast(1.1)
    }

    /* お問い合わせ */
    .contact-form-container {
      max-width: 800px;
      margin: 0 auto;
      background: #fff;
      padding: 50px;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-medium);
      position: relative;
      overflow: hidden;
      border: 4px solid var(--accent-yellow)
    }

    .contact-form-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-yellow), var(--primary-light))
    }

    .form-group {
      margin-bottom: 24px
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 700;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .required-badge {
      background: #FF6B6B;
      color: #fff;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 12px;
      font-weight: 600
    }

    .form-control {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #eee;
      border-radius: var(--border-radius-sm);
      font-size: 16px;
      transition: all .3s ease;
      font-family: inherit;
      background: var(--warm-white)
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(255, 215, 0, .2);
      background: #fff
    }

    textarea.form-control {
      min-height: 180px;
      resize: vertical
    }

    .submit-btn {
      width: 100%;
      padding: 18px;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
      border: none;
      border-radius: var(--border-radius-xl);
      cursor: pointer;
      transition: all .3s ease;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden
    }

    .submit-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, .2);
      transform: translateX(-100%);
      transition: transform .4s ease
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium)
    }

    .submit-btn:hover::after {
      transform: translateX(100%)
    }

    /* フッター */
    .footer {
      background: var(--text-primary);
      color: var(--beige);
      padding: 60px 0 20px
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 40px;
      width: 100%;
    }

    .footer-logo-box {
      background-color: #fff;
      padding: 15px;
      border-radius: var(--border-radius-sm);
      display: inline-block;
      margin-bottom: 20px;
    }

    .footer-logo-box .logo img {
      height: 60px;
      width: auto;
      display: block;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
    }

    .footer-tagline {
      color: var(--beige);
      line-height: 1.8
    }

    .footer-links h4,
    .footer-contact h4 {
      color: var(--accent-yellow);
      margin-bottom: 20px;
      font-size: 18px;
      font-family: var(--font-accent);
      font-weight: 700
    }

    .footer-links ul,
    .footer-contact ul {
      list-style: none
    }

    .footer-links li,
    .footer-contact li {
      margin-bottom: 12px
    }

    .footer a {
      color: #fff;
      text-decoration: none;
      transition: all .3s ease;
    }

    .footer a:visited {
      color: #fff;
    }

    .footer a:hover {
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
      padding-left: 5px;
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--beige)
    }

    .footer-contact i {
      color: var(--accent-yellow);
      width: 20px
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(245, 245, 220, .2);
      color: var(--beige);
      font-size: 14px
    }

    .social-icons i {
      font-size: 38px;
    }

    .social-link[aria-label="LINE"] i {
      color: #00B900;
    }

    .social-link[aria-label="Instagram"] i {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* --- New Styles for Updated Content --- */

    /* Schedule */
    .schedule-box {
      background: var(--warm-white);
      border: 4px solid var(--accent-yellow);
      padding: 20px;
      border-radius: var(--border-radius-md);
      text-align: center;
      margin-top: 30px;
      box-shadow: var(--shadow-soft);
    }

    .schedule-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 15px;
      font-family: var(--font-accent);
      border-bottom: 2px dashed var(--accent-peach);
      padding-bottom: 10px;
      display: inline-block;
    }

    .schedule-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 16px;
      color: var(--text-primary);
    }

    .schedule-item {
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 5px;
      background: rgba(255, 235, 153, 0.2);
      border-radius: 8px;
    }

    .schedule-month {
      font-weight: 700;
      color: var(--text-secondary);
      min-width: 40px;
    }

    .schedule-days {
      letter-spacing: 1px;
    }

    /* Note / Speech Bubble */
    .note-bubble {
      position: relative;
      background: #fff0f5;
      border: 2px solid #ffb6c1;
      border-radius: 15px;
      padding: 30px 15px 15px 15px;
      margin: 20px 0;
      color: #d63384;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
    }

    .note-bubble::before {
      content: "\f075";
      font-family: "Font Awesome 6 Free";
      position: absolute;
      top: -15px;
      left: 20px;
      font-size: 24px;
      color: #ffb6c1;
      background: #fff;
      border-radius: 50%;
      padding: 0 5px;
    }

    /* Reservation Flow */
    .flow-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }

    .flow-step {
      display: flex;
      gap: 20px;
      background: #fff;
      padding: 25px;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-soft);
      border-left: 5px solid var(--primary-color);
      position: relative;
    }

    .step-number {
      background: var(--primary-color);
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      flex-shrink: 0;
    }

    .step-content h4 {
      font-size: 18px;
      color: var(--text-primary);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .step-content p {
      font-size: 18px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .step-arrow {
      text-align: center;
      color: var(--accent-yellow);
      font-size: 24px;
      margin: -10px 0;
    }

    /* Clinics & Staff */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .clinic-card,
    .staff-card {
      background: #fff;
      padding: 30px;
      border-radius: var(--border-radius-md);
      border: 2px solid var(--beige);
      box-shadow: var(--shadow-soft);
      text-align: center;
      height: 100%;
      transition: transform 0.3s;
    }

    .clinic-card:hover,
    .staff-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
    }

    .card-img-placeholder {
      width: 100%;
      height: 200px;
      background: var(--secondary-color);
      border-radius: var(--border-radius-sm);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 14px;
    }

    .card-img-placeholder-002 {
      width: calc(100% - 80px);
      display: block;
      margin: 0 auto;
    }

    .card-title {
      font-size: 22px;
      color: var(--text-primary);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .card-subtitle {
      font-size: 18px;
      color: var(--primary-dark);
      font-weight: 700;
      margin-bottom: 15px;
      display: block;
    }

    .card-desc {
      font-size: 18px;
      color: var(--text-secondary);
      text-align: left;
      line-height: 1.7;
    }

    .card-link {
      margin-top: 15px;
      display: inline-block;
      color: var(--primary-dark);
      text-decoration: underline;
    }

    /* Service Detail Grid */
    .service-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .service-detail-card {
      background: var(--warm-white);
      padding: 20px 40px;
      border-radius: var(--border-radius-sm);
      border: 2px solid var(--accent-yellow);
      text-align: center;
    }

    .service-detail-title {
      color: var(--primary-dark);
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 22px;
    }

    /* Map */
    .map-container {
      width: 100%;
      height: 300px;
      background: #e0e0e0;
      border-radius: var(--border-radius-md);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 768px) {

      .grid-2,
      .service-detail-grid {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: 28px !important;
      }

      .hero-description {
        font-size: 18px !important;
      }

      .flow-step {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
      }
    }

    /* レスポンシブ */
    @media (max-width:1024px) {
      .hero-title {
        font-size: 42px
      }

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

      .services-grid,
      .others-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    br.sp {
      display: none;
    }

    @media (max-width:768px) {
      .nav {
        display: none
      }

      .menu-toggle {
        display: block
      }

      br.sp {
        display: block;
      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .hero-title {
        font-size: 36px
      }

      .hero-image-container {
        height: 350px
      }

      .features-grid {
        grid-template-columns: 1fr
      }

      .services-grid,
      .testimonials-grid {
        grid-template-columns: 1fr
      }
    }

    /* ========================================
     Recovered / Fixed Header Styles
     ======================================== */
    .logo img {
      height: 60px;
      width: auto;
      max-width: 100%;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin: 0 20px;
    }

    .social-link {
      color: var(--text-primary);
      transition: transform 0.3s ease;
    }

    .social-link:hover {
      transform: scale(1.1);
    }

    /* Mobile Header Fixes */
    @media (max-width: 768px) {
      .header-content {
        padding: 0 10px;
      }

      .logo img {
        height: 40px;
      }

      .social-icons {
        margin: 0 10px;
        gap: 10px;
      }

      .social-icons i {
        font-size: 38px !important;
      }

      /* Footer Mobile Adjustments */
      .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }

      .footer-logo-box {
        margin: 0 auto 20px;
      }

      .footer-link-list {
        padding: 0;
        margin: 0;
        list-style: none;
      }
    }

    /* Subtle text links (maintaining text color while keeping underline) */
    .link-subtle,
    .link-subtle:visited,
    .link-subtle:hover,
    .link-subtle:active {
      color: inherit;
      text-decoration: underline;
    }

    /* Fix for anchor scroll offset with fixed header */
    #about,
    #service-a,
    #service-b,
    #service-c {
      scroll-margin-top: 120px;
    }

    /* Reservation Button in Header */
    .btn-reservation-square {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background-color: #4CAF50;
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      border-radius: 4px;
      text-decoration: none;
      line-height: 1;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .btn-reservation-square:hover {
      transform: scale(1.05);
      opacity: 0.9;
      color: #fff;
    }

    @media (max-width: 768px) {
      .btn-reservation-square {
        width: 38px;
        height: 38px;
      }
    }