@charset "UTF-8";
:root {
  --primary: #1f7ac0;
  --accent: #57aae8;
  --cta: #e06a00;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #23323f;
  background: #fff;
  line-height: 1.9;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }
}

a {
  color: #1f7ac0;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #17639e;
}

:focus-visible {
  outline: 3px solid #e06a00;
  outline-offset: 2px;
  border-radius: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

.faded-obj {
  opacity: 1;
  display: block;
  position: relative;
}

.js .faded-obj {
  opacity: 0;
}

.js .faded-obj.fade-in {
  animation: 1s cubic-bezier(0.2, 0.7, 0.3, 1) 0s fade-in forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(64px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.js-anim .reveal-item {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.3, 1), transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: opacity, transform;
}

.js-anim .reveal-item.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal-item {
    transform: none !important;
    transition: opacity 0.5s ease-out !important;
  }
}
header {
  --header-h: 84px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1f7ac0;
  border-bottom: 3px solid #57aae8;
  box-shadow: 0 2px 14px rgba(6, 42, 79, 0.25);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav contact";
  align-items: center;
  column-gap: 1rem;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  min-height: var(--header-h);
}
@media screen and (max-width: 1439px) {
  header {
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "brand contact toggle";
    column-gap: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  header {
    --header-h: 60px;
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand toggle";
    column-gap: 0.5rem;
    padding: 0 0.6rem;
  }
}
header .brand {
  grid-area: brand;
  display: flex;
  align-items: center;
}
header .brand img {
  width: auto;
  height: 64px;
  display: block;
}
@media screen and (max-width: 767px) {
  header .brand img {
    height: 46px;
  }
}
header .badge-contact {
  grid-area: contact;
  justify-self: end;
}
header .badge-contact p {
  margin: 0;
}
header .badge-contact a {
  display: block;
  padding: 0.35rem 1.1rem;
  line-height: 1.25;
  white-space: nowrap;
  color: #1f7ac0;
  font-weight: 900;
  font-size: clamp(1.05rem, 2.1vw, 1.7rem);
  text-decoration: none;
  border: 2px solid #1f7ac0;
  border-radius: 999px;
  background: #fff;
  transition: background-color 0.15s, color 0.15s;
}
header .badge-contact a:hover, header .badge-contact a:focus {
  background: #1f7ac0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  header .badge-contact {
    display: none;
  }
}
header ul#navbar-header {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
header ul#navbar-header li {
  white-space: nowrap;
}
header ul#navbar-header li a, header ul#navbar-header li span {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.15s, color 0.15s;
}
header ul#navbar-header li a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
header ul#navbar-header li span.active {
  background: #114f80;
  color: #fff;
}
@media screen and (min-width: 1440px) and (max-width: 1599px) {
  header ul#navbar-header li a, header ul#navbar-header li span {
    font-size: 0.88rem;
    padding: 0.4rem 0.45rem;
  }
}
@media screen and (max-width: 1439px) {
  header ul#navbar-header {
    grid-area: unset;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h) - 64px);
    overflow-y: auto;
    background: #17639e;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }
  header ul#navbar-header li a, header ul#navbar-header li span {
    color: #fff;
    font-size: 1.05rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
  header ul#navbar-header li a:hover {
    background: #17639e;
    color: #fff;
  }
  header ul#navbar-header li span.active {
    background: #114f80;
  }
}
header ul#navbar-header.collapse:not(.show) {
  display: flex;
}
@media screen and (max-width: 1439px) {
  header ul#navbar-header.collapse:not(.show) {
    display: none;
  }
}
header ul#navbar-header.collapse.show {
  display: flex;
}
@media screen and (max-width: 1439px) {
  header ul#navbar-header.collapse.show {
    display: block;
  }
}
@media screen and (max-width: 1439px) {
  header ul#navbar-header.collapsing {
    display: block;
  }
}
header .navbar-toggler {
  grid-area: toggle;
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: transparent;
}
@media screen and (max-width: 1439px) {
  header .navbar-toggler {
    display: block;
  }
}
header .navbar-toggler span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: #fff;
  border: none;
  display: block;
  transition: transform 0.2s, opacity 0.2s, top 0.2s;
  transform-origin: center;
}
header .navbar-toggler span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
header .navbar-toggler span:nth-child(2) {
  top: 21px;
  opacity: 0;
}
header .navbar-toggler span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
header .navbar-toggler.collapsed span:nth-child(1) {
  top: 14px;
  transform: none;
}
header .navbar-toggler.collapsed span:nth-child(2) {
  top: 21px;
  opacity: 1;
}
header .navbar-toggler.collapsed span:nth-child(3) {
  top: 28px;
  transform: none;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.12s, box-shadow 0.15s, background-color 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-cta {
  background: #e06a00;
  color: #fff;
  border: none;
  padding: 0.85rem 1.8rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(224, 106, 0, 0.35);
}
.btn-cta:hover, .btn-cta:focus {
  background: #b95400;
  color: #fff;
}

.btn-tel {
  background: #fff;
  color: #1f7ac0;
  border: 2px solid #1f7ac0;
  padding: 0.75rem 1.5rem;
  font-size: 1.15rem;
}
.btn-tel:hover, .btn-tel:focus {
  background: #1f7ac0;
  color: #fff;
}

.btn-line {
  background: #047b36;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
}
.btn-line:hover, .btn-line:focus {
  background: #03642b;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: #1f7ac0;
  border: 1.5px solid #d9e7f3;
  padding: 0.6rem 1.3rem;
}
.btn-ghost:hover, .btn-ghost:focus {
  border-color: #1f7ac0;
  background: #e8f4fd;
  color: #1f7ac0;
}

.hero {
  position: relative;
  scroll-margin-top: 110px;
  isolation: isolate;
  background: url(../images/top_002.jpg) no-repeat 100% 62%;
  background-size: 130% auto;
}
@media screen and (max-width: 767px) {
  .hero {
    display: flex;
    flex-direction: column;
    background-image: none;
    background-color: #f7fbff;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.95) 29%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.24) 62%, rgba(255, 255, 255, 0.02) 80%), linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 70%, rgba(243, 249, 254, 0.55) 100%);
}
@media screen and (max-width: 767px) {
  .hero::before {
    position: static;
    order: -1;
    z-index: 0;
    height: 190px;
    background: url(../images/top_002.jpg) no-repeat 100% 58%;
    background-size: 230% auto;
  }
}
.hero .hero-inner {
  position: relative;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: clamp(2.25rem, 4.5vw, 3.75rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  color: #23323f;
}
@media screen and (max-width: 767px) {
  .hero .hero-inner {
    padding: 1.5rem 1rem 1.75rem;
  }
}
.hero .hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #17639e;
  background: #fff;
  border: 1.5px solid #9ccdf2;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(31, 122, 192, 0.09);
}
.hero h1 {
  max-width: 16em;
  margin: 0 0 1rem;
  padding: 0;
  background: none;
  color: #23323f;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-shadow: none;
}
.hero h1 .hero-accent {
  display: inline-block;
  color: #1f7ac0;
  background: linear-gradient(transparent 68%, rgba(87, 170, 232, 0.38) 68%);
}
.hero .hero-lead {
  max-width: 33em;
  margin: 0 0 1.75rem;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.9;
  color: #5d7183;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .hero .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
.hero .hero-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin: 0;
  max-width: 42em;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9e7f3;
  border-left: 4px solid #57aae8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(31, 122, 192, 0.09);
}
.hero .hero-hours div {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.hero .hero-hours dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1f7ac0;
  white-space: nowrap;
}
.hero .hero-hours dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #23323f;
}
.hero .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}
@media screen and (max-width: 991px) {
  .hero .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .features > :last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 767px) {
  .hero .features {
    gap: 0.6rem;
    margin-top: 1.5rem;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-top: 4px solid #57aae8;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(31, 122, 192, 0.16);
  text-decoration: none;
  color: #23323f;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, background-color 0.15s;
}
@media screen and (max-width: 767px) {
  .feature-card {
    padding: 0.85rem 0.75rem;
  }
}
.feature-card:hover, .feature-card:focus-visible {
  transform: translateY(-3px);
  background: #fff;
  border-top-color: #e06a00;
  box-shadow: 0 12px 32px rgba(31, 122, 192, 0.22);
  color: #23323f;
}
.feature-card .feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #17639e;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .feature-card .feature-title {
    font-size: 0.92rem;
  }
}
.feature-card .feature-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5d7183;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .feature-card .feature-desc {
    font-size: 0.78rem;
  }
}
.feature-card .feature-more {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f7ac0;
}
.feature-card .feature-more::after {
  content: " ›";
}

