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

:root{
  --lp-font-sans:'Noto Sans JP','Hiragino Sans','Yu Gothic','YuGothic','Meiryo',sans-serif;
  --blue-dark:#0050BF;
  /* --blue-dark2:#007d82; */
  --blue-dark2: #0094F2;
  --blue-mid:#0e71f0;
  --blue-light:#bcd8f8;
  --blue-accent:#0050BF;
  --blue-pale:#0050BF;
  --blue-dark3: #1e2939;
  --text-body:#525252;
  --text-heading:#1e2939;
  --bg-light:#f8fcfe;
  --white:#ffffff;
  --grad-main:#0050BF;
  --grad-card:linear-gradient(135deg,#02298f 0%,#0e71f0 60%,#0094f2 100%);
  --grad-btn:linear-gradient(135deg,#02298f 0%,#afe2ff 50%,#0094f2 100%);
  --shadow-card:0 4px 12px rgba(2,41,143,.18);
  --shadow-soft:0 2px 6px rgba(0,0,0,.12);
}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
.main{margin-top:0}
body{
  font-family:var(--lp-font-sans);
  color:var(--text-body);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}

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

/* ===== HEADER ===== */
.header{
  background:var(--grad-main);
  height:96px;
  display:flex;align-items:center;
  position:sticky;top:0;z-index:100;
}
.header-inner{
  width:100%;max-width:1280px;margin:0 auto;
  padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.header-logo img{
  height:56px;
  width:auto;
  display:block;
  filter:brightness(0) invert(1)
}
.header-info{display:flex;align-items:center;gap:24px;color:var(--white)}
.header-info-item{
  display:flex;align-items:center;gap:8px;
}
.header-info-circle{
  /* width:36px; */
  padding: 2px 8px;
  border:1px solid rgba(255,255,255,.9);
  border-radius:6px;
  display:flex;flex-direction:column;
  overflow:hidden;
  font-size:12px;font-weight:500;
  color:var(--white);
  flex-shrink:0;
}
.header-info-circle span{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1.5;
}
.header-info-text{display:flex;flex-direction:column;font-size:13px;line-height:1.5}
.header-info-text--muted{opacity:.9}
.header-info-text strong{font-weight:500}
.header-badge{
  /* width:36px; */
  /* height:40px; */
  padding: 2px 8px;
  border:1px solid rgba(255,255,255,.9);
  border-radius:6px;
  display:flex;flex-direction:column;
  overflow:hidden;
  font-size:12px;font-weight:500;
  color:var(--white);
  flex-shrink:0;
}
.header-badge span{
  flex:1;
  display:flex;align-items:center;justify-content:center;
  line-height:1.5;
}

/* ===== HERO ===== */
.hero{
  position:relative;
  background:#fff;
  overflow:hidden;
}
.hero--wave-overlap{
  overflow:visible;
  margin-bottom:120px;
}
.hero--wave-overlap .hero-inner{
  z-index:2;
}
.hero-bg{
  position:absolute;
  top:0;left:50%;transform:translateX(-50%);
  width:100%;height:100%;
  background-image:url('/content/lp-v4-images/hero.png');
  background-size:cover;background-position:center;
  z-index:0;
}
.hero-bg::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to right,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.85) 35%,
    rgba(255,255,255,.55) 60%,
    rgba(255,255,255,.2) 100%);
}
.hero-inner{
  position:relative;z-index:1;
  max-width:1280px;margin:0 auto;
  padding:48px 32px 24px;
  min-height:620px;
  display:flex;flex-direction:column;
}
.hero-tag{
  display:inline-flex;align-items:center;
  align-self:flex-start;
  border:2px solid var(--blue-dark3);
  border-radius:999px;
  padding:4px 20px;
  color:var(--blue-dark3);
  font-size:18px;font-weight:500;
  margin-bottom:16px;
}
.hero-title{
  font-size:40px;
  line-height:1.45;
  font-weight:700;
  color:var(--text-heading);
  margin-bottom:6px;
}
.hero-title small{
  display:block;
  color:var(--blue-dark2);
  font-size:24px;font-weight:500;
  margin-top:12px;
}
.hero-sub{
  font-size:20px;
  font-weight: 600;
  color:var(--text-heading);
  line-height:1.4;
  margin-top:16px;
  margin-bottom:24px;
  padding-left: 12px;
  border-left: 4px solid var(--blue-dark2) ;
  
}
.hero-cards{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-bottom:28px;
}
.hero-card{
  background:#fff;
  /* border:1.5px solid var(--blue-pale); */
  border-radius:10px;
  padding:14px 8px 12px;
  width:120px;
  display:flex;flex-direction:column;align-items:center;
  box-shadow:var(--shadow-soft);
  text-align:center;
}
.hero-card img{width:46px;height:46px;object-fit:contain;margin-bottom:10px}
.hero-card span{
  font-size:14px;font-weight:700;color:var(--text-body);
  font-family:var(--lp-font-sans);
  white-space:normal;
}
.hero-actions{
  display:flex;gap:18px;align-items:center;flex-wrap:wrap;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:8px;
  padding:14px 36px;
  font-size:22px;font-weight:600;
  min-width:210px;
  transition:transform .15s ease,box-shadow .15s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 6px 14px rgba(2,41,143,.2)}
