@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
/* ===============================
  BASE
=============================== */
html {
  font-size: 106.25%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgba(11, 43, 58, .88);
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #0B2B3A;
  text-decoration: none;
  transition: .25s ease;
}
p, ul li, ol li, table, dt, dd {
  line-height: 1.8;
  text-align: left;
  font-size: 1rem;
  color: rgba(11, 43, 58, .88);
}
@media (min-width: 901px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
h1 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.2;
  font-weight: 800;
}
h2 {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.35;
  font-weight: 800;
}
h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  font-weight: 700;
}
.wrapper {
  width: 100%;
  min-height: calc(100% - 50px);
}
/* ===============================
  HERO LOGO
=============================== */
h1 {
  width: 300px;
  height: 73px;
  z-index: 99;
  position: absolute;
  left: 20px;
  top: 20px;
  margin: 0;
}
h1 a {
  width: 300px;
  height: 73px;
  display: block;
  background: url("../image/logo.svg") center center/cover no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/* ===============================
  SIMPLE GRID UTILS (不足してた分を補完)
=============================== */
.flexbox {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.box40 {
  width: 40%;
  min-width: 320px;
}
.spbox100 {
  width: 40%;
}
@media (max-width: 900px) {
  .box40, .spbox100 {
    width: 100%;
    min-width: 0;
  }
}
/* ===============================
  SLICK HERO
=============================== */
.slickwrap {
  width: 100%;
  height: 100vh;
  position: relative;
}
.slickwrap .txt {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: min(1800px, 92%);
}
@media (max-width: 900px) {
  .slickwrap .txt {
    bottom: 0;
  }
}
.txt img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}
.slickwrap div.fade {
  width: 100%;
  height: 100vh;
  position: relative;
}
.slickwrap div.fade:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
}
.slick div.fade:nth-child(1) {
  background: url("../image/slide1.jpg") no-repeat center center;
  background-size: cover;
}
.slick div.fade:nth-child(2) {
  background: url("../image/slide2.jpg") no-repeat center center;
  background-size: cover;
}
/* hero CTA */
.mail-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  padding: 16px 22px;
  margin: 12px 10% 0;
  border-radius: 60px;
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  border: 2px solid rgba(255, 255, 255, .85);
  color: #fff !important;
  transition: all 0.3s ease;
}
.mail-cta-btn span {
  display: inline-block;
  margin: 0 auto;
  font-weight: bold;
  font-size: 22px;
}
.mail-cta-btn span i {
  padding-left: 20px;
}
.mail-cta-btn:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  color: #2995bd !important;
  background: linear-gradient(90deg, #84c9f0, #fff, #84c9f0);
  border: 2px solid #2995bd;
}
.phone {
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 32px;
  margin: 14px auto 0;
  text-align: center !important;
  display: block;
  color: #fff !important;
}
.phone svg {
  width: 26px;
  margin-right: 10px;
  fill: #fff;
}
/* ===============================
  LP STICKY NAV（背景色つき）
=============================== */
.lp-nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0B2B3A 0%, #0A2431 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.lp-nav ul {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-nav li {
  flex: 1;
  text-align: center;
}
.lp-nav a {
  display: block;
  padding: 16px 10px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .92);
  position: relative;
}
.lp-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}
.lp-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #3AA3D7;
  transition: .25s;
  transform: translateX(-50%);
}
.lp-nav a:hover::after {
  width: 60%;
}
/* SP: 2段でも崩れにくく */
@media (max-width: 900px) {
  .lp-nav ul {
    flex-wrap: wrap;
  }
  .lp-nav li {
    flex: 0 0 33.333%;
  }
  .lp-nav a {
    padding: 14px 14px;
    font-size: 12px !important;
    white-space: nowrap;
  }
}
/* ===============================
  SUB NAV（詳細ナビ）
=============================== */
.lp-subnav {
  background: #F4F8FB;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.lp-subnav__sum {
  cursor: pointer;
  list-style: none;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-subnav__sum::-webkit-details-marker {
  display: none;
}
.lp-subnav__ttl {
  font-weight: 900;
  color: #0B2B3A;
  letter-spacing: .04em;
}
.lp-subnav__hint {
  font-size: 12px;
  font-weight: 800;
  color: rgba(11, 43, 58, .62);
  background: rgba(31, 111, 165, .10);
  border: 1px solid rgba(31, 111, 165, .14);
  padding: 6px 10px;
  border-radius: 999px;
}
.lp-subnav__body {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-subnav__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 111, 165, .14);
  color: #0B2B3A;
  font-weight: 800;
  font-size: 13px;
}
.lp-subnav__chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}
/* SPは閉じるのが標準でもOK（openをHTMLで制御） */
@media (max-width: 900px) {
  .lp-subnav__sum {
    padding: 12px 0;
  }
  .lp-subnav__body {
    padding-bottom: 12px;
  }
}
/* ===============================
  IBD CERT
=============================== */
.ibd-cert {
  padding: 70px 20px;
  background: #F4F8FB;
}
.ibd-cert__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.ibd-cert__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #0E5A7C;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.ibd-cert__ttl {
  margin: 16px 0 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  font-weight: 800;
  color: #0B2B3A;
}
.ibd-cert__lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(11, 43, 58, .85);
}
.ibd-cert__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ibd-cert__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(14, 90, 124, .10);
  color: #0B2B3A;
  font-weight: 700;
}
.ibd-cert__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(14, 90, 124, .10);
  color: #0E5A7C;
  font-weight: 900;
}
.ibd-cert__actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.ibd-cert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  border: 2px solid rgba(255, 255, 255, .85);
  transition: .25s ease;
}
.ibd-cert__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.ibd-cert__link {
  color: #0E5A7C;
  font-weight: 800;
}
.ibd-cert__link:hover {
  text-decoration: underline;
}
.ibd-cert__card {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .10);
}
.ibd-cert__img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.ibd-cert__cap {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(11, 43, 58, .75);
}
.pc-only {
  display: inline;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .ibd-cert {
    padding: 50px 16px;
  }
  .ibd-cert__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ibd-cert__card {
    padding: 14px;
  }
}
/* ===============================
  UC1 : 院長メッセージ
=============================== */
.uc1 {
  padding: 80px 20px;
  background: #ffffff;
}
.uc1__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc1__head {
  margin-bottom: 28px;
}
.uc1__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(14, 90, 124, .10);
  color: #0E5A7C;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.uc1__ttl {
  margin: 14px 0 10px;
  color: #0B2B3A;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.3;
  font-weight: 800;
}
.uc1__lead {
  margin: 0;
  color: rgba(11, 43, 58, .82);
  line-height: 1.9;
  font-size: 1rem;
}
.uc1__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.uc1__photo {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}
.uc1__photo img {
  display: block;
  width: 100%;
  border-radius: 14px;
}
.uc1__cap {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(11, 43, 58, .75);
  text-align: center;
}
.uc1__body {
  min-width: 0;
}
.uc1__summary {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(14, 90, 124, .12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}
.uc1__p {
  margin: 0 0 14px;
  color: rgba(11, 43, 58, .88);
  line-height: 1.9;
}
.uc1__p:last-child {
  margin-bottom: 0;
}
.uc1__points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.uc1__points li {
  padding: 12px 14px 12px 44px;
  border-radius: 14px;
  background: rgba(244, 248, 251, .9);
  border: 1px solid rgba(14, 90, 124, .10);
  position: relative;
  font-weight: 700;
  color: #0B2B3A;
  line-height: 1.6;
}
.uc1__points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 90, 124, .14);
  color: #0E5A7C;
  font-weight: 900;
}
.uc1__details {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #ffffff;
}
.uc1__more {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(58, 163, 215, .12) 0%, rgba(31, 111, 165, .06) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.uc1__more::-webkit-details-marker {
  display: none;
}
.uc1__moreTxt {
  font-weight: 800;
  color: #0E5A7C;
  letter-spacing: .04em;
}
.uc1__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(14, 90, 124, .9);
  border-bottom: 2px solid rgba(14, 90, 124, .9);
  transform: rotate(45deg);
  transition: .25s ease;
  margin-right: 4px;
}
.uc1__details[open] .uc1__chev {
  transform: rotate(-135deg);
}
.uc1__text {
  padding: 18px 20px 10px;
}
.uc1__subttl {
  margin: 18px 0 12px;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 800;
  color: #0B2B3A;
}
.uc1__callout {
  margin: 16px 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(14, 90, 124, .06);
  border: 1px solid rgba(14, 90, 124, .12);
}
.uc1__calloutTtl {
  margin: 0 0 10px;
  font-weight: 800;
  color: #0B2B3A;
}
.uc1__list {
  margin: 0;
  padding-left: 1.2em;
}
.uc1__list li {
  margin: 6px 0;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .uc1__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .uc1 {
    padding: 56px 16px;
  }
}
/* ===============================
  UC1W : お悩み（重複を排除して1回に統一）
=============================== */
.uc1w {
  margin-top: 34px;
  padding: 34px 22px;
  border-radius: 22px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc1w__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.uc1w__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  flex: 0 0 auto;
}
.uc1w__ttl {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  font-weight: 800;
  color: #0B2B3A;
}
.uc1w__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.uc1w__list {
  list-style: none;
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  display: grid;
  gap: 10px;
}
.uc1w__list li {
  position: relative;
  padding-left: 34px;
  line-height: 1.6;
  font-weight: 700;
  color: #0B2B3A;
}
.uc1w__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 90, 124, .14);
  color: #0E5A7C;
  font-weight: 900;
}
.uc1w__note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}
.uc1w__p {
  margin: 0 0 12px;
  line-height: 1.9;
}
.uc1w__p:last-child {
  margin-bottom: 0;
}
.uc1w__cta {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}
.uc1w__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  border: 2px solid rgba(255, 255, 255, .85);
  transition: .25s ease;
}
.uc1w__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
@media (max-width: 900px) {
  .uc1w {
    padding: 22px 16px;
  }
  .uc1w__grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
  UC2 BANNER
=============================== */
.uc2-banner {
  padding: 28px 0 0;
  background: #fff;
}
.uc2-banner__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.uc2-banner__link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: .25s ease;
}
.uc2-banner__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .14);
}
.uc2-banner__img {
  display: block;
  width: 100%;
  height: auto;
}
/* ===============================
  UC2 : 潰瘍性大腸炎とは
=============================== */
.uc2 {
  padding: 54px 0;
  background: #fff;
}
.uc2__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc2__head {
  margin-bottom: 18px;
}
.uc2__kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .10);
  color: #1F6FA5;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
}
.uc2__ttl {
  margin: 12px 0 8px;
  color: #0B2B3A;
}
.uc2__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(11, 43, 58, .86);
  max-width: 56em;
}
.uc2__body {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc2__body p {
  margin: 0 0 14px;
  line-height: 1.95;
}
.uc2__body p:last-child {
  margin-bottom: 0;
}
/* ===============================
  CONTACT HERO CTA（1回だけ使う）
=============================== */
.contact-hero {
  position: relative;
  padding: 90px 0 100px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 28, 45, .78) 0%, rgba(10, 28, 45, .72) 100%), radial-gradient(900px 400px at 50% 0%, rgba(58, 163, 215, .35) 0%, rgba(58, 163, 215, 0) 60%), url("../image/contact_bg.jpg") center/cover no-repeat;
}
.contact-hero__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}
.contact-hero__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: .06em;
  text-shadow: 0 15px 40px rgba(0, 0, 0, .45);
}
.contact-hero__sub {
  margin: 0 auto 40px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 14px;
  color: #fff;
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}
.contact-card {
  display: block;
  border-radius: 22px;
  padding: 28px 24px;
  transition: .35s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .45);
}
.contact-card--tel {
  background: #ffffff;
  color: #0B2B3A;
  text-align: left;
}
.contact-card__label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 16px;
  opacity: .75;
}
.contact-card__tel {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-card__tel i {
  background: linear-gradient(135deg, #FFD84A, #FF9900);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.contact-card__note {
  margin-top: 16px;
  font-size: 13px;
  opacity: .8;
}
.contact-card--web {
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .4);
  text-align: center;
}
.contact-card--form {
  background: linear-gradient(180deg, #FFD84A 0%, #FF9900 100%);
  color: #fff;
  text-align: center;
}
.contact-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.contact-card__big {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .06em;
}
.contact-card__desc {
  margin-top: 10px;
  font-size: 14px;
  opacity: .95;
}
@media (max-width: 900px) {
  .contact-hero__grid {
    grid-template-columns: 1fr;
  }
  .contact-card--tel {
    text-align: center;
  }
}
/* ===============================
  UC2-2 : 比較
=============================== */
.uc22 {
  padding: 70px 0 80px;
  background: #f8fbfd;
}
.uc22__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc22__head {
  text-align: left;
  margin-bottom: 24px;
}
.uc22__kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}
.uc22__ttl {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: #0B2B3A;
}
.uc22__lead {
  margin: 24px 0 40px;
}
.uc22__tableWrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
}
.uc22__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 760px;
}
.uc22__table thead {
  background: linear-gradient(90deg, #1F6FA5, #3AA3D7);
  color: #fff;
}
.uc22__table th, .uc22__table td {
  padding: 16px 18px;
  border: 1px solid #e6eef3;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.uc22__table thead th {
  font-weight: 900;
  letter-spacing: .06em;
}
.uc22__table tbody th {
  background: #f4f8fb;
  font-weight: 800;
  color: #0B2B3A;
  width: 220px;
}
.uc22__table tbody tr:nth-child(even) td {
  background: #fafcfe;
}
@media (max-width: 768px) {
  .uc22__lead {
    font-size: 14px;
  }
}
/* ===============================
  UC2-3 : 合併症
=============================== */
.uc23 {
  padding: 60px 0 80px;
  background: #ffffff;
}
.uc23__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc23__banner {
  border-radius: 18px 18px 0px 0px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 43, 58, .75), rgba(11, 43, 58, .15)), url("../image/comp_bg.jpg") center/cover no-repeat;
  min-height: 170px;
  position: relative;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}