@keyframes hero-card-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.js-hero-anim .hero .features .feature-card {
  opacity: 0;
}

.js-hero-anim .hero .features .feature-card.is-revealed {
  opacity: 1;
  animation: hero-card-rise 0.72s cubic-bezier(0.22, 0.85, 0.3, 1) backwards;
}

@keyframes hero-card-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-hero-anim .hero .features .feature-card.is-revealed {
    animation-name: hero-card-fade !important;
    animation-duration: 0.45s !important;
    animation-timing-function: ease-out !important;
  }
}
.container {
  width: min(1200px, 100%);
  max-width: 1200px;
  padding-inline: clamp(1rem, 4vw, 3rem);
  padding-bottom: 0;
}

.section {
  scroll-margin-top: 110px;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  isolation: isolate;
  overflow-x: clip;
}

.section-band {
  background: #f3f9fe;
}

#medical.section-band {
  background-color: #f3f9fe;
  background-image: linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url(../images/ng_fac_waiting.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: auto, cover;
  background-position: center, center 62%;
}
#medical.section-band .section-title,
#medical.section-band h2 {
  color: #17639e;
}

.section-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

h1, h2, h3, h4 {
  font-weight: 800;
  color: #1f7ac0;
}

.section > .section-inner > h1,
.section > .section-inner > h2,
.section-title {
  position: relative;
  margin: 0 0 1.75rem;
  padding: 0 0 0.7rem 0;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.4;
  border-bottom: 1px solid #d9e7f3;
}
.section > .section-inner > h1::after,
.section > .section-inner > h2::after,
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 72px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1f7ac0 0%, #57aae8 100%);
}