.btn-outline{
  /* background:linear-gradient(135deg,#ffffff 0%,#eaf6ff 100%); */
  color:var(--blue-accent);
  border:1.5px solid var(--blue-pale);
}
.btn-primary{
  background:var(--grad-main);
  color:var(--white);
}
.btn-cta-iconic{
  position:relative;
  gap:18px;
  width:min(100%,420px);
  min-height:72px;
  padding:18px 78px 18px 48px;
  border-radius:18px;
  font-size:28px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:0;
  box-shadow:0 4px 10px rgba(0,28,66,.1);
}
.btn-cta-iconic::after{
  content:"";
  position:absolute;
  top:50%;
  right:30px;
  width:18px;
  height:18px;
  border-top:4px solid currentColor;
  border-right:4px solid currentColor;
  border-radius:2px;
  transform:translateY(-50%) rotate(45deg);
}
.btn-cta-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  flex:0 0 auto;
}
.btn-cta-icon img{
  width:42px;
  height:42px;
  object-fit:contain;
}
.btn-cta-iconic--web{
  background:#fff;
  color:var(--blue-dark);
  border:2px solid var(--blue-dark);
}
.btn-cta-iconic--web .btn-cta-icon img{
  width:42px;
  height:42px;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider{
  width:100%;
  height:140px;
  background-image:url('/content/lp-v4-images/wave.png');
  background-size:100% 100%;
  background-repeat:no-repeat;
  background-position:center;
  opacity:.5;
}
.hero--wave-overlap > .wave-divider{
  position:absolute;
  left:0;
  right:0;
  bottom:-83px;
  z-index:1;
  pointer-events:none;
}
.wave-divider.wave-divider--spaced{margin-top:48px}

/* ===== INFO SECTION (cards) ===== */
.info-section{
  padding:36px 0 56px;
  background:#fff;
}
.info-section.info-section--compact{padding-top:8px}
.info-head{text-align:center;margin-bottom:28px;padding:0 16px;font-weight: 600;}
.info-head h2{
  font-size:40px;color:var(--text-heading);font-weight:800;margin-bottom:16px;
  font-family:var(--lp-font-sans);
}
.info-head p{font-size:16px;color:var(--blue-dark2);line-height:1.6}
.info-head .desc{
  margin-top:14px;color:var(--text-body);font-size:16px;line-height:1.8;
}

.info-card{
  /* background:var(--grad-card); */
  border-radius:14px;
  /* max-width:840px; */
  margin:0 16px;
  padding:36px 36px 40px;
  box-shadow:var(--shadow-card);
}
.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:20px;
}
.info-item{
  background:#fff;
  border-radius:10px;
  padding:24px 22px 28px;
  position:relative;min-height:240px;
  box-shadow:var(--shadow-soft);
}
.info-item h3{
  font-size:30px;font-weight:700;color:var(--text-heading);
  margin-bottom:14px;
  font-family:var(--lp-font-sans);
}
.info-item ul{list-style:none}
.info-item ul li{
  font-size:15px;color:var(--text-body);
  line-height:1.85;
}
.info-item .deco{
  position:absolute;right:18px;bottom:14px;
  width:64px;height:64px;opacity:.92;
}