.uc23__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .10), transparent 55%);
  pointer-events: none;
}
.uc23__bannerIn {
  position: relative;
  padding: 36px 34px;
}
.uc23__en {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 14px;
  color: rgba(255, 255, 255, .90);
}
.uc23__ttl {
  margin: 0;
  font-weight: 900;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  text-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}
.uc23__body {
  margin-top: -22px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc23__body p {
  margin: 0 0 14px;
  line-height: 1.9;
}
.uc23__chips {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.uc23__chips li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f8fb;
  border: 1px solid rgba(31, 111, 165, .12);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .uc23 {
    padding: 46px 0 64px;
  }
  .uc23__banner {
    min-height: 150px;
    border-radius: 16px;
  }
  .uc23__bannerIn {
    padding: 28px 18px;
  }
  .uc23__body {
    padding: 20px 18px;
    margin-top: -18px;
    border-radius: 16px;
  }
  .uc23__en {
    font-size: 12px;
  }
}
/* ===============================
  UC3 : 検査と治療
=============================== */
.uc3 {
  padding: 70px 0 80px;
  background: #f8fbfd;
}
.uc3__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc3__head {
  margin-bottom: 26px;
}
.uc3__kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
}
.uc3__ttl {
  margin: 12px 0 8px;
  color: #0B2B3A;
}
.uc3__lead {
  margin: 0;
  line-height: 1.9;
  color: rgba(11, 43, 58, .86);
  max-width: 60em;
}
/* UC3-1 */
.uc31 {
  margin-top: 18px;
}
.uc31__banner {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 43, 58, .78), rgba(11, 43, 58, .18)), url("../image/diagno_bg.jpg") center/cover no-repeat;
  min-height: 160px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}