.section .section-title::before {
  position: absolute;
  left: -0.03em;
  bottom: 0.42em;
  z-index: -1;
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(87, 170, 232, 0.2);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

#topics .section-title::before {
  content: "News";
}

#greetings .section-title::before {
  content: "Greeting";
}

#information .section-title::before {
  content: "Medical";
}

#medical .section-title::before {
  content: "Service";
}

#access .section-title::before {
  content: "Access";
}

.section-lead {
  margin: -1rem 0 2rem;
  font-size: 1.02rem;
  color: #5d7183;
  max-width: 60em;
}

.container h2,
.section-inner h2:not(.section-title) {
  margin: 3rem 0 1.25rem;
  padding: 0 0 0 0.85rem;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  border-left: 5px solid #1f7ac0;
  color: #1f7ac0;
}

.container h3,
.section-inner h3 {
  margin: 2rem 0 0.9rem;
  padding: 0;
  font-size: 1.12rem;
  color: #17639e;
}

.container h4,
.section-inner h4 {
  display: inline-block;
  margin: 1.25rem 0 0.75rem;
  padding: 0.15rem 0.85rem;
  font-size: 0.95rem;
  color: #fff;
  background: #1f7ac0;
  border-radius: 999px;
}

.container em,
.section-inner em {
  display: block;
  margin: 2.25rem 0 0.85rem;
  padding: 0 0 0 0.75rem;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1f7ac0;
  border-left: 4px solid #1f7ac0;
  line-height: 1.6;
}
.container em strong,
.section-inner em strong {
  font-weight: 800;
}