/* ===== INFO SECTION: departments variant ===== */
.info-section--departments{
  padding:36px 0 56px;
}
.info-section--departments .info-card{
  width:calc(100% - 64px);
  max-width:1460px;
  margin:0 auto;
  padding:46px 46px 38px;
  background:#fff;
  border:1px solid #dbe8f4;
  border-radius:14px;
  box-shadow:0 3px 12px rgba(0,28,66,.12);
}
.info-section--departments .info-head{
  margin-bottom:34px;
  padding:0;
}
.info-section--departments .info-head-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:54px;
  width:min(100%,520px);
  margin:0 auto 18px;
}
.info-section--departments .info-head-mark::before,
.info-section--departments .info-head-mark::after{
  content:"";
  width:170px;
  flex:0 0 170px;
  height:3px;
  background:var(--blue-dark2);
  border-radius:999px;
  box-shadow:0 1px 3px rgba(26,161,179,.35);
}
.info-section--departments .info-head-mark span{
  position:relative;
  width:50px;
  height:50px;
  border:2px solid #94a7c7;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,28,66,.16);
}
.info-section--departments .info-head-mark span::before,
.info-section--departments .info-head-mark span::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:22px;
  height:7px;
  background:var(--blue-dark3);
  border-radius:2px;
  transform:translate(-50%,-50%);
}
.info-section--departments .info-head-mark span::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.info-section--departments .info-head-mark img{
  display:block;
  width:50px;
  height:50px;
  flex:0 0 50px;
  object-fit:contain;
}
.info-section--departments .info-head h2{
  margin-bottom:18px;
  /* font-family:'Yu Mincho','YuMincho','Hiragino Mincho ProN','Noto Serif JP',serif; */
  font-size:44px;
  font-weight:700;
  letter-spacing:0;
  line-height:1.35;
}
.info-section--departments .info-head p{
  font-size:22px;
  font-weight:700;
  color:var(--blue-dark2);
}
.info-section--departments .info-head .desc{
  max-width:960px;
  margin:22px auto 0;
  color:#424a57;
  font-size:16px;
  font-weight:600;
  line-height:1.9;
}
.info-section--departments .info-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.info-section--departments .info-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:430px;
  padding:34px 30px 38px;
  border:1px solid #e0eaf5;
  border-radius:12px;
  box-shadow:0 3px 10px rgba(0,28,66,.12);
}
.info-section--departments .info-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:112px;
  height:112px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#f0f7fc;
}
.info-section--departments .info-icon img{
  width:72px;
  height:72px;
  object-fit:contain;
}
.info-section--departments .info-item h3{
  margin:0;
  /* font-family:'Yu Mincho','YuMincho','Hiragino Mincho ProN','Noto Serif JP',serif; */
  font-size:28px;
  font-weight:600;
  line-height:1.35;
  text-align:center;
}
.info-section--departments .info-item-rule{
  display:block;
  width:48px;
  height:3px;
  margin:18px auto 24px;
  background:var(--blue-dark2);
  border-radius:999px;
}
.info-section--departments .info-item ul{
  width:100%;
  max-width:230px;
  margin:0 auto;
  padding:0;
}
.info-section--departments .info-item ul li{
  position:relative;
  padding-left:24px;
  color:#3d4652;
  font-size:16px;
  font-weight:600;
  line-height:1.85;
}
.info-section--departments .info-item ul li::before{
  content:"";
  position:absolute;
  top:.85em;
  left:0;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--blue-dark2);
}
.info-section--departments .info-item .deco{
  display:none;
}

@media (max-width:1080px){
  .info-section--departments .info-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .info-section--departments .info-item{
    min-height:360px;
  }
}