.uc31__en {
  margin: 0;
  padding: 22px 26px 0;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.uc31__ttl {
  margin: 10px 0 0;
  padding: 0 26px 26px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  text-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}
.uc31__body {
  margin-top: -18px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  padding: 26px 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc31__p {
  margin: 0 0 18px;
  line-height: 1.95;
}
.uc31__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.uc31__card {
  border-radius: 18px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  padding: 18px;
}
.uc31__card--note {
  background: #fff;
}
.uc31__cardTtl {
  margin: 0 0 12px;
  font-weight: 900;
  color: #0B2B3A;
  font-size: 16px;
  letter-spacing: .04em;
}
.uc31__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.uc31__steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(31, 111, 165, .10);
}
.uc31__stepNo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0E5A7C;
  background: rgba(14, 90, 124, .14);
}
.uc31__stepTtl {
  margin: 0;
  font-weight: 900;
  color: #0B2B3A;
}
.uc31__stepTxt {
  margin: 4px 0 0;
  line-height: 1.7;
  font-size: 14px;
  color: rgba(11, 43, 58, .86);
}
.uc31__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.uc31__bullets li {
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
  font-weight: 700;
}
.uc31__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 90, 124, .14);
  color: #0E5A7C;
  font-weight: 900;
}
.uc31__miniCta {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.uc31__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 900;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  border: 2px solid rgba(255, 255, 255, .85);
  transition: .25s ease;
}
.uc31__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
@media (max-width: 900px) {
  .uc31__grid {
    grid-template-columns: 1fr;
  }
  .uc31__body {
    padding: 20px 18px;
  }
}
/* UC3-2 */
.uc32 {
  margin-top: 26px;
}
.uc32__banner {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 111, 165, .85), rgba(58, 163, 215, .25)), url("../image/treatment_bg.jpg") center/cover no-repeat;
  min-height: 150px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}