p {
  font-size: 1.02rem;
  line-height: 1.9;
}

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

.linkedlist {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  font-size: 0.85rem;
  color: #5d7183;
}
.linkedlist a {
  color: #5d7183;
  text-decoration: none;
}
.linkedlist a:hover {
  color: #57aae8;
  text-decoration: underline;
}
.linkedlist .active {
  color: #23323f;
  font-weight: 700;
}

.topics .topics-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.topics .list-group {
  border: none;
}
.topics .list-group-item.press {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  grid-template-areas: "date title" "date body";
  gap: 0.2rem 1.25rem;
  padding: 1.15rem 0.25rem;
  border: none;
  border-bottom: 1px dashed #d9e7f3;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .topics .list-group-item.press {
    grid-template-columns: 3.9rem 1fr;
    grid-template-areas: "date title" "date body";
    gap: 0.2rem 0.7rem;
    padding: 1rem 0.25rem;
  }
}
.topics .list-group-item.press .badge {
  grid-area: date;
  justify-self: start;
  align-self: start;
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  padding: 0;
  color: #17639e !important;
  background: #e8f4fd !important;
  border-radius: 50%;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .topics .list-group-item.press .badge {
    width: 3.9rem;
    height: 3.9rem;
  }
}
.topics .list-group-item.press .badge time {
  display: grid;
  place-items: center;
  gap: 0.05rem;
}
.topics .list-group-item.press .badge .badge-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .topics .list-group-item.press .badge .badge-year {
    font-size: 0.63rem;
  }
}
.topics .list-group-item.press .badge .badge-date {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .topics .list-group-item.press .badge .badge-date {
    font-size: 0.94rem;
  }
}
.topics .list-group-item.press .title {
  grid-area: title;
}
.topics .list-group-item.press .title p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f7ac0;
  line-height: 1.6;
}
.topics .list-group-item.press .body {
  grid-area: body;
}
.topics .list-group-item.press .body p {
  margin: 0.2rem 0 0;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #5d7183;
}

.greetings .greetings-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .greetings .greetings-grid {
    grid-template-columns: 1fr;
  }
}
.greetings .greetings-photo img {
  width: 100%;
  max-height: none;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(31, 122, 192, 0.16);
  display: block;
}
.greetings .greetings-body p {
  font-size: 1.05rem;
  line-height: 2.05;
}
.greetings .greetings-sign {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #5d7183;
}
.greetings .greetings-sign strong {
  display: block;
  font-size: 1.15rem;
  color: #17639e;
  font-weight: 800;
}

.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.table-schedule {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d9e7f3;
  background: #fff;
}
.table-schedule th, .table-schedule td {
  border: none;
  border-bottom: 1px solid #d9e7f3;
  border-right: 1px solid #d9e7f3;
  vertical-align: middle;
  text-align: center;
  padding: 0.7rem 0.4rem;
  font-size: 1.05rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .table-schedule th, .table-schedule td {
    padding: 0.55rem 0.15rem;
    font-size: 0.9rem;
  }
}
.table-schedule th:last-child, .table-schedule td:last-child {
  border-right: none;
}
.table-schedule tbody tr:last-child th, .table-schedule tbody tr:last-child td {
  border-bottom: none;
}
.table-schedule thead th {
  background: #1f7ac0;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  border-right-color: rgba(255, 255, 255, 0.22);
}
@media screen and (max-width: 767px) {
  .table-schedule thead th {
    font-size: 0.85rem;
    padding: 0.5rem 0.1rem;
  }
}
.table-schedule tbody th:first-child {
  background: #f3f9fe;
  text-align: left;
  padding-left: 0.9rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .table-schedule tbody th:first-child {
    font-size: 0.8rem;
    padding-left: 0.4rem;
    white-space: normal;
  }
}
.table-schedule tbody th:nth-child(2) {
  background: #f3f9fe;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .table-schedule tbody th:nth-child(2) {
    font-size: 0.78rem;
  }
}
.table-schedule td {
  color: #1f7ac0;
  font-weight: 700;
}
.table-schedule .bg-schedule-caution th:first-child, .table-schedule .bg-schedule-caution th:nth-child(2) {
  background: #d6ebfb;
}
.table-schedule .bg-schedule-caution td {
  background: #eaf5fe;
  color: #17639e;
}
.table-schedule .is-closed {
  color: #64737f;
  font-weight: 400;
}