/* ===== INFO SECTION: symptoms variant ===== */
.info-section.info-section--symptoms{
  padding:8px 0 56px;
}
.info-section--symptoms .info-card{
  position:relative;
  overflow:hidden;
  width:calc(100% - 64px);
  max-width:1460px;
  margin:0 auto;
  padding:46px 38px 38px;
  background:#f6fbff;
  border:1px solid #dbe8f4;
  border-radius:14px;
  box-shadow:0 3px 12px rgba(0,28,66,.12);
}
.info-section--symptoms .info-head,
.info-section--symptoms .info-grid{
  position:relative;
  z-index:1;
}
.info-section--symptoms .info-head{
  margin-bottom:28px;
  padding:0;
}
.info-section--symptoms .info-head-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:54px;
  width:min(100%,520px);
  margin:0 auto 16px;
}
.info-section--symptoms .info-head-mark::before,
.info-section--symptoms .info-head-mark::after{
  content:"";
  width:170px;
  flex:0 0 170px;
  height:3px;
  background:var(--blue-dark2);
  border-radius:999px;
  box-shadow:0 1px 3px rgba(26,161,179,.35);
}
.info-section--symptoms .info-head-mark span{
  position:relative;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,28,66,.14);
}
.info-section--symptoms .info-head-mark span::before{
  content:"";
  position:absolute;
  inset:10px;
  background:center / 34px 34px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none' stroke='%23001c42' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='16' cy='16' r='10'/%3E%3Cpath d='m24 24 8 8'/%3E%3C/svg%3E");
}
.info-section--symptoms .info-head-mark span::after{
  content:none;
}
.info-section--symptoms .info-head h2{
  margin-bottom:16px;
  /* font-family:'Yu Mincho','YuMincho','Hiragino Mincho ProN','Noto Serif JP',serif; */
  font-size:44px;
  font-weight:700;
  letter-spacing:0;
  line-height:1.35;
}
.info-section--symptoms .info-head p{
  font-size:22px;
  font-weight:700;
  color:var(--blue-dark2);;
}
.info-section--symptoms .info-head .desc{
  max-width:820px;
  margin:22px auto 0;
  color:#424a57;
  font-size:16px;
  font-weight:600;
  line-height:1.9;
}
.info-section--symptoms .info-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.info-section--symptoms .info-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:390px;
  padding:34px 28px 34px;
  border:1px solid #e0eaf5;
  border-radius:12px;
  box-shadow:0 3px 10px rgba(0,28,66,.12);
}
.info-section--symptoms .info-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:112px;
  height:112px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#f0f7fc;
}
.info-section--symptoms .info-icon img{
  width:72px;
  height:72px;
  object-fit:contain;
}
.info-section--symptoms .info-item h3{
  margin:0;
  /* font-family:'Yu Mincho','YuMincho','Hiragino Mincho ProN','Noto Serif JP',serif; */
  font-size:28px;
  font-weight:700;
  line-height:1.35;
  text-align:center;
}
.info-section--symptoms .info-item-rule{
  display:block;
  width:48px;
  height:3px;
  margin:18px auto 18px;
  background:var(--blue-dark2);
  border-radius:999px;
}
.info-section--symptoms .info-item ul{
  width:100%;
  max-width:250px;
  margin:0 auto;
  padding:0;
}
.info-section--symptoms .info-item ul li{
  position:relative;
  padding-left:24px;
  color:#3d4652;
  font-size:16px;
  font-weight:600;
  line-height:1.85;
}
.info-section--symptoms .info-item ul li::before{
  content:"";
  position:absolute;
  top:.85em;
  left:0;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--blue-dark2);
}
.info-section--symptoms .info-item .deco{
  display:none;
}
.info-section--symptoms .info-dot-pattern{
  position:absolute;
  z-index:0;
  width:170px;
  height:150px;
  background-image:radial-gradient(circle,#b8d8ff 2px,transparent 2.4px);
  background-size:27px 27px;
  opacity:.75;
  pointer-events:none;
}
.info-section--symptoms .info-dot-pattern--top{
  top:8px;
  left:18px;
}
.info-section--symptoms .info-dot-pattern--bottom{
  right:12px;
  bottom:8px;
  transform:rotate(180deg);
}

@media (max-width:1080px){
  .info-section--symptoms .info-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .info-section--symptoms .info-item{
    min-height:340px;
  }
}

/* ===== CTA ROW ===== */
.cta-row{
  display:flex;justify-content:center;gap:18px;
  padding:44px 16px 36px;flex-wrap:wrap;
}

/* ===== FEATURES ===== */
.features{
  padding:8px 0 24px;
  background:#fff;
}
.features-card{
  max-width:1024px;margin:0 auto;
  background:#fff;
  border:1px solid var(--blue-light);
  border-radius:14px;
  padding:28px 20px 20px;
  position:relative;
}
.features-title{
  position:absolute;
  top:-30px;left:50%;transform:translateX(-50%);
  background:#fff;
  padding:6px 36px;
  border:1px solid var(--blue-light);
  border-radius:6px;
  font-size:24px;font-weight:700;color:var(--text-heading);
  font-family:var(--lp-font-sans);
  white-space:nowrap;
}
.features-list{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  padding:8px 8px 6px;
}
.feature-item{
  display:flex;flex-direction:column;align-items:center;
  background:transparent;
  padding:8px 6px;
  min-height:108px;
}
.feature-item img{width:54px;height:54px;object-fit:contain;margin-bottom:8px}
.feature-item span{
  font-size:13px;font-weight:700;color:var(--text-body);
  text-align:center;line-height:1.3;
  font-family:var(--lp-font-sans);
}
.features-note{
  margin-top:14px;
  text-align:center;
  font-size:11px;color:var(--text-body);
  line-height:1.6;
}

/* ===== FEATURES: lineup variant ===== */
.features--lineup .features-list{
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:0;
  padding:16px 8px;
}
.features--lineup .feature-item{
  position:relative;
  min-height:132px;
  padding:6px 12px 10px;
}
.features--lineup .feature-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:8px;
  right:0;
  width:2px;
  height:96px;
  background:#bcd8f8;
  border-radius:999px;
}
.features--lineup .feature-item img{
  width:76px;
  height:76px;
  margin-bottom:10px;
  padding:12px;
  border-radius:30%;
  background:#f0f7fc;
  object-fit:contain;
}
.features--lineup .feature-item span{
  position:relative;
  display:block;
  padding-bottom:14px;
  color:#3d4652;
  font-size:16px;
  font-weight:600;
  line-height:1.35;
}
.features--lineup .feature-item span::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:34px;
  height:3px;
  background:var(--blue-dark2);
  border-radius:999px;
  transform:translateX(-50%);
}
.features--lineup .features-note{
  position:relative;
  margin-top:0;
  padding-top:20px;
  color:#525a66;
  font-size:14px;
  font-weight:600;
  line-height:1.8;
}
.features--lineup .features-note::before{
  content:"";
  position:absolute;
  top:0;
  left:8px;
  right:8px;
  border-top:3px dotted #c9e1fb;
}