.uc32__en {
  margin: 0;
  padding: 20px 26px 0;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.uc32__ttl {
  margin: 10px 0 0;
  padding: 0 26px 24px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  text-shadow: 0 10px 26px rgba(0, 0, 0, .20);
}
.uc32__body {
  margin-top: -18px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  padding: 26px 28px 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc32__p {
  margin: 0 0 18px;
  line-height: 1.95;
}
.uc32__cols {
  display: grid;
  gap: 14px;
}
.uc32__item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}
.uc32__sum {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(58, 163, 215, .12) 0%, rgba(31, 111, 165, .06) 100%);
  display: grid;
  grid-template-columns: 34px 1fr 12px;
  gap: 12px;
  align-items: center;
}
.uc32__sum::-webkit-details-marker {
  display: none;
}
.uc32__num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0E5A7C;
  background: rgba(14, 90, 124, .14);
}
.uc32__sumTtl {
  font-weight: 900;
  color: #0B2B3A;
  line-height: 1.4;
}
.uc32__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(14, 90, 124, .9);
  border-bottom: 2px solid rgba(14, 90, 124, .9);
  transform: rotate(45deg);
  transition: .25s ease;
}
.uc32__item[open] .uc32__chev {
  transform: rotate(-135deg);
}
.uc32__content {
  padding: 16px 18px 18px;
}
.uc32__txt {
  margin: 0 0 12px;
  line-height: 1.9;
}
.uc32__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.uc32__tags li {
  padding: 8px 12px;
  border-radius: 999px;
  background: #F4F8FB;
  border: 1px solid rgba(31, 111, 165, .12);
  font-weight: 800;
  font-size: 12px;
  color: #0B2B3A;
}
.uc32__cta {
  margin-top: 18px;
}
.uc32__ctaBox {
  border-radius: 18px;
  padding: 18px;
  background: rgba(14, 90, 124, .06);
  border: 1px solid rgba(14, 90, 124, .12);
}
.uc32__ctaTtl {
  margin: 0 0 12px;
  font-weight: 900;
  color: #0B2B3A;
  line-height: 1.7;
}
.uc32__ctaBtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.uc32__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 900;
  letter-spacing: .04em;
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  border: 2px solid rgba(255, 255, 255, .85);
  transition: .25s ease;
}
.uc32__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.uc32__btn--sub {
  background: linear-gradient(180deg, #FFD84A 0%, #FF9900 100%);
}
@media (max-width: 768px) {
  .uc3 {
    padding: 54px 0 64px;
  }
  .uc32__body {
    padding: 20px 18px;
  }
}
/* ===============================
  UC3-3 : 治療の流れ（直角タブ）
=============================== */
.uc33 {
  width: min(1100px, 92%);
  margin: 34px auto 0;
}
.uc33__inner {
  width: 100%;
}
.uc33__title {
  margin: 0 0 12px;
}
.uc33__en {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
}
.uc33__ttl {
  margin: 0;
  color: #0B2B3A;
}
.uc33__tabsWrap{
  position: relative;
  width: 100%;
}

.uc33__tabs{
  width: 100%;
  display: flex;
  gap: 0;
  background: #e9eff8;
  border: 1px solid #dfe6ef;
  border-bottom: 0;

  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  align-items: stretch;
}

.uc33__tab{
  flex: 0 0 170px;
  border: 0;
  border-right: 1px solid #dfe6ef;
  background: #e4ebf6;
  padding: 16px 10px;
  min-height: 96px;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  font-weight: 600;
  color: #0B2B3A;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: normal;
}

.uc33__tab:last-child{
  border-right: 0;
}

.uc33__tabStep{
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 6px;
  color: #0E5A7C;
  line-height: 1.2;
}

.uc33__tabTxt{
  display: block;
  font-size: 15px;
  color: #0B2B3A;
  line-height: 1.4;
  white-space: normal;
}

.uc33__tab.is-active{
  background: #0A4C8A;
  color: #fff;
}

.uc33__tab.is-active .uc33__tabStep,
.uc33__tab.is-active .uc33__tabTxt{
  color: #fff;
}



@media (max-width: 900px){

  .uc33__tab{
    flex: 0 0 170px;
    min-height: 140px;
    padding: 18px 10px;
  }

  .uc33__tabStep{
    font-size: 13px;
    margin-bottom: 8px;
	  margin-bottom:10px;
  }

  .uc33__tabTxt{
    font-size: 15px;
    line-height: 1.5;
  }

}
.uc33__frame {
  width: 100%;
  border: 1px solid #0A4C8A;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}
.uc33__panel {
  display: none;
  padding: 30px 34px;
}
.uc33__panel.is-active {
  display: block;
}
.uc33__pttl {
  margin: 0 0 14px;
  font-weight: 900;
  color: #0A4C8A;
  font-size: clamp(18px, 1.6vw, 22px);
}
.uc33__p {
  margin: 0;
  line-height: 1.95;
}
.uc33__panelGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}
.uc33__media {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}
.uc33__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .uc33__panel {
    padding: 22px 18px;
  }
  .uc33__panelGrid {
    grid-template-columns: 1fr;
  }
  .uc33__tab {
    flex-basis: 155px;
    padding: 14px 8px;
  }
  .uc33__tabTxt {
    font-size: 14px;
  }
}
.uc33__tabs.scroll-hint{
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.uc33__tabs.scroll-hint .scroll-hint-icon-wrap{
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
}

.uc33__tabs.scroll-hint .scroll-hint-text{
  white-space: nowrap;
  font-size: 12px !important;
  font-weight: 700;
}

.uc33__tabs::-webkit-scrollbar:vertical{
  display: none;
}
/* ===============================
  UC4 : 社会支援制度
=============================== */
.uc4 {
  padding: 60px 0 80px;
  background: #ffffff;
}
.uc4__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc4__banner {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 111, 165, .88), rgba(58, 163, 215, .22)), url("../image/support_bg.jpg") center/cover no-repeat;
  min-height: 150px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}