.schedule-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.9rem 1.1rem;
  background: #e8f4fd;
  border-radius: 12px;
  font-size: 0.92rem;
  color: #17639e;
}
.schedule-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}
.schedule-note strong {
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-bottom: 1.5rem;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .card-grid-2 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  padding: 1.35rem 1.35rem 1.15rem;
  background: #fff;
  border: 1px solid #d9e7f3;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(31, 122, 192, 0.09);
}
.info-card h3 {
  margin: 0 0 0.7rem;
  padding: 0 0 0.6rem;
  font-size: 1.06rem;
  color: #1f7ac0;
  border-bottom: 2px solid #e8f4fd;
}
.info-card p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.85;
}
.info-card ul {
  margin: 0;
  padding-left: 1.2rem;
}
.info-card li {
  font-size: 0.95rem;
  line-height: 1.8;
}
.info-card dl {
  margin: 0;
}
.info-card dt {
  float: none;
  width: auto;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1f7ac0;
  margin-top: 0.55rem;
}
.info-card dd {
  margin: 0 0 0.35rem;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #5d7183;
}

.info-card-accent {
  border-left: 5px solid #1f7ac0;
}

.note-box {
  margin: 1.25rem 0;
  padding: 1.1rem 1.3rem;
  background: #fff8ec;
  border: 1px solid #f5dcb4;
  border-left: 5px solid #e06a00;
  border-radius: 12px;
}
.note-box p:last-child {
  margin-bottom: 0;
}
.note-box strong {
  color: #b95400;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
}
.tag-list li {
  padding: 0.3rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #17639e;
  background: #e8f4fd;
  border-radius: 999px;
  line-height: 1.6;
}

.numbered-list {
  counter-reset: n;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.numbered-list li {
  counter-increment: n;
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  background: #fff;
  border: 1px solid #d9e7f3;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.8;
}
.numbered-list li::before {
  content: counter(n);
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: #1f7ac0;
  border-radius: 50%;
  line-height: 1;
}

.medical-caution {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #9c4700;
  background: #fff3e0;
  border-radius: 4px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
}
.facility-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid #d9e7f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 122, 192, 0.09);
}
.facility-grid figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  max-height: none;
}
.facility-grid figure figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f7ac0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .facility-grid figure figcaption {
    font-size: 0.82rem;
    padding: 0.45rem 0.4rem;
  }
}

.equipment-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.equipment-list .equipment {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid #d9e7f3;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(31, 122, 192, 0.09);
}
@media screen and (max-width: 767px) {
  .equipment-list .equipment {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem;
  }
}
.equipment-list .equipment .equipment-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  max-height: none;
  border-radius: 8px;
  background: #f3f9fe;
}
.equipment-list .equipment h3 {
  margin: 0 0 0.6rem;
  padding: 0 0 0.5rem;
  font-size: 1.15rem;
  border-bottom: 2px solid #e8f4fd;
}
.equipment-list .equipment p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.85;
}
.equipment-list .equipment p:last-child {
  margin-bottom: 0;
}

