:root {
      --navy: #083865;
      --deep: #105f92;
      --main: #2399c7;
      --aqua: #75d6ea;
      --ice: #eaf8fc;
      --snow: #f7fcff;
      --white: #ffffff;
      --gold: #d6a64a;
      --gold-soft: #fff2c8;
      --ink: #17304a;
      --muted: #66798c;
      --line: rgba(16, 95, 146, .18);
      --shadow: 0 22px 70px rgba(9, 50, 86, .16);
      --shadow-soft: 0 14px 36px rgba(9, 50, 86, .10);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1160px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
      line-height: 1.78;
      letter-spacing: .035em;
      background:
        radial-gradient(circle at 8% 2%, rgba(117, 214, 234, .34), transparent 28rem),
        radial-gradient(circle at 92% 7%, rgba(214, 166, 74, .12), transparent 24rem),
        linear-gradient(180deg, #f9fdff 0%, #edf9fd 42%, #ffffff 100%);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    ::selection { background: rgba(117, 214, 234, .45); }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .topline {
      background: linear-gradient(90deg, var(--navy), var(--deep));
      color: rgba(255,255,255,.92);
      font-size: 13px;
    }
    .topline__inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .topline__items { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .topline strong { color: #fff; font-weight: 700; }
    .topline__reserve {
      color: var(--gold-soft);
      font-weight: 700;
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(16, 95, 146, .12);
      transition: box-shadow .25s ease, background .25s ease;
    }
    .site-header.is-scrolled { box-shadow: 0 12px 30px rgba(9, 50, 86, .10); background: rgba(255,255,255,.94); }
    .header__inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }
    .brand__mark {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, #effbff, #d9f4fb 48%, #fff8df);
      border: 1px solid rgba(16, 95, 146, .16);
      box-shadow: var(--shadow-soft);
    }
    .brand__mark svg { width: 32px; height: 32px; }
    .brand__name {
      display: grid;
      line-height: 1.18;
      color: var(--navy);
      font-weight: 800;
      font-size: clamp(17px, 2.2vw, 23px);
      letter-spacing: .07em;
    }
    .brand__name small {
      margin-top: 4px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .nav a {
      padding: 10px 12px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      border-radius: 999px;
      transition: background .2s ease, color .2s ease;
      white-space: nowrap;
    }
    .nav a:hover { background: var(--ice); color: var(--deep); }

    .header__actions { display: flex; align-items: center; gap: 10px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn--primary {
      color: #fff;
      background: linear-gradient(135deg, var(--deep), var(--main));
      box-shadow: 0 14px 26px rgba(35, 153, 199, .28);
    }
    .btn--gold {
      color: #123;
      background: linear-gradient(135deg, #f6d981, var(--gold));
      box-shadow: 0 14px 26px rgba(214, 166, 74, .26);
    }
    .btn--ghost {
      color: var(--deep);
      background: rgba(255,255,255,.78);
      border-color: rgba(16, 95, 146, .22);
    }
    .btn--line {
      color: var(--deep);
      background: #fff;
      border-color: rgba(16, 95, 146, .20);
    }
    .hamburger {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid rgba(16, 95, 146, .18);
      background: #fff;
      position: relative;
    }
    .hamburger span,
    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      height: 2px;
      background: var(--deep);
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .hamburger::before { top: 15px; }
    .hamburger span { top: 22px; }
    .hamburger::after { top: 29px; }
    .hamburger.is-open::before { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span { opacity: 0; }
    .hamburger.is-open::after { transform: translateY(-7px) rotate(-45deg); }

    .hero {
      position: relative;
      isolation: isolate;
      padding: 74px 0 86px;
      min-height: 720px;
      display: grid;
      align-items: center;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
    }
    .hero__bg,
    .hero__bg .swiper-wrapper,
    .hero__bg .swiper-slide {
      width: 100%;
      height: 100%;
    }
    .hero__bg .swiper-slide {
      overflow: hidden;
    }
    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.04);
    }
    .hero__bg::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(247,252,255,.92) 0%, rgba(247,252,255,.78) 47%, rgba(247,252,255,.45) 100%),
        linear-gradient(180deg, rgba(255,255,255,.48) 0%, rgba(234,248,252,.88) 100%);
    }
    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(4px);
      opacity: .95;
      z-index: -1;
    }
    .hero::before {
      width: 660px;
      height: 660px;
      top: -250px;
      right: -180px;
      background: radial-gradient(circle, rgba(117, 214, 234, .62), rgba(117, 214, 234, 0) 70%);
    }
    .hero::after {
      width: 560px;
      height: 560px;
      bottom: -260px;
      left: -220px;
      background: radial-gradient(circle, rgba(35, 153, 199, .28), rgba(35, 153, 199, 0) 70%);
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
      align-items: center;
      gap: 52px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--deep);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--aqua));
      border-radius: 999px;
    }
    .hero h1 {
      margin: 22px 0 20px;
      color: var(--navy);
      font-size: clamp(40px, 6vw, 76px);
      line-height: 1.12;
      letter-spacing: .055em;
    }
    .hero h1 .thin {
      display: block;
      margin-top: .16em;
      font-size: .62em;
      color: var(--deep);
      font-weight: 650;
      letter-spacing: .12em;
    }
    .lead {
      max-width: 650px;
      color: #36516a;
      font-size: clamp(16px, 1.8vw, 18px);
      margin: 0;
    }
    .hero__ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 32px;
    }
    .hero__badges {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
      padding: 0;
      list-style: none;
      max-width: 680px;
    }
    .hero__badges li {
      padding: 14px 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(16, 95, 146, .16);
      box-shadow: 0 12px 26px rgba(9, 50, 86, .07);
      color: var(--navy);
      font-weight: 800;
      font-size: 14px;
      text-align: center;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
    }
    .visual-card {
      position: absolute;
      inset: 26px 0 auto auto;
      width: min(100%, 490px);
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #fff;
      transform: rotate(1.2deg);
      border: 10px solid rgba(255,255,255,.78);
    }
    .visual-card img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
    .visual-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(8, 56, 101, .72));
    }
    .visual-card__copy {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      z-index: 1;
      color: #fff;
    }
    .visual-card__copy b { display: block; font-size: 24px; line-height: 1.35; letter-spacing: .08em; }
    .visual-card__copy span { color: rgba(255,255,255,.82); font-size: 13px; }
    .floating-panel {
      position: absolute;
      z-index: 2;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(16, 95, 146, .16);
      box-shadow: var(--shadow-soft);
      border-radius: 22px;
      padding: 18px 20px;
      backdrop-filter: blur(16px);
    }
    .floating-panel--tel {
      left: 0;
      bottom: 60px;
      max-width: 280px;
    }
    .floating-panel--menu {
      right: -18px;
      top: 8px;
      display: grid;
      gap: 8px;
    }
    .floating-panel span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
    .floating-panel strong { display: block; color: var(--navy); font-size: 24px; line-height: 1.2; }
    .mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
    .mini-tags i {
      display: inline-flex;
      border-radius: 999px;
      padding: 5px 10px;
      background: var(--ice);
      color: var(--deep);
      font-style: normal;
      font-size: 12px;
      font-weight: 800;
    }

    section { padding: 92px 0; position: relative; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 28px;
      margin-bottom: 42px;
    }
    .section-head--center {
      text-align: center;
      display: block;
      max-width: 760px;
      margin-inline: auto;
    }
    .section-label {
      display: block;
      color: var(--main);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .section-title {
      margin: 0;
      color: var(--navy);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.25;
      letter-spacing: .08em;
    }
    .section-desc {
      margin: 14px 0 0;
      color: var(--muted);
      max-width: 650px;
    }

    .about {
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92)),
        radial-gradient(circle at 80% 5%, rgba(214, 166, 74, .14), transparent 28rem);
    }
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: 46px;
      align-items: center;
    }
    .about-photo {
      position: relative;
      border-radius: 34px;
      overflow: hidden;
      min-height: 520px;
      box-shadow: var(--shadow);
      background: var(--ice);
    }
    .about-photo img { width: 100%; height: 560px; object-fit: cover; object-position: center top; }
    .about-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(8, 56, 101, .45));
    }
    .about-copy {
      padding: clamp(26px, 4vw, 44px);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .check-list {
      display: grid;
      gap: 14px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }
    .check-list li {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 12px;
      align-items: start;
      font-weight: 700;
    }
    .check-list li::before {
      content: "✓";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--main), var(--aqua));
      color: #fff;
      font-weight: 900;
      line-height: 1;
    }

    .pickup {
      background: linear-gradient(180deg, #f7fcff, #eff9fd);
      overflow: hidden;
    }
    .pickup::before {
      content: "";
      position: absolute;
      inset: auto -12% 0 auto;
      width: 48vw;
      height: 48vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(117,214,234,.22), transparent 68%);
    }
    .pickup-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .pickup-card {
      min-height: 270px;
      position: relative;
      padding: 26px;
      border-radius: 28px;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(145deg, var(--deep), var(--main));
      box-shadow: var(--shadow-soft);
    }
    .pickup-card:nth-child(2) { background: linear-gradient(145deg, #0e4776, #2597c2); }
    .pickup-card:nth-child(3) { background: linear-gradient(145deg, #0c5f7f, #65cbdc); }
    .pickup-card:nth-child(4) { background: linear-gradient(145deg, #153d68, #d1a752); }
    .pickup-card::after {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      right: -70px;
      bottom: -70px;
      border-radius: 50%;
      background: rgba(255,255,255,.18);
    }
    .pickup-card span { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
    .pickup-card h3 { margin: 18px 0 10px; font-size: 24px; line-height: 1.35; }
    .pickup-card p { margin: 0; color: rgba(255,255,255,.88); font-size: 14px; }
    .pickup-card .num {
      position: absolute;
      right: 22px;
      top: 18px;
      font-size: 52px;
      line-height: 1;
      color: rgba(255,255,255,.18);
      font-weight: 900;
      letter-spacing: 0;
    }

    .menus {
      background: #fff;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }
    .menu-card {
      position: relative;
      min-height: 360px;
      padding: 28px;
      border-radius: 30px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(240,250,254,.92));
      box-shadow: 0 18px 42px rgba(9, 50, 86, .08);
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .menu-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 62px rgba(9, 50, 86, .12);
      border-color: rgba(35, 153, 199, .35);
    }
    .menu-card::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      right: -60px;
      top: -70px;
      border-radius: 50%;
      background: rgba(117,214,234,.22);
    }
    .menu-card__icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--deep), var(--main));
      box-shadow: 0 14px 24px rgba(35,153,199,.22);
      font-size: 26px;
      margin-bottom: 20px;
    }
    .menu-card h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 25px;
      letter-spacing: .08em;
      line-height: 1.35;
    }
    .menu-card p { margin: 0; color: var(--muted); font-size: 14px; }
    .menu-card ul {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }
    .menu-card li {
      padding: 6px 11px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(16, 95, 146, .14);
      color: var(--deep);
      font-size: 13px;
      font-weight: 800;
    }

    .visual-section {
      background:
        linear-gradient(120deg, rgba(8,56,101,.96), rgba(16,95,146,.92)),
        radial-gradient(circle at 12% 0%, rgba(117,214,234,.36), transparent 32rem);
      color: #fff;
      overflow: hidden;
    }
    .visual-section .section-title,
    .visual-section .section-label { color: #fff; }
    .visual-section .section-desc { color: rgba(255,255,255,.78); }
    .visual-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 42px;
      align-items: center;
    }
    .visual-image-stack {
      position: relative;
      min-height: 520px;
    }
    .stack-img {
      position: absolute;
      overflow: hidden;
      border-radius: 32px;
      border: 8px solid rgba(255,255,255,.12);
      box-shadow: 0 30px 80px rgba(0,0,0,.25);
    }
    .stack-img--main { inset: 0 70px 70px 0; }
    .stack-img--sub { width: 44%; right: 0; bottom: 0; }
    .stack-img img { width: 100%; height: 100%; object-fit: cover; }
    .highlight-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 32px;
    }
    .highlight-card {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(12px);
    }
    .highlight-card b { display: block; font-size: 19px; margin-bottom: 6px; }
    .highlight-card span { color: rgba(255,255,255,.74); font-size: 13px; }

    .concern {
      background: linear-gradient(180deg, #ffffff, #f0fbff);
    }
    .concern-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .concern-card {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 22px;
      min-height: 118px;
      border-radius: 24px;
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(9, 50, 86, .07);
    }
    .concern-card__mark {
      flex: 0 0 52px;
      width: 52px;
      height: 52px;
      display: grid !important;
      place-items: center;
      border-radius: 18px;
      background: var(--ice);
      color: var(--deep);
      font-size: 24px !important;
    }
    .concern-card b { display: block; color: var(--navy); font-size: 17px; line-height: 1.4; }
    .concern-card span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }

    .features {
      background: #fff;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .feature-card {
      padding: 28px 22px;
      border-radius: 28px;
      background: linear-gradient(180deg, var(--snow), #fff);
      border: 1px solid var(--line);
      text-align: center;
      box-shadow: 0 12px 28px rgba(9,50,86,.06);
    }
    .feature-card__icon {
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--ice), #fff8df);
      color: var(--deep);
      font-size: 30px;
    }
    .feature-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 19px; }
    .feature-card p { margin: 0; color: var(--muted); font-size: 13px; }

    .doctor {
      background:
        radial-gradient(circle at 12% 8%, rgba(117,214,234,.22), transparent 26rem),
        linear-gradient(180deg, #f8fdff, #fff);
    }
    .doctor-grid {
      display: grid;
      grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr);
      gap: 46px;
      align-items: center;
    }
    .doctor-card {
      border-radius: 34px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }
    .doctor-card img { width: 100%; height: 600px; object-fit: cover; object-position: center top; }
    .doctor-card__body { padding: 26px 28px; }
    .doctor-card__body small { color: var(--main); font-weight: 900; letter-spacing: .18em; }
    .doctor-card__body b { display: block; color: var(--navy); font-size: 25px; line-height: 1.35; margin-top: 6px; }
    .doctor-message {
      padding: clamp(28px, 4vw, 48px);
      border-radius: 34px;
      background: rgba(255,255,255,.82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .doctor-message p { color: #3b5870; }
    .cert-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 26px;
      padding: 0;
      list-style: none;
    }
    .cert-list li {
      padding: 14px 16px;
      border-radius: 16px;
      background: var(--ice);
      color: var(--deep);
      font-weight: 800;
      font-size: 14px;
    }

    .flow {
      background: #fff;
      padding-top: 0;
    }
    .flow-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      counter-reset: flow;
    }
    .flow-card {
      position: relative;
      padding: 30px 24px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fff, var(--snow));
      box-shadow: 0 12px 30px rgba(9,50,86,.06);
      counter-increment: flow;
    }
    .flow-card::before {
      content: "0" counter(flow);
      display: block;
      color: var(--gold);
      font-weight: 900;
      font-size: 34px;
      line-height: 1;
      margin-bottom: 18px;
      letter-spacing: .04em;
    }
    .flow-card h3 { margin: 0 0 8px; color: var(--navy); }
    .flow-card p { margin: 0; color: var(--muted); font-size: 13px; }

    .contact {
      background:
        linear-gradient(135deg, rgba(235,249,255,.96), rgba(255,255,255,.96)),
        radial-gradient(circle at 82% 18%, rgba(214,166,74,.16), transparent 24rem);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: stretch;
    }
    .contact-card,
    .access-card {
      border-radius: 32px;
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
    .contact-card { padding: 34px; }
    .contact-actions { display: grid; gap: 12px; margin: 24px 0 28px; }
    .tel-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px;
      border-radius: 22px;
      color: #fff;
      background: linear-gradient(135deg, var(--navy), var(--main));
    }
    .tel-box span { display: block; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
    .tel-mark{ font-size: 32px !important; }
    .tel-box b { display: block; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: .04em; }
    .wechat-box {
      display: grid;
      gap: 16px;
      padding: 20px;
      margin-bottom: 26px;
      border-radius: 22px;
      background: linear-gradient(135deg, #f3fff7, #e9fff0);
      border: 1px solid rgba(16, 95, 146, .16);
      box-shadow: 0 12px 28px rgba(9,50,86,.06);
    }
    .wechat-box__info span {
      display: block;
      color: var(--deep);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .14em;
    }
    .wechat-box__info b {
      display: block;
      color: var(--navy);
      font-size: clamp(24px, 3.4vw, 34px);
      line-height: 1.18;
      letter-spacing: .04em;
      word-break: break-all;
    }
    .wechat-qr {
      width: min(100%, 220px);
      margin-inline: auto;
      padding: 12px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(16,95,146,.14);
      box-shadow: 0 10px 24px rgba(9,50,86,.08);
    }
    .wechat-qr img { width: 100%; height: auto; }
    .calendar {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(16,95,146,.16);
      font-size: 14px;
    }
    .calendar th,
    .calendar td {
      padding: 12px 8px;
      text-align: center;
      border-bottom: 1px solid rgba(16,95,146,.10);
      border-right: 1px solid rgba(16,95,146,.08);
    }
    .calendar th { color: var(--deep); background: var(--ice); font-weight: 900; }
    .calendar td { color: var(--navy); font-weight: 800; }
    .note { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
    .access-card__image { height: 260px; overflow: hidden; }
    .access-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .access-card__body { padding: 30px 34px 34px; }
    .address {
      padding: 18px 20px;
      border-radius: 20px;
      background: var(--ice);
      color: var(--navy);
      font-weight: 800;
      margin: 20px 0;
    }
    .map-placeholder {
      min-height: 150px;
      border-radius: 22px;
      background:
        linear-gradient(90deg, rgba(16,95,146,.08) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(rgba(16,95,146,.08) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(135deg, #e7f7fc, #fff7dc);
      display: grid;
      place-items: center;
      color: var(--deep);
      font-weight: 900;
      border: 1px solid rgba(16,95,146,.12);
    }


    /* Contact form page */
    .form-section {
      padding: 96px 0;
    }
    .contact-form-card {
      border-radius: 32px;
      background: rgba(255,255,255,.9);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      padding: clamp(26px, 4vw, 42px);
    }
    .contact-form { margin: 0; }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    .form-field {
      display: grid;
      gap: 8px;
      color: var(--navy);
      font-weight: 800;
    }
    .form-field--full { grid-column: 1 / -1; }
    .form-field span { line-height: 1.45; }
    .required {
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 2px 8px;
      margin-left: 6px;
      border-radius: 999px;
      color: #fff;
      background: var(--gold);
      font-style: normal;
      font-size: 11px;
      letter-spacing: .08em;
      vertical-align: middle;
    }
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      border: 1px solid rgba(16,95,146,.22);
      border-radius: 16px;
      background: #fff;
      color: var(--ink);
      padding: 13px 15px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--main);
      box-shadow: 0 0 0 4px rgba(117,214,234,.22);
    }
    .form-textarea { resize: vertical; min-height: 180px; }
    .privacy-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 16px 18px;
      border-radius: 18px;
      background: var(--ice);
      color: var(--navy);
      font-weight: 800;
    }
    .privacy-check input { margin-top: .45em; }
    .form-notice { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
    .form-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-message {
      padding: 22px 24px;
      border-radius: 22px;
      margin-bottom: 24px;
      border: 1px solid transparent;
    }
    .form-message h3 { margin: 0 0 8px; color: var(--navy); }
    .form-message p { margin: 0; color: var(--muted); }
    .form-message ul { margin: 8px 0 0; padding-left: 1.4em; color: var(--ink); }
    .form-message--success {
      background: linear-gradient(135deg, #f1fff8, #ffffff);
      border-color: rgba(35,153,199,.22);
    }
    .form-message--error {
      background: linear-gradient(135deg, #fff5f4, #ffffff);
      border-color: rgba(214,100,74,.28);
    }
    .hidden-field {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    @media (max-width: 720px) {
      .form-grid { grid-template-columns: 1fr; }
      .form-actions { grid-template-columns: 1fr; }
    }

    .footer {
      color: #3d3338;
      background: #fff7fb;
      padding: 0;
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
      letter-spacing: .03em;
    }
    .footer__body {
      background: var(--ice);
      color: var(--navy);
    }
    .footer__inner {
      width: min(calc(100% - 40px), 1240px);
      min-height: 263px;
      margin-inline: auto;
      padding: 58px 0 50px;
      display: grid;
      grid-template-columns: 420px minmax(0, 1fr);
      gap: 170px;
      align-items: start;
    }
    .footer__logo a {
      align-items: center;
      gap: 16px;
      line-height: 1;
      transition: opacity .2s ease;
    }
    .footer__logo a:hover { opacity: .82; }
    .footer__logo-mark {
      flex: 0 0 58px;
      display: block;
    }
  
    .f-nav { width: 100%; }
    .f-nav__list {
      display: grid;
      grid-template-columns: repeat(3, minmax(145px, 1fr));
      gap: 13px 50px;
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
    }
    .f-nav__item a {
      display: inline-flex;
      align-items: center;
      color: #3f3a3d;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.45;
      white-space: nowrap;
      transition: color .2s ease, transform .2s ease;
    }
    .f-nav__item a::before {
      content: "";
      width: 0;
      height: 0;
      margin-right: 7px;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid var(--navy);
      transform: translateY(-1px);
      transition: border-left-color .2s ease;
    }
    .f-nav__item a:hover {
      color: var(--navy);
      transform: translateX(2px);
    }
    .f-nav__item a:hover::before { border-left-color: var(--navy); }
    .footer__copyright {
      min-height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      background: linear-gradient(135deg, var(--deep), var(--main));
      color: #fff;
      text-align: center;
      font-size: 15px;
      line-height: 1.55;
      letter-spacing: .02em;
    }
    .sp-only { display: none; }

    .pc-only { display: inline; }

    .fixed-cv {
      position: fixed;
      right: 0;
      top: auto;
      bottom: 18px;
      transform: none;
      z-index: 1100;
      display: flex;
      flex-direction: column;
      gap: 10px;
      pointer-events: none;
    }
    .fixed-cv a {
      width: 100px;
      min-height: 126px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      row-gap: 8px;
      padding: 16px 10px 14px;
      border-radius: 6px 0 0 6px;
      color: #fff;
      background: var(--deep);
      box-shadow: none;
      border: 0;
      text-align: center;
      font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.22;
      letter-spacing: .04em;
      pointer-events: auto;
      transition: transform .22s ease, filter .22s ease;
    }
    .fixed-cv a:nth-child(2) { background: var(--main);}
    .fixed-cv a:nth-child(3) { background: var(--navy); }
    .fixed-cv a::before {
      content: "✦";
      display: block;
      color: rgba(255,255,255,.94);
      font-size: 24px;
      line-height: 1;
      letter-spacing: 0;
    }
    .fixed-cv a:hover {
      transform: translateX(-4px);
      filter: brightness(.97);
    }
    .fixed-cv__label { display: block; }
    .fixed-cv small {
      display: block;
      margin-top: 2px;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: .02em;
      font-family: inherit;
    }

    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1080px) {
      .nav { display: none; }
      .hamburger { display: block; }
      .nav.is-open {
        display: grid;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        padding: 14px;
        border-radius: 22px;
        background: rgba(255,255,255,.97);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
      }
      .nav.is-open a { padding: 13px 14px; }
      .hero__inner,
      .about-grid,
      .visual-grid,
      .doctor-grid,
      .contact-grid { grid-template-columns: 1fr; }
      .hero-visual { min-height: 520px; }
      .visual-card { left: 0; right: auto; margin-inline: auto; }
      .pickup-grid,
      .feature-grid,
      .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .menu-grid,
      .concern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      body { letter-spacing: .02em; }
      .container { width: min(calc(100% - 28px), var(--container)); }
      .topline__inner { display: block; padding: 8px 0; }
      .topline__items { gap: 8px 14px; }
      .header__inner { min-height: 70px; gap: 10px; }
      .brand__mark { width: 42px; height: 42px; border-radius: 14px; }
      .brand__name { font-size: 16px; }
      .brand__name small { font-size: 8px; letter-spacing: .12em; }
      .header__actions .btn { display: none; }
      .hero { padding: 48px 0 64px; min-height: unset; }
      .hero__bg::after {
        background:
          linear-gradient(180deg, rgba(247,252,255,.94) 0%, rgba(247,252,255,.82) 48%, rgba(234,248,252,.94) 100%);
      }
      .hero h1 { font-size: clamp(34px, 11vw, 54px); }
      .hero__badges { grid-template-columns: 1fr; }
      .hero-visual { min-height: 470px; }
      .visual-card { width: 88%; inset: 0 auto auto 8%; }
      .visual-card img { height: 450px; }
      .floating-panel--tel { left: 0; bottom: 16px; }
      .floating-panel--menu { right: 0; top: 12px; transform: scale(.9); transform-origin: right top; }
      section { padding: 68px 0; }
      .section-head { display: block; }
      .pickup-grid,
      .menu-grid,
      .highlight-list,
      .concern-grid,
      .feature-grid,
      .cert-list,
      .flow-grid { grid-template-columns: 1fr; }
      .about-photo,
      .about-photo img { min-height: unset; height: 480px; }
      .visual-image-stack { min-height: 430px; }
      .stack-img--main { inset: 0 34px 64px 0; }
      .stack-img--sub { width: 52%; }
      .doctor-card img { height: 520px; }
      .footer { padding-bottom: 0; }
      .footer__inner {
        width: 100%;
        min-height: auto;
        display: block;
        padding: 54px 35px 42px;
      }
      .footer__logo {
        display: flex;
        justify-content: center;
        margin-bottom: 36px;
      }
      .footer__logo a { gap: 11px; }
      .footer__logo-mark {

      }
      .footer__logo-name {
        font-size: clamp(28px, 6.4vw, 32px);
      }
      .f-nav__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 34px;
        margin: 0 auto;
      }
      .f-nav__item a {
        font-size: 15px;
        line-height: 1.55;
      }
      .f-nav__item a::before {
        margin-right: 7px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        border-left-width: 7px;
      }
      .footer__copyright {
        min-height: 85px;
        padding: 10px 18px 12px;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 38px;
      }
      .sp-only { display: block; }
      .pc-only { display: none; }
      .fixed-cv {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3px;
        padding: 0;
      }
      .fixed-cv a {
        width: auto;
        min-height: 52px;
        height: 52px;
        padding: 7px 4px 6px;
        border-radius: 3px 3px 0 0;
        row-gap: 0;
        font-size: 18px;
        line-height: 1.15;
        letter-spacing: .02em;
      }
      .fixed-cv a::before { display: none; }
      .fixed-cv a:hover {
        transform: none;
        filter: none;
      }
      .fixed-cv small {
        margin-top: 0;
        font-size: 11px;
        line-height: 1.1;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
      .reveal { opacity: 1; transform: none; }
    }