.uc4__en {
  margin: 0;
  padding: 20px 26px 0;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.uc4__ttl {
  margin: 10px 0 0;
  padding: 0 26px 24px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  text-shadow: 0 10px 26px rgba(0, 0, 0, .20);
}
.uc4__body {
  margin-top: -18px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  padding: 26px 28px 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc4__lead {
  margin: 0 0 18px;
  line-height: 1.95;
}
.uc4__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.uc4__card {
  border-radius: 18px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  padding: 18px;
}
.uc4__cardHead {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.uc4__no {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0E5A7C;
  background: rgba(14, 90, 124, .14);
}
.uc4__cardTtl {
  margin: 0;
  font-weight: 900;
  color: #0B2B3A;
  font-size: 16px;
  line-height: 1.35;
}
.uc4__p {
  margin: 0 0 12px;
  line-height: 1.9;
}
.uc4__dl {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.uc4__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: start;
}
.uc4__dl dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 800;
  color: #1F6FA5;
}
.uc4__dl dd {
  margin: 0;
  line-height: 1.7;
}
.uc4__note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(14, 90, 124, .06);
  border: 1px solid rgba(14, 90, 124, .12);
}
.uc4__noteTtl {
  margin: 0 0 8px;
  font-weight: 900;
  color: #0B2B3A;
}
.uc4__noteP {
  margin: 0;
  line-height: 1.9;
  color: rgba(11, 43, 58, .86);
}
@media (max-width: 900px) {
  .uc4__cards {
    grid-template-columns: 1fr;
  }
  .uc4__body {
    padding: 20px 18px;
  }
}
/* ===============================
  UC4-1 : 受給者証の申請
=============================== */
.uc41 {
  padding: 60px 0 80px;
  background: #ffffff;
}
.uc41__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc41__banner {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 111, 165, .88), rgba(58, 163, 215, .22)), url("../image/support_apply_bg.jpg") center top/cover no-repeat;
  min-height: 150px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}