.access .access-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
@media screen and (max-width: 767px) {
  .access .access-grid {
    grid-template-columns: 1fr;
  }
}
.access .access-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(31, 122, 192, 0.16);
  line-height: 0;
}
.access .access-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
@media screen and (max-width: 767px) {
  .access .access-map iframe {
    height: 260px;
  }
}
.access .access-info dl {
  margin: 0;
}
.access .access-info dt {
  float: none;
  width: auto;
  text-align: left;
  margin-top: 0.9rem;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #1f7ac0;
}
.access .access-info dd {
  margin: 0.1rem 0 0;
  padding: 0 0 0.7rem;
  border-bottom: 1px dashed #d9e7f3;
  font-size: 1rem;
  line-height: 1.8;
}
.access .access-info dd small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.83rem;
  color: #5d7183;
}
.access .access-info dd a {
  font-weight: 800;
}
.access .access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.cta-band {
  background: linear-gradient(120deg, #17639e 0%, #114f80 100%);
  color: #fff;
  padding-block: clamp(2.25rem, 5vw, 3.25rem);
}
.cta-band .cta-inner {
  width: min(1000px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 0.6rem;
  padding: 0;
  border: none;
  color: #fff;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  line-height: 1.5;
}
.cta-band p {
  margin: 0 auto 1.6rem;
  max-width: 40em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cta-band .cta-actions .btn {
    width: 100%;
  }
}
.cta-band .cta-hours {
  margin: 1.4rem 0 0;
  max-width: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.line-panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid #06c755;
  border-radius: 12px;
}
.line-panel .line-panel-body {
  flex: 1;
}
.line-panel .line-panel-body strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.line-panel .line-panel-body p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}
.line-panel .line-panel-body a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.line-panel img {
  flex: none;
  display: block;
  width: 74px;
  height: 74px;
  padding: 3px;
  background: #fff;
  border-radius: 6px;
}

footer {
  margin-top: 0;
  background: #114f80;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}
footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .footer-main {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1rem, 4vw, 3rem) 1.75rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media screen and (max-width: 991px) {
  footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
footer .footer-brand .footer-name {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
footer .footer-brand .footer-corp {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-brand address {
  margin: 0 0 1rem;
  font-style: normal;
  line-height: 1.9;
}
footer .footer-brand .footer-tel {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
footer .footer-brand .footer-tel:hover {
  color: #ffd08a;
}
footer .footer-col-title {
  margin: 0 0 0.9rem;
  padding-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #a8d3f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
footer .footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-nav ul li {
  font-weight: 500;
  text-align: left;
}
footer .footer-nav ul li a, footer .footer-nav ul li span {
  display: block;
  padding: 0.3rem 0;
}
footer .footer-nav ul li span.active {
  color: #fff;
  font-weight: 800;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
footer .footer-bottom .footer-bottom-inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 1rem clamp(1rem, 4vw, 3rem) 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}
footer .footer-bottom .footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-utility {
    justify-content: center;
  }
}
footer .footer-bottom copyright {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.sp-actionbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-actionbar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid #d9e7f3;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sp-actionbar a, .sp-actionbar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 60px;
    padding: 0.35rem 0.25rem;
    border: none;
    border-right: 1px solid #d9e7f3;
    background: #fff;
    color: #1f7ac0;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
  }
  .sp-actionbar a .sp-actionbar-icon, .sp-actionbar button .sp-actionbar-icon {
    font-size: 1.2rem;
    line-height: 1;
  }
  .sp-actionbar a:last-child, .sp-actionbar button:last-child {
    border-right: none;
  }
  .sp-actionbar .sp-action-reserve {
    background: #b95400;
    color: #fff;
  }
}

.table-wapper {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.table-data {
  width: 100%;
  margin: 0;
  font-size: 0.92rem;
  border: 1px solid #d9e7f3;
}
@media screen and (max-width: 767px) {
  .table-data {
    min-width: 720px;
  }
}
.table-data th, .table-data td {
  vertical-align: middle;
  padding: 0.5rem 0.9rem;
  border-color: #d9e7f3;
}
.table-data thead th {
  background: #1f7ac0;
  color: #fff;
  font-weight: 700;
}
.table-data tbody th {
  background: #f3f9fe;
  font-weight: 700;
  color: #17639e;
}

.endoscopic-panel {
  margin: 1.75rem 0;
  padding: 1.4rem 1.6rem;
  background: #fffaf0;
  border: 1px solid #f0dfbe;
  border-radius: 12px;
  font-size: 0.98rem;
}
@media screen and (max-width: 767px) {
  .endoscopic-panel {
    padding: 1rem 1.1rem;
  }
}
.endoscopic-panel p {
  font-size: 0.98rem;
}
.endoscopic-panel p:last-child {
  margin-bottom: 0;
}

#anesthesia, #colonoscopy, #no-laxative, #hours, #checkup, #internal-medicine,
.container-sub {
  scroll-margin-top: 110px;
}

.container-home-visit dl {
  margin: 1.25rem 0 2rem;
  padding: 1.35rem 1.6rem;
  background: #e8f4fd;
  border-radius: 12px;
  font-size: 1rem;
}
.container-home-visit dl dt {
  float: none;
  width: auto;
  text-align: left;
  margin-top: 0.9rem;
  font-weight: 800;
  color: #17639e;
}
.container-home-visit dl dt:first-child {
  margin-top: 0;
}
.container-home-visit dl dd {
  margin: 0.1rem 0 0;
  line-height: 1.85;
}

.sitemap-0 {
  margin: 0.5rem 0;
  padding: 0.7rem 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  background: #f3f9fe;
  border-radius: 8px;
}
.sitemap-0 a {
  text-decoration: none;
  color: #17639e;
}

.sitemap-1 {
  margin: 0.15rem 0 0.15rem 1.5rem;
  padding: 0.4rem 1rem;
  border-left: 3px solid #d9e7f3;
}
.sitemap-1 a {
  text-decoration: none;
}
.sitemap-1 a:hover {
  text-decoration: underline;
}

.links-bottom {
  display: inline-block;
  padding: 0.5rem 0;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .links-bottom {
    display: block;
  }
  .links-bottom a {
    display: block;
    margin: 0.6rem 0;
    padding: 0.9rem 1rem;
    text-align: center;
    background: #fff;
    border: 1px solid #d9e7f3;
    border-radius: 12px;
    text-decoration: none;
  }
}

#form-reservation-modal .modal-content, #form-reservation-confirm-modal .modal-content, #form-reservation-result .modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
}
#form-reservation-modal .modal-header, #form-reservation-confirm-modal .modal-header, #form-reservation-result .modal-header {
  background: #1f7ac0;
  color: #fff;
  border-bottom: none;
}
#form-reservation-modal .modal-header .modal-title, #form-reservation-confirm-modal .modal-header .modal-title, #form-reservation-result .modal-header .modal-title {
  font-weight: 800;
  font-size: 1.1rem;
}
#form-reservation-modal .modal-header .btn-close, #form-reservation-confirm-modal .modal-header .btn-close, #form-reservation-result .modal-header .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
}
#form-reservation-modal .modal-body, #form-reservation-confirm-modal .modal-body, #form-reservation-result .modal-body {
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  #form-reservation-modal .modal-body, #form-reservation-confirm-modal .modal-body, #form-reservation-result .modal-body {
    padding: 1rem;
  }
}
#form-reservation-modal .modal-body label, #form-reservation-confirm-modal .modal-body label, #form-reservation-result .modal-body label {
  padding: 0.2rem 1rem 0.2rem 0.5rem;
}
#form-reservation-modal .modal-body .col-form-label, #form-reservation-confirm-modal .modal-body .col-form-label, #form-reservation-result .modal-body .col-form-label {
  font-weight: 800;
  color: #1f7ac0;
}
@media screen and (max-width: 767px) {
  #form-reservation-modal .modal-body .col-form-label, #form-reservation-confirm-modal .modal-body .col-form-label, #form-reservation-result .modal-body .col-form-label {
    font-size: 0.9rem;
  }
}
#form-reservation-modal .modal-body .form-control, #form-reservation-modal .modal-body .form-select, #form-reservation-confirm-modal .modal-body .form-control, #form-reservation-confirm-modal .modal-body .form-select, #form-reservation-result .modal-body .form-control, #form-reservation-result .modal-body .form-select {
  border-radius: 8px;
  border-color: #d9e7f3;
  padding: 0.6rem 0.8rem;
}
#form-reservation-modal .modal-body .form-control:focus, #form-reservation-modal .modal-body .form-select:focus, #form-reservation-confirm-modal .modal-body .form-control:focus, #form-reservation-confirm-modal .modal-body .form-select:focus, #form-reservation-result .modal-body .form-control:focus, #form-reservation-result .modal-body .form-select:focus {
  border-color: #57aae8;
  box-shadow: 0 0 0 0.2rem rgba(31, 122, 192, 0.2);
}
#form-reservation-modal .modal-body .form-text, #form-reservation-confirm-modal .modal-body .form-text, #form-reservation-result .modal-body .form-text {
  font-size: 0.82rem;
  color: #5d7183;
}
#form-reservation-modal .modal-body .form-check-label, #form-reservation-confirm-modal .modal-body .form-check-label, #form-reservation-result .modal-body .form-check-label {
  cursor: pointer;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  #form-reservation-modal .modal-body .form-check-label, #form-reservation-confirm-modal .modal-body .form-check-label, #form-reservation-result .modal-body .form-check-label {
    font-size: 0.9rem;
  }
}
#form-reservation-modal .modal-body .form-check-label.disabled, #form-reservation-confirm-modal .modal-body .form-check-label.disabled, #form-reservation-result .modal-body .form-check-label.disabled {
  opacity: 0.5 !important;
}
#form-reservation-modal .modal-body .form-check-input, #form-reservation-confirm-modal .modal-body .form-check-input, #form-reservation-result .modal-body .form-check-input {
  margin-top: 0.5em;
}
#form-reservation-modal .modal-body .form-check-input:checked, #form-reservation-confirm-modal .modal-body .form-check-input:checked, #form-reservation-result .modal-body .form-check-input:checked {
  background-color: #1f7ac0;
  border-color: #1f7ac0;
}
#form-reservation-modal .modal-footer, #form-reservation-confirm-modal .modal-footer, #form-reservation-result .modal-footer {
  border-top: 1px solid #d9e7f3;
  gap: 0.5rem;
}
#form-reservation-modal .modal-footer .btn, #form-reservation-confirm-modal .modal-footer .btn, #form-reservation-result .modal-footer .btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
}
#form-reservation-modal .modal-footer .btn-primary, #form-reservation-confirm-modal .modal-footer .btn-primary, #form-reservation-result .modal-footer .btn-primary {
  background: #b95400;
  border-color: #b95400;
}
#form-reservation-modal .modal-footer .btn-primary:hover, #form-reservation-confirm-modal .modal-footer .btn-primary:hover, #form-reservation-result .modal-footer .btn-primary:hover {
  background: #9c4700;
  border-color: #9c4700;
}
#form-reservation-modal .modal-footer .btn-secondary, #form-reservation-confirm-modal .modal-footer .btn-secondary, #form-reservation-result .modal-footer .btn-secondary {
  background: #fff;
  color: #23323f;
  border-color: #d9e7f3;
}
#form-reservation-modal .btn-primary-line, #form-reservation-confirm-modal .btn-primary-line, #form-reservation-result .btn-primary-line {
  color: #fff;
  background-color: #047b36;
  border-color: #047b36;
}
#form-reservation-modal .btn-primary-line:hover, #form-reservation-confirm-modal .btn-primary-line:hover, #form-reservation-result .btn-primary-line:hover {
  background-color: #03642b;
  border-color: #03642b;
}
#form-reservation-modal .btn img, #form-reservation-confirm-modal .btn img, #form-reservation-result .btn img {
  width: auto;
  height: 1.4em;
}

@media print {
  header, .sp-actionbar, .cta-band, .hero-actions {
    display: none !important;
  }
  body {
    padding-bottom: 0;
  }
}