/* ===== FAQ ===== */
.faq{
  padding:64px 0 24px;
  background:#fff;
}
.faq-card{
  max-width:1024px;margin:0 auto;
  background:#f3f9ff;
  border:1px solid var(--blue-light);
  border-radius:14px;
  padding:28px 24px 32px;
  position:relative;
}
.faq-title{
  position:absolute;
  top:-30px;left:50%;transform:translateX(-50%);
  background:#fff;
  padding:6px 30px;
  border:1px solid var(--blue-light);
  border-radius:6px;
  font-size:24px;font-weight:700;color:var(--text-heading);
  font-family:var(--lp-font-sans);
  white-space:nowrap;
}
.faq-sub{
  text-align:center;color:var(--text-body);font-size:13px;
  margin:16px 0 8px;
}
.faq-list-wrap{
  background:transparent;
  padding:4px 0;
}
.faq-item{
  background:#fff;border:1px solid #e5eef7;border-radius:8px;
  margin-bottom:8px;
  overflow:hidden;
  transition:transform .15s ease;
}
.faq-item:last-child{margin-bottom:0}
.faq-item:hover{transform:translateY(-1px)}
.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 18px;
  cursor:pointer;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::marker{content:""}
.faq-item .q{
  font-size:15px;font-weight:700;color:var(--text-heading);
  line-height:1.4;
}
.faq-item .arrow{
  width:14px;height:14px;
  border-right:2px solid var(--blue-dark);
  border-bottom:2px solid var(--blue-dark);
  transform:rotate(-45deg);
  flex-shrink:0;
  transition:transform .15s ease;
}
.faq-item[open] .arrow{
  transform:rotate(45deg);
}
.faq-item__body{
  padding:8px 24px 16px 24px;
  font-size:14px;
  line-height:1.7;
  color:var(--text-body);
}