.uc41__en {
  margin: 0;
  padding: 20px 26px 0;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.uc41__ttl {
  margin: 10px 0 0;
  padding: 0 26px 24px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  text-shadow: 0 10px 26px rgba(0, 0, 0, .20);
}
.uc41__body {
  margin-top: -18px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  padding: 26px 28px 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc41__lead {
  margin: 0 0 18px;
  line-height: 1.95;
}
.uc41__small {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(11, 43, 58, .78);
}
.uc41__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.uc41__card {
  border-radius: 18px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  padding: 18px;
}
.uc41__cardHead {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.uc41__no {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0E5A7C;
  background: rgba(14, 90, 124, .14);
}
.uc41__cardTtl {
  margin: 0;
  font-weight: 900;
  color: #0B2B3A;
  font-size: 16px;
  line-height: 1.35;
}
.uc41__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.uc41__list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
  font-weight: 700;
}
.uc41__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 90, 124, .14);
  color: #0E5A7C;
  font-weight: 900;
}
.uc41__dl {
  margin: 0;
  display: grid;
  gap: 10px;
}
.uc41__row {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(31, 111, 165, .10);
}
.uc41__row dt {
  margin: 0 0 6px;
  font-weight: 900;
  color: #0B2B3A;
}
.uc41__row dd {
  margin: 0;
  line-height: 1.7;
}
.uc41__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(11, 43, 58, .78);
}
.uc41__p {
  margin: 0;
  line-height: 1.9;
}
.uc41__linkBox {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(14, 90, 124, .06);
  border: 1px solid rgba(14, 90, 124, .12);
}
.uc41__linkTtl {
  margin: 0 0 8px;
  font-weight: 900;
  color: #0B2B3A;
}
.uc41__link {
  font-weight: 900;
  color: #0E5A7C;
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .uc41__grid {
    grid-template-columns: 1fr;
  }
  .uc41__body {
    padding: 20px 18px;
  }
}
/* ===============================
  UC4-2 : 実績・症例
=============================== */
.uc42 {
  padding: 70px 0 80px;
  background: #f8fbfd;
}
.uc42__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc42__banner {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 43, 58, .78), rgba(11, 43, 58, .18)), url("../image/achieve_bg.jpg") center/cover no-repeat;
  min-height: 150px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
  padding-bottom: 10px;
}
.uc42__en {
  margin: 0;
  padding: 20px 26px 0;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.uc42__ttl {
  margin: 10px 0 0;
  padding: 0 26px 24px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  text-shadow: 0 10px 26px rgba(0, 0, 0, .20);
}
.uc42__body {
  margin-top: -18px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  padding: 26px 28px 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}
.uc42__lead {
  margin: 0 0 18px;
  line-height: 1.95;
}
.uc42__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.uc42__card {
  border-radius: 18px;
  background: #F4F8FB;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  padding: 18px;
  display: block;
  color: inherit;
}
.uc42__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
}
.uc42__cardHead {
  display: grid;
  gap: 8px;
}
.uc42__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.uc42__badge--sub {
  background: rgba(255, 216, 74, .22);
  color: #a06600;
}
.uc42__badge--sub2 {
  background: rgba(58, 163, 215, .14);
  color: #0E5A7C;
}
.uc42__badge--paper {
  background: rgba(11, 43, 58, .10);
  color: #0B2B3A;
}
.uc42__cardTtl {
  margin: 0;
  font-weight: 900;
  color: #0B2B3A;
  line-height: 1.4;
  font-size: 16px;
}
.uc42__p {
  margin: 10px 0 0;
  line-height: 1.8;
}
.uc42__more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: #0E5A7C;
}
.uc42__figure {
  margin: 22px 0 0;
}
/* chart */
.ucChart {
  --bg: #F4F8FB;
  --bar: #3AA3D7;
  --edge: #1F6FA5;
  --radius: 18px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
  border: 1px solid rgba(31, 111, 165, .10);
}
.ucChart__title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #0f2a3a;
  font-weight: 900;
}
.ucChart__grid {
  height: 240px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
}
.ucChart__col {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
}
.ucChart__bar {
  align-self: end;
  height: var(--h);
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, var(--bar), var(--edge));
  display: grid;
  align-items: start;
  justify-items: center;
  padding-top: 10px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .10);
  position: relative;
  overflow: hidden;
}
.ucChart__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 120px at 40% 10%, rgba(255, 255, 255, .25), transparent 60%);
}
.ucChart__val {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}
.ucChart__year {
  text-align: center;
  font-weight: 900;
  color: rgba(11, 43, 58, .78);
  font-size: 13px;
}
@media (max-width: 900px) {
  .uc42__cards {
    grid-template-columns: 1fr;
  }
  .uc42__body {
    padding: 20px 18px;
  }
}
/* ===============================
  UC5B : 当院が選ばれる理由
=============================== */
/* ====== CONTENT 5 : 当院が選ばれる理由（本当に左右100% / 添付っぽい横長パネル） ====== */
.uc5b {
  padding: 70px 0 80px;
  background: #ffffff;
}
.uc5b__inner {
  width: 100%;
  margin: 0 auto;
}
.uc5b__head {
  width: min(1100px, 92%);
  margin: 0 auto 18px;
}
.uc5b__kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
}
.uc5b__ttl {
  margin: 12px 0 0;
  color: #0B2B3A;
}
/* rows */
.uc5b__list {
  display: grid;
  gap: 18px;
}
.uc5b__row {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr; /* 左写真:右カード */
  min-height: clamp(320px, 34vw, 520px);
  position: relative;
  overflow: hidden;
  background: #F4F8FB;
}
/* left photo */
.uc5b__photo {
  position: relative;
  overflow: hidden;
}
.uc5b__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* right wave background */
.uc5b__right {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 35% 50%, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, rgba(244, 248, 251, 1) 0%, rgba(244, 248, 251, 1) 100%);
}
/* wave-ish shapes (CSS only) */
.uc5b__right::before, .uc5b__right::after {
  content: "";
  position: absolute;
  inset: -40px -120px -40px -120px;
  pointer-events: none;
  opacity: .9;
}
.uc5b__right::before {
  background:
    radial-gradient(600px 220px at 70% 40%, rgba(58, 163, 215, .22), rgba(58, 163, 215, 0) 70%), radial-gradient(520px 240px at 80% 70%, rgba(31, 111, 165, .18), rgba(31, 111, 165, 0) 72%);
  filter: blur(0px);
}
.uc5b__right::after {
  background:
    radial-gradient(700px 260px at 85% 55%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 72%), radial-gradient(520px 220px at 65% 85%, rgba(58, 163, 215, .12), rgba(58, 163, 215, 0) 70%);
}
/* white card */
.uc5b__card {
  position: absolute;
  right: clamp(18px, 3.2vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  width: min(720px, 92%);
  max-width: 720px;
  background: rgba(255, 255, 255, .97);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 28px) clamp(18px, 2.4vw, 34px);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .22);
}
/* inside card */
.uc5b__point {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(14, 90, 124, .78);
}
.uc5b__top {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}
.uc5b__no {
  font-size: clamp(56px, 5.2vw, 92px);
  font-weight: 900;
  line-height: 1;
  color: #0A4C8A;
  letter-spacing: .02em;
}
.uc5b__h {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.45;
  font-weight: 900;
  color: #0B2B3A;
}
.uc5b__line {
  height: 2px;
  margin: 14px 0 12px;
  background: #1F6FA5;
  opacity: .85;
}
.uc5b__p {
  margin: 0;
  line-height: 1.9;
  color: rgba(11, 43, 58, .88);
}
/* SP */
@media (max-width: 900px) {
  .uc5b__row {
    grid-template-columns: 1fr;
    min-height: 520px;
  }
  .uc5b__photo {
    height: 260px;
  }
  .uc5b__card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: -26px 14px 18px;
    width: auto;
    max-width: none;
  }
  .uc5b__top {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }
}
/* ===============================
  UC6 : ACCESS
=============================== */
.uc6 {
  padding: 70px 0 80px;
  background: #f8fbfd;
}
.uc6__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.uc6__head {
  margin-bottom: 18px;
}
.uc6__kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 165, .12);
  color: #1F6FA5;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
}
.uc6__ttl {
  margin: 10px 0 0;
  color: #0B2B3A;
}
.uc6__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.uc6__map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  background: #fff;
  min-height: 360px;
}
.uc6__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.uc6__info {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  padding: 18px;
}
.uc6__dl {
  margin: 0;
}
.uc6__row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.uc6__row:last-child {
  border-bottom: 0;
}
.uc6__dl dt {
  margin: 0;
  font-weight: 900;
  color: #0E5A7C;
}
.uc6__dl dd {
  margin: 0;
  line-height: 1.8;
}
.uc6__link {
  font-weight: 900;
  color: #0E5A7C;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .uc6__grid {
    grid-template-columns: 1fr;
  }
  .uc6__map iframe {
    min-height: 320px;
  }
}
/* ===============================
  FOOTER
=============================== */
.lp-footer {
  background: #0B2B3A;
  color: rgba(255, 255, 255, .85);
  padding: 22px 0;
}
.lp-footer__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}
.lp-footer__copy {
  font-size: 12px;
  letter-spacing: .06em;
}
/* ===============================
  FLOATING BANNER
=============================== */
.floating-bnr{
  position: fixed;
  right: 0;
  bottom: 160px;   /* ←ここで下から100px */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 900px){

  .floating-bnr{
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    flex-direction: row;
  }

}
.floating-bnr__item{
  width: 120px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  border-radius: 0;
}

