  :root {
    --green-deep: #8bc34a;
    --green-mid: #aed581;
    --green-light: #c5e1a5;
    --green-pale: #f1f8e9;
    --green-mist: #f9fbe7;
    --cream: #fdfbf7;
    --warm-white: #ffffff;
    --text-dark: #4a5c3e;
    --text-mid: #6c7d61;
    --text-light: #99a88f;
    --gold: #e2a85c;
    --gold-light: #f8dfbb;
    --border: rgba(139, 195, 74, 0.15);
  }

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

  img { pointer-events: none; }

  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* ===================== HERO (2-column: sidebar + photo) ===================== */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    padding: 40px; /* 荳贋ｸ句ｷｦ蜿ｳ40px縺ｧ邨ｱ荳 */
  }

  /* ---- LEFT SIDEBAR ---- */
  .hero-sidebar {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px 28px;
    border-right: 1px solid var(--border);
    position: relative;
    z-index: 2;
    overflow-y: auto;
  }

  /* Logo block */
  .sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
    text-decoration: none;
  }

  .sidebar-logo-icon {
    width: 88px; height: 88px;
    margin-bottom: 10px;
  }

  /* SVG tree logo */
  .sidebar-logo-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .sidebar-logo-en {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.18em;
    margin-bottom: 10px;
  }

  .sidebar-specialties {
    font-size: 10.5px;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.8;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  /* Nav grid */
  .sidebar-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin: 16px 0;
  }

  .sidebar-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 14px 8px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 12px;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    text-align: center;
  }

  .sidebar-nav-item:hover {
    border-color: var(--green-mid);
    background: var(--green-mist);
    color: var(--green-deep);
  }

  .sidebar-nav-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
  }

  /* CTA buttons */
  .sidebar-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-bottom: 18px;
  }

  .btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--green-deep);
    color: var(--warm-white);
    padding: 13px 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(212, 108, 130, 0.3);
  }

  .btn-reserve:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
  }

  .btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--warm-white);
    color: var(--green-deep);
    border: 1.5px solid var(--green-deep);
    padding: 13px 8px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btn-tel:hover {
    background: var(--green-pale);
  }

  /* Hours table in sidebar */
  .sidebar-hours {
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .sidebar-hours-title {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    text-align: center;
  }

  .sidebar-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
  }

  .sidebar-hours-table th {
    padding: 5px 4px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .sidebar-hours-table th.th-label {
    text-align: left;
    padding-left: 2px;
  }

  .sidebar-hours-table td {
    padding: 6px 4px;
    text-align: center;
    color: var(--text-mid);
  }

  .sidebar-hours-table td.td-label {
    text-align: left;
    font-size: 10px;
    color: var(--text-light);
    white-space: nowrap;
    padding-left: 2px;
  }

  .sidebar-hours-table td.open {
    color: var(--green-mid);
    font-size: 13px;
  }

  .sidebar-hours-table td.closed {
    color: #ccc;
  }

  .sidebar-hours-notes {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .sidebar-hours-note {
    font-size: 9.5px;
    color: var(--text-light);
    display: flex;
    gap: 4px;
  }

  .sidebar-hours-note::before { content: '窶ｻ'; }

  /* ---- RIGHT PHOTO ---- */
  .hero-photo {
    position: relative;
    overflow: hidden;
    background: var(--green-pale);
  }

  .hero-photo-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      #fce4e8 0%,
      #f5c6ce 30%,
      #eba1ac 60%,
      #d97c8b 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  /* Decorative interior scene (CSS art) */
  .hero-photo-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  /* Light overlay gradient */
  .hero-photo-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 30% 40%, rgba(255,255,255,0.18) 0%, transparent 70%),
      linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.12) 100%);
    z-index: 1;
  }

  /* Catchcopy over photo */
  .hero-copy {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 3;
    animation: fadeInUp 0.8s 0.2s ease both;
  }

  .hero-copy h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 400;
    color: var(--green-deep);
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(255,255,255,0.6);
  }

  .hero-copy-en {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: italic;
    font-size: clamp(13px, 1.5vw, 18px);
    color: var(--green-mid);
    letter-spacing: 0.15em;
    margin-top: 10px;
    text-shadow: 0 1px 8px rgba(255,255,255,0.5);
  }

  /* Placeholder photo background 窶・stylized interior */
  .photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background:
      linear-gradient(160deg, #fcebed 0%, #f7d5da 40%, #f0c2c9 70%, #e6aeb6 100%);
  }

  .photo-placeholder svg {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 32px; right: 32px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s 1.2s ease both;
  }

  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--green-mid));
    animation: scrollLine 1.5s ease infinite;
  }

  @keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  }

  .scroll-text {
    font-size: 9px;
    color: var(--green-mid);
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
  }

  /* General buttons used outside hero */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-deep);
    color: var(--warm-white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(212, 108, 130, 0.3);
  }

  .btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 108, 130, 0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--green-deep);
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--green-mid);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
  }

  /* ===================== SECTION COMMON ===================== */
  section {
    padding: 100px 40px;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: italic;
    font-size: 13px;
    color: var(--green-mid);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--green-light);
  }

  .section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .section-desc {
    font-size: 15px;
    line-height: 2;
    color: var(--text-mid);
    margin-top: 20px;
  }

  /* ===================== ABOUT ===================== */
  .about {
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
  }

  .about::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .about-visual {
    position: relative;
  }

  .about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-mist) 100%);
    box-shadow: 0 20px 60px rgba(212, 108, 130, 0.15);
  }

  .about-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--green-mid);
  }

  .leaf-svg {
    width: 80px; height: 80px;
    opacity: 0.4;
  }

  .about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(212, 108, 130, 0.08), transparent);
  }

  .about-badge-float {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--green-deep);
    color: var(--warm-white);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(212, 108, 130, 0.3);
  }

  .about-badge-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
  }

  .about-badge-text {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 4px;
    letter-spacing: 0.08em;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-philosophy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
    border-left: 3px solid var(--green-light);
    padding-left: 24px;
  }

  .about-text {
    font-size: 14px;
    line-height: 2.2;
    color: var(--text-mid);
  }

  /* ===================== FEATURES ===================== */
  .features {
    background: var(--green-mist);
    position: relative;
  }

  .features-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
  }

  .features-header > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .features-header .section-label::before {
    display: none;
  }

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

  .feature-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
  }

  .feature-card::before {
    display: none;
  }

  .feature-card:hover {
    transform: translateY(-4px);
  }

  .feature-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--green-deep);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
  }

  .feature-desc {
    font-size: 13.5px;
    line-height: 2;
    color: var(--text-mid);
    text-align: left;
  }

  /* ===================== MEDICAL / SERVICES ===================== */
  .medical {
    background: var(--warm-white);
  }

  .medical-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .medical-header .section-label {
    justify-content: center;
  }

  .medical-header .section-label::before { display: none; }

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

  .medical-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .medical-card:hover {
    border-color: var(--green-mid);
    background: var(--green-mist);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 108, 130, 0.1);
  }

  .medical-card-icon {
    width: 56px; height: 56px;
    background: var(--green-pale);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
  }

  .medical-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
  }

  .medical-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
  }

  .medical-card-arrow {
    margin-top: auto;
    font-size: 12px;
    color: var(--green-mid);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.08em;
  }

  /* ===================== DOCTOR ===================== */
  .doctor {
    background: var(--cream);
  }

  .doctor-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }

  .doctor-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--green-pale) 20%, var(--green-mist) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 40px rgba(212, 108, 130, 0.1);
  }

  .doctor-img-icon {
    font-size: 64px;
    opacity: 0.25;
  }

  .doctor-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
  }

  .doctor-name-en {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.2em;
  }

  .doctor-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.1em;
  }

  .doctor-title {
    font-size: 13px;
    color: var(--green-mid);
    background: var(--green-pale);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
  }

  .doctor-message {
    font-size: 14.5px;
    line-height: 2.2;
    color: var(--text-mid);
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

  .doctor-career {
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

  .career-title {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }

  .career-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .career-list li {
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    gap: 12px;
    align-items: baseline;
  }

  .career-year {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--green-mid);
    min-width: 40px;
  }

  /* ===================== SCHEDULE ===================== */
  .schedule {
    background: var(--green-deep);
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
  }

  .schedule::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .schedule .section-label { color: var(--green-light); }
  .schedule .section-label::before { background: var(--green-light); }
  .schedule .section-title { color: var(--warm-white); }

  .schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
  }

  .schedule-table-wrap {
    overflow-x: auto;
  }

  .schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
  }

  .schedule-table th {
    background: rgba(255,255,255,0.1);
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .schedule-table td {
    padding: 14px 12px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
  }

  .schedule-table td.time {
    font-size: 13px;
    opacity: 0.7;
    text-align: left;
    padding-left: 20px;
  }

  .schedule-table td.open {
    color: var(--green-light);
    font-size: 16px;
  }

  .schedule-table td.closed {
    color: rgba(255,255,255,0.25);
  }

  .schedule-notes {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .schedule-note {
    font-size: 12px;
    opacity: 0.65;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .schedule-note::before {
    content: '窶ｻ';
    color: var(--green-light);
  }

  .access-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .access-address {
    font-size: 14px;
    line-height: 2;
    opacity: 0.85;
  }

  .access-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .access-item-icon {
    font-size: 22px;
    flex-shrink: 0;
  }

  .access-item-content h4 {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }

  .access-item-content p {
    font-size: 13px;
    opacity: 0.65;
    line-height: 1.8;
  }

  .access-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--warm-white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    width: fit-content;
  }

  .access-map-btn:hover {
    background: rgba(255,255,255,0.2);
  }

  /* ===================== NEWS ===================== */
  .news {
    background: var(--warm-white);
  }

  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .news-link-all {
    font-size: 13px;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.06em;
    transition: gap 0.3s;
  }

  .news-link-all:hover { gap: 10px; }

  .news-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
  }

  .news-item {
    display: flex;
    gap: 24px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
  }

  .news-item:hover .news-item-title { color: var(--green-deep); }

  .news-item-date {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--text-light);
    flex-shrink: 0;
  }

  .news-item-tag {
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 20px;
    background: var(--green-pale);
    color: var(--green-mid);
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }

  .news-item-title {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    transition: color 0.2s;
  }

  /* ===================== CTA ===================== */
  .cta {
    background: linear-gradient(135deg, var(--green-mist) 0%, var(--green-pale) 100%);
    text-align: center;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border: 1px solid rgba(212, 108, 130, 0.08);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border: 1px solid rgba(212, 108, 130, 0.04);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-content { position: relative; z-index: 2; }

  .cta-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
  }

  .cta-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 48px;
  }

  .cta-tel {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    color: var(--green-deep);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    letter-spacing: 0.1em;
  }

  .cta-tel-label {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 36px;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 40px 30px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    color: var(--warm-white);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }

  .footer-logo-sub {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .footer-address {
    font-size: 13px;
    line-height: 2;
  }

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

  .footer-nav-group h4 {
    font-size: 12px;
    color: var(--warm-white);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .footer-nav-group a {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.2s;
  }

  .footer-nav-group a:hover { color: rgba(255,255,255,0.9); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  /* ===================== ANIMATIONS ===================== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 900px) {
    section { padding: 70px 24px; }
    section.hero {
      padding: 0px;
    }
    .hero {
      grid-template-columns: 1fr;
      grid-template-rows: 60vw auto; /* 荳・ 逕ｻ蜒・ 荳・ 繧ｵ繧､繝峨ヰ繝ｼ */
      min-height: auto;
    }
    /* SP: 逕ｻ蜒上ｒ1陦檎岼縲√し繧､繝峨ヰ繝ｼ繧・陦檎岼縺ｫ */
    .hero-photo { order: -1; min-height: 60vw; }
    .hero-sidebar {
      order: 1;
      border-right: none;
      border-top: 1px solid var(--border);
    }
    .hero-copy h1 { font-size: 28px; }
    .hero-copy { left: 28px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .medical-grid { grid-template-columns: 1fr 1fr; }
    .doctor-grid { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .news-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .features-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  }

  @media (max-width: 600px) {
    .medical-grid { grid-template-columns: 1fr; }
    .sidebar-nav { grid-template-columns: 1fr 1fr; }
    .hero { grid-template-rows: 70vw auto; }
    .hero-photo { min-height: 70vw; }
  }

  /* 繝輔か繝ｳ繝医し繧､繧ｺ邨ｱ荳・・C: 16px, SP: 14px・・*/
  body p, body .about-text, body .feature-desc, body .section-desc, body .access-address, body .doctor-message, body .schedule-table td {
    font-size: 16px !important;
  }

  .about-philosophy { text-align: center; }
  .fee-slider-img { width: 400px; height: 280px; object-fit: cover; margin: 0 16px; border-radius: 20px; background: #eee; }
  .sp-scroll-hint, .sp-bottom-bar { display: none; }

  @keyframes float1 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }
  @keyframes float2 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }
  .float-anim { animation: float1 5s ease-in-out infinite; }
  .float-anim2 { animation: float2 6.5s ease-in-out infinite 1.5s; }
  .float-anim3 { animation: float1 4.5s ease-in-out infinite 0.5s; }

  /* Sticky Header */
  .sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: top 0.3s ease;
    padding: 10px 20px;
  }
  .sticky-header.visible {
    top: 0;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .header-logo a {
    text-decoration: none;
    color: var(--green-deep);
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
  }
  .header-logo span {
    font-size: 18px;
  }

  .header-nav { display: flex; gap: 24px; align-items: center; }
  .header-nav a { text-decoration: none; color: var(--text-dark); font-size: 14px; font-weight: normal; transition: color 0.3s; }
  .header-nav a:hover { color: var(--green-deep); }
  
  .hamburger {
    display: none;
    flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px;
    background: transparent; border: none; cursor: pointer; z-index: 10001;
  }
  .hamburger span {
    display: block; width: 100%; height: 2px; background: var(--green-deep); transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
  }
  .mobile-menu.active { opacity: 1; pointer-events: auto; }
  .mobile-menu-inner { display: flex; flex-direction: column; gap: 24px; text-align: center; }
  .mobile-menu a { text-decoration: none; color: var(--text-dark); font-size: 18px; }
  
  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 40px;
    color: var(--green-deep);
    cursor: pointer;
    line-height: 1;
  }

  .deco-aaa { position: absolute; bottom: -100px; left: -20px; width: 350px; height: auto; z-index: 1; }
  .deco-bbb { position: absolute; top: 0px; right: -20px; width: 350px; height: auto; z-index: 1; }
  .deco-ccc { position: absolute; top: -50px; right: 5%; width: 300px; height: auto; z-index: 1; }
  .deco-ddd { position: absolute; bottom: -20px; left: 5%; width: 250px; height: auto; z-index: 1; }

  .sp-only { display: none !important; }

  @media (max-width: 900px) {
    .pc-only { display: none !important; }
    .sp-only { display: block !important; }
    .hamburger { display: flex; }
  }

  @media (max-width: 768px) {
    .deco-aaa { top: -50px; bottom: auto; width: 150px; }
    .deco-bbb { width: 150px; right: -10px; }
    .deco-ccc { width: 150px; right: -10px; }
    .deco-ddd { width: 130px; left: -10px; }

    body p, body .about-text, body .feature-desc, body .section-desc, body .access-address, body .doctor-message, body .schedule-table td {
      font-size: 14px !important;
    }
    .about-philosophy { text-align: left !important; }
    .fee-slider-img { width: 250px; height: 180px; margin: 0 12px; }
    .cta-tel { font-size: 28px !important; }
    .sp-scroll-hint { display: block; }
    .page-top-btn { bottom: 90px !important; }
    .sp-bottom-bar {
      display: flex;
      position: fixed;
      bottom: 0; left: 0; width: 100%;
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 10px 16px;
      gap: 12px;
    }
    .sp-bottom-bar a {
      flex: 1;
      font-weight: normal;
      font-size: 14px;
      padding: 13px 8px; /* Override to match FV */
    }
    body { padding-bottom: 70px; }
  }