/* ===== FOOTER (Clinic info) ===== */
.footer{
  padding:32px 0 0;
  background:#fff;
}
.footer-head{text-align:center;margin-bottom:24px}
.footer-head h2{
  font-size:34px;color:var(--text-heading);font-weight:700;
  font-family:var(--lp-font-sans);
}
.footer-logo{
  display:flex;justify-content:center;align-items:center;
  margin-bottom:16px;
}
.footer-logo img{height:64px;width:auto}
.footer-desc{
  text-align:center;
  font-size:15px;color:var(--text-body);
  max-width:700px;margin:0 auto 32px;
  padding:0 16px;line-height:1.8;
}
.footer-info{
  max-width:840px;margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:48px;row-gap:30px;
}
.info-block h3{
  display:inline-block;
  border:1.5px solid var(--blue-dark3);
  color:var(--blue-dark3);
  font-size:18px;font-weight:500;
  padding:6px 22px;
  border-radius:6px;
  margin-bottom:14px;
}
.info-block .info-extra{
  display:flex;align-items:center;gap:14px;margin-top:6px;
}
.badge-yearround{
  /*border:1.5px solid var(--blue-dark3);*/
  color:var(--blue-dark3);
  font-size:18px;font-weight:500;
  padding:0px;
  /*border-radius:6px;*/
}
.hours-summary{display:block;align-items:flex-start;gap:18px;flex-wrap:wrap}
.hours-list{font-size:18px;color:var(--text-heading);line-height:1.7}
.hours-note{
  font-size:11px;color:var(--text-body);line-height:1.6;
  margin-top:10px;
}
.address{font-size:15px;color:var(--text-heading);line-height:1.7}
.access-list{
  display:grid;
  grid-template-columns:max-content minmax(0,1fr);
  column-gap:8px;
  row-gap:6px;
  align-items:center;
  margin-top:8px;
}
.access-tag{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--blue-dark);color:#fff;
  font-size:13px;font-weight:500;
  padding:5px 14px;border-radius:18px;
  width:100%;
  white-space:nowrap;
}
.access-tag + span{
  min-width:0;
  font-size:14px;color:var(--text-heading);
  align-self:center;
  overflow-wrap:anywhere;
}
.access-line{display:contents;font-size:14px;color:var(--blue-dark)}
.contact-list{
  display:grid;
  grid-template-columns:max-content minmax(0,1fr);
  column-gap:12px;
  row-gap:8px;
  align-items:center;
}
.contact-item{display:contents}
.contact-label{
  background:var(--blue-dark);color:#fff;
  font-size:14px;font-weight:500;
  padding:5px 14px;border-radius:6px;
  width:100%;
  min-width:0;
  text-align:center;
  white-space:nowrap;
}
.contact-label.short{min-width:0}
.contact-value{
  min-width:0;
  font-size:16px;color:var(--text-heading);
  overflow-wrap:anywhere;
}
.parking-note{font-size:11px;color:var(--text-body);margin-top:12px;line-height:1.6}
.lang-note{font-size:11px;color:var(--text-body);margin-top:8px;line-height:1.6}

.map-block{
  max-width:840px;margin:32px auto 0;padding:0 24px;
}
.map-block h3{
  display:inline-block;
  border:1.5px solid var(--blue-dark3);
  color:var(--blue-dark3);
  font-size:18px;font-weight:500;
  padding:6px 22px;
  border-radius:6px;
  margin-bottom:14px;
}
.map-frame{
  width:100%;
  aspect-ratio:16/9;
  background:#eef3f7;
  border-radius:10px;
  overflow:hidden;
}
.map-frame iframe{width:100%;height:100%;border:0;display:block}