.floating-bnr__item:hover{
  transform: translateX(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.floating-bnr__item i{
  font-size: 20px;
  line-height: 1;
}

.floating-bnr__item--web{
  background: linear-gradient(180deg, #3AA3D7 0%, #1F6FA5 100%);
}

.floating-bnr__item--access{
  background: linear-gradient(180deg, #0B2B3A 0%, #0A2431 100%);
}

.floating-bnr__item--tel{
  display: none;
}

/* SPは下固定3分割 */
@media (max-width: 900px){
  .floating-bnr{
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    flex-direction: row;
    gap: 0;
  }

  .floating-bnr__item{
    width: auto;
    min-width: 0;
    min-height: 64px;
    flex: 1 1 33.333%;
    border-radius: 0;
    padding: 10px 6px calc(10px + env(safe-area-inset-bottom));
    font-size: 11px;
    gap: 4px;
    box-shadow: 0 -6px 18px rgba(0,0,0,.16);
  }

  .floating-bnr__item:hover{
    transform: none;
    box-shadow: 0 -6px 18px rgba(0,0,0,.16);
  }

  .floating-bnr__item i{
    font-size: 15px;
  }

  .floating-bnr__item--tel{
    display: flex;
    background: linear-gradient(180deg, #FFD84A 0%, #FF9900 100%);
  }

  body{
    padding-bottom: 72px;
  }
}
/* ===============================
  PAGE TOP
=============================== */

.pagetop{
  position: fixed;
  right: 18px;
  bottom: 40px;

  width: 46px;
  height: 80px;

  background: rgba(10,76,138,.9);
  backdrop-filter: blur(6px);

  color: #fff;
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  box-shadow: 0 14px 30px rgba(0,0,0,.25);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: all .35s ease;

  z-index: 9998;
}

.pagetop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.pagetop__arrow{
  font-size: 18px;
  line-height: 1;
}

.pagetop__text{
  font-size: 11px;
  letter-spacing: .12em;
  margin-top: 4px;
}

/* SP調整 */
@media (max-width:900px){

  .pagetop{
    right: 14px;

    bottom: calc(72px + env(safe-area-inset-bottom) + 16px);

    width: 42px;
    height: 72px;
  }

  .pagetop__arrow{
    font-size: 16px;
  }

}