/* ===== BOTTOM BAR ===== */
.bottom-bar{
  background:var(--grad-main);
  margin-top:48px;
  padding:24px 16px;
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.bottom-bar img{height:48px;width:auto;filter:brightness(0) invert(1)}
.bottom-bar p{color:#fff;font-size:12px;font-weight:700}
.phone-link-mobile{display:none!important}
.phone-link-desktop{display:inline!important}
.btn.phone-link-desktop{display:inline-flex!important}

/* ===== RESPONSIVE: <=768px ===== */
@media (max-width:768px){
  .phone-link-desktop,
  .btn.phone-link-desktop{display:none!important}
  .phone-link-mobile{display:inline!important}
  .btn.phone-link-mobile{display:inline-flex!important}

  .header{height:64px;padding:0}
  .header-inner{
    padding:0 5px;
    flex-wrap:nowrap;gap:8px;justify-content:space-between;align-items:center;
  }
  .header-logo img{height:32px}
  .header-info{
    gap:8px;flex-wrap:nowrap;
  }
  .header-info-item{gap:5px}
  .header-info-item-mobile-hide{display:none}
  .header-info-circle{
    width:38px;
    height:38px;
    font-size:10px;
    line-height:1.1
  }
  .header-info-text{font-size:10px;line-height:1.5}
  .header-badge{width:38px;height:38px;font-size:10px;line-height:1.15}

  .hero-inner{
    padding:24px 18px 18px;
    min-height:auto;
  }
  .hero-bg::after{
    background:linear-gradient(to bottom,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.78) 50%,
      rgba(255,255,255,.45) 100%);
  }
  .hero-tag{font-size:13px;padding:5px 14px;margin-bottom:10px}
  .hero-title{font-size:26px;line-height:1.45}
  .hero-title small{font-size:18px}
  .hero-sub{font-size:14px;margin-top:0px;margin-bottom:16px}
  .hero-cards{
    gap:8px;justify-content:space-between;
  }
  .hero-card{width:calc(25% - 6px);padding:8px 4px;}
  .hero-card img{width:34px;height:34px;margin-bottom:6px}
  .hero-card span{font-size:11px}
  .hero-actions{flex-direction:column;gap:10px;align-items:stretch}
  .btn{width:100%;min-width:0;font-size:16px;padding:12px 20px}
  .btn-cta-iconic{
    gap:12px;
    min-height:58px;
    padding:14px 48px 14px 24px;
    border-radius:14px;
    font-size:20px;
  }
  .btn-cta-iconic::after{
    right:22px;
    width:13px;
    height:13px;
    border-width:3px;
  }
  .btn-cta-icon{
    width:32px;
    height:32px;
  }
  .btn-cta-icon img{
    width:32px;
    height:32px;
  }
  .btn-cta-iconic--web .btn-cta-icon img{
    width:32px;
    height:32px;
  }

  .wave-divider{height:70px}
  .hero--wave-overlap{margin-bottom:80px}
  .hero--wave-overlap > .wave-divider{bottom:-80px}

  .info-section{padding:24px 0 32px}
  .info-head{padding:0 16px}
  .info-head h2{font-size:26px}
  .info-head p{font-size:14px}
  .info-head .desc{font-size:13px;line-height:1.7}

  .info-card{margin:0;padding:22px 16px}
  .info-grid{grid-template-columns:1fr;gap:14px}
  .info-item{padding:18px 18px 22px;min-height:auto}
  .info-item h3{font-size:24px;margin-bottom:10px}
  .info-item ul li{font-size:14px;line-height:1.8}
  .info-item .deco{width:48px;height:48px;right:14px;bottom:10px}

  .info-section--departments{padding:24px 0 36px}
  .info-section--departments .info-card{
    width:auto;
    margin:0;
    padding:28px 18px 24px;
    border-radius:0px;
    border: none;
    box-shadow: none;
  }
  .info-section--departments .info-head{
    margin-bottom:24px;
    padding:0;
  }
  .info-section--departments .info-head-mark{
    gap:18px;
    width:min(100%,230px);
    margin-bottom:14px;
  }
  .info-section--departments .info-head-mark::before,
  .info-section--departments .info-head-mark::after{
    width:72px;
    flex-basis:72px;
    height:2px;
  }
  .info-section--departments .info-head-mark span{
    width:38px;
    height:38px;
  }
  .info-section--departments .info-head-mark img{
    width:38px;
    height:38px;
    flex-basis:38px;
  }
  .info-section--departments .info-head-mark span::before,
  .info-section--departments .info-head-mark span::after{
    width:17px;
    height:5px;
  }
  .info-section--departments .info-head h2{
    font-size:28px;
    line-height:1.35;
    margin-bottom:12px;
  }
  .info-section--departments .info-head p{
    font-size:15px;
    line-height:1.7;
  }
  .info-section--departments .info-head .desc{
    font-size:13px;
    line-height:1.8;
    margin-top:14px;
  }
  .info-section--departments .info-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .info-section--departments .info-item{
    min-height:auto;
    padding:28px 24px 30px;
  }
  .info-section--departments .info-icon{
    width:86px;
    height:86px;
    margin-bottom:12px;
  }
  .info-section--departments .info-icon img{
    width:54px;
    height:54px;
  }
  .info-section--departments .info-item h3{
    font-size:26px;
    margin:0;
  }
  .info-section--departments .info-item-rule{
    width:42px;
    height:2px;
    margin:14px auto 18px;
  }
  .info-section--departments .info-item ul{
    max-width:260px;
  }
  .info-section--departments .info-item ul li{
    font-size:14px;
    line-height:1.75;
  }

  .info-section.info-section--symptoms{padding:8px 0 0px}
  .info-section--symptoms .info-card{
    width:auto;
    margin:0;
    padding:28px 18px 24px;
    border-radius:0px;
    border: none;

  }
  .info-section--symptoms .info-head{
    margin-bottom:24px;
    padding:0;
  }
  .info-section--symptoms .info-head-mark{
    gap:18px;
    width:min(100%,230px);
    margin-bottom:14px;
  }
  .info-section--symptoms .info-head-mark::before,
  .info-section--symptoms .info-head-mark::after{
    width:72px;
    flex-basis:72px;
    height:2px;
  }
  .info-section--symptoms .info-head-mark span{
    width:42px;
    height:42px;
  }
  .info-section--symptoms .info-head-mark span::before{
    inset:8px;
    background-size:27px 27px;
  }
  .info-section--symptoms .info-head-mark span::after{
    content:none;
  }
  .info-section--symptoms .info-head h2{
    font-size:28px;
    line-height:1.35;
    margin-bottom:12px;
  }
  .info-section--symptoms .info-head p{
    font-size:15px;
    line-height:1.7;
  }
  .info-section--symptoms .info-head .desc{
    font-size:13px;
    line-height:1.8;
    margin-top:14px;
  }
  .info-section--symptoms .info-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .info-section--symptoms .info-item{
    min-height:auto;
    padding:28px 24px 30px;
  }
  .info-section--symptoms .info-icon{
    width:86px;
    height:86px;
    margin-bottom:12px;
  }
  .info-section--symptoms .info-icon img{
    width:54px;
    height:54px;
  }
  .info-section--symptoms .info-item h3{
    font-size:26px;
    margin:0;
  }
  .info-section--symptoms .info-item-rule{
    width:42px;
    height:2px;
    margin:14px auto 18px;
  }
  .info-section--symptoms .info-item ul{
    max-width:270px;
  }
  .info-section--symptoms .info-item ul li{
    font-size:14px;
    line-height:1.75;
  }
  .info-section--symptoms .info-dot-pattern{
    width:112px;
    height:96px;
    background-size:20px 20px;
  }

  .cta-row{padding:28px 16px 24px;flex-direction:column;gap:12px}
  .cta-row .btn{width:100%;}

  .features-card{margin:0 16px;padding:14px 12px}
  .features-title{font-size:18px;padding:5px 22px;top:-24px}
  .features-list{
    grid-template-columns:repeat(3,1fr);gap:8px;padding:18px 4px 4px;
  }
  .feature-item{padding:10px 4px;min-height:96px}
  .feature-item img{width:40px;height:40px}
  .feature-item span{font-size:11px}
  .features-note{font-size:10px;padding:0 8px}

  .features--lineup .features-list{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:0;
    padding:18px 4px 14px;
  }
  .features--lineup .feature-item{
    min-height:116px;
    padding:8px 8px 10px;
  }
  .features--lineup .feature-item:not(:last-child)::after{
    top:10px;
    right:0;
    height:78px;
  }
  .features--lineup .feature-item:nth-child(3)::after{
    content:none;
  }
  .features--lineup .feature-item img{
    width:58px;
    height:58px;
    margin-bottom:8px;
    padding:10px;
  }
  .features--lineup .feature-item span{
    padding-bottom:11px;
    font-size:12px;
    line-height:1.35;
  }
  .features--lineup .feature-item span::after{
    width:28px;
    height:2px;
  }
  .features--lineup .features-note{
    padding:16px 8px 0;
    font-size:11px;
    line-height:1.7;
  }
  .features--lineup .features-note::before{
    left:4px;
    right:4px;
    border-top-width:2px;
  }

  .faq{padding:48px 0 16px}
  .faq-card{margin:0 16px;padding:18px 14px 24px}
  .faq-title{font-size:18px;padding:5px 20px;top:-24px}
  .faq-sub{font-size:12px;margin:14px 0 14px}
  .faq-list-wrap{padding:0px}
  .faq-item summary{padding:12px 14px}
  .faq-item .q{font-size:13px}
  .faq-item__body{padding:0 16px 12px;font-size:12px}

  .footer{padding:24px 0 0}
  .footer-head h2{font-size:24px}
  .footer-logo img{height:48px}
  .footer-desc{font-size:13px;padding:0 20px}
  .footer-info{
    grid-template-columns:1fr;
    column-gap:0;row-gap:24px;
    padding:0 20px;
  }
  .info-block h3{font-size:15px;padding:5px 16px}
  .badge-yearround{font-size:14px;padding:5px 12px}
  .hours-list{font-size:15px}
  .address{font-size:14px}
  .contact-label{font-size:13px}
  .contact-value{font-size:14px}

  .map-block{margin-top:24px;padding:0 20px}
  .map-block h3{font-size:15px;padding:5px 16px}

  .bottom-bar{margin-top:32px;padding:18px 16px}
  .bottom-bar img{height:36px}
  .bottom-bar p{font-size:10px;text-align:center}
}

.qr-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.qr-modal-content {
  position: relative;
  background: #fff;
  width: 300px;
  max-width: 90%;
  margin: 15vh auto;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.qr-modal-content img {
  max-width: 100%;
  height: auto;
}

.qr-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

#qrModalTitle{
  color:var(--blue-dark);
}
