@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 5%;
  left: 5%;
  z-index: 10001;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.header-logo-svg {
  width: 250px;
  height: auto;
  pointer-events: auto;
  display: block;
}
.header-logo-svg .cls-1,
.header-logo-svg .cls-2,
.header-logo-svg .cls-3 {
  fill: #fff;
  transition: fill 0.3s ease;
}
.header-logo-svg .cls-2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17.2px;
  font-weight: 500;
  letter-spacing: .2em;
}
.header-logo-svg .cls-3 {
  font-family: Gotham-Light, Gotham, "Montserrat", sans-serif;
  font-size: 11.26px;
  font-weight: 300;
}
.header-logo-svg .cls-4 { letter-spacing: .1em; }
.header-logo-svg .cls-5 { letter-spacing: .03em; }

.site-header.is-scrolled .header-logo-svg .cls-1,
.site-header.is-scrolled .header-logo-svg .cls-2,
.site-header.is-scrolled .header-logo-svg .cls-3 {
  fill: #002842;
}

.right-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}
.hamburger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  background: #fff;
  gap: 5px;
  transition: all 0.3s ease;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: #111;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.vertical-copy {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  transform: rotate(180deg);
}
.sns-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sns-icons svg {
  width: 20px;
  height: 20px;
  fill: #111;
  cursor: pointer;
  transition: opacity 0.3s;
}
.sns-icons svg:hover {
  opacity: 0.5;
}
.sns-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 120px 40px 40px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}
.drawer-menu.is-open {
  right: 80px;
}
.drawer-menu ul {
  list-style: none;
  text-align: left;
}
.drawer-menu > ul > li {
  margin-bottom: 25px;
}
.drawer-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  display: block;
  padding: 8px 0;
}
.drawer-menu a:hover {
  opacity: 0.5;
}
.drawer-accordion-title {
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}
.drawer-toggle-icon {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}
.drawer-toggle-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}
.drawer-toggle-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.drawer-accordion-title.is-open .drawer-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.drawer-toggle-icon::before {
  transition: transform 0.3s ease;
}
.drawer-accordion-title.is-open:hover .drawer-toggle-icon::before {
  transform: translateX(-1px);
}
.drawer-accordion-title.is-open:hover .drawer-toggle-icon::after {
  top: 2.5px;
  left: 6px;
  width: 7px;
  height: 7px;
  background-color: transparent;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  opacity: 1;
}
.drawer-accordion-content {
  display: none;
  padding-left: 10px;
  margin-top: 5px;
}
.drawer-accordion-content li {
  margin-bottom: 0;
}
.drawer-accordion-content a {
  font-size: 0.95rem;
  font-weight: normal;
  padding: 10px 0;
}

.drawer-menu > ul > li.drawer-sns {
  margin-top: 5px;
}
.drawer-sns-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 0;
}
.drawer-menu .drawer-sns-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 20px;
  height: 20px;
}
.drawer-sns-icons svg {
  width: 20px;
  height: 20px;
  fill: #333;
  display: block;
  transition: opacity 0.3s ease;
}
.drawer-menu .drawer-sns-icons a:hover {
  transform: none;
}
.drawer-sns-icons a:hover svg {
  opacity: 0.5;
}

.more-link {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s ease;
}
.more-link:hover {
  opacity: 0.7;
}
.more-link-white { color: #fff; }
.more-link-dark { color: #333; }
.arrow-circle {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.arrow-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.arrow-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.more-link:hover .arrow-icon {
  transform: translateX(4px);
}

.page-top {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.page-top-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-top:hover .page-top-circle {
  transform: translateY(-6px);
}
.page-top-arrow {
  width: 14px;
  height: 14px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(-45deg);
  transition: border-color 0.3s ease;
}
.page-top:hover .page-top-arrow {
  border-color: #E00000;
}
.page-top-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #fff;
}

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 80px 40px 40px;
  padding-right: calc(40px + 80px);
  position: relative;
  z-index: 20;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-left {
  flex: 1.2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.footer-address {
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.footer-tel {
  font-size: 2.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.footer-tel span {
  font-size: 1rem;
  font-weight: 400;
}

.footer-tel,
.footer-tel a,
.site-footer a[href^="tel:"] {
  color: #fff;
  text-decoration: none;
}
.site-footer a[href^="tel:"]:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.footer-time {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-group {
  margin-top: auto;
  padding-top: 50px;
  display: flex;

  align-items: flex-end;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid #999;
}

.footer-slogan {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}
.footer-group a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.footer-group a:hover {
  opacity: 0.7;
}
.footer-group img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}
.footer-navs {
  display: flex;
  flex: 2;
  justify-content: space-around;
  gap: 20px;
  min-width: 450px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
}
.footer-nav-col h4 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.footer-nav-col h4 a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-block;
}
.footer-nav-col h4 a:hover {
  opacity: 1;
  color: #E00000;
}
.footer-nav-col ul {
  list-style: none;
  margin-bottom: 25px;
}
.footer-nav-col li {
  margin-bottom: 0;
}
.footer-nav-col a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  display: block;
  padding: 6px 0;
}
.footer-nav-col a:hover {
  color: #fff;
}

.footer-nav-col .dash {
  color: #ccc;
  transition: color 0.3s;
}
.footer-nav-col a:hover .dash {
  color: #E00000;
}
.toggle-icon {
  display: none;
}
.footer-banners {
  position: relative;
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-banner-svg {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  color: #999;
}

.footer-banner-svg img {
  width: 60px;
  height: auto;
}

br.pc { display: block; }
br.sp { display: none; }

@media screen and (max-width: 1100px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-navs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 50px;
  }
  .footer-banners {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-banner-svg {
    width: 100px;
  }
}

.footer-heading-flush { margin-top: 0; }

.footer-heading-major,
.footer-heading-minor { margin-bottom: 0; }
.footer-heading-major { margin-top: 20px; }
.footer-heading-minor { margin-top: 4px; }

@media screen and (max-width: 768px) {
  br.pc { display: none; }
  br.sp { display: block; }

  .right-menu {
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;

    top: 13px;
    right: 20px;
  }
  .hamburger {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.8);

    border: none;
  }
  .menu-bottom {
    display: none;
  }
  .drawer-menu {
    width: 100%;
    z-index: 9998;
  }
  .drawer-menu.is-open {
    right: 0;
  }
  .drawer-menu > ul > li {
    margin-bottom: 18px;
  }

  .site-header { top: 20px; left: 20px; }

  .site-header .header-logo-svg { width: 180px; }

  .site-footer { padding: 40px 20px; padding-right: 20px; }
  .page-top { left: auto; right: 0; bottom: 100%; margin-bottom: 20px; gap: 4px;
              transform: translate(0, 18px); }
  .page-top.is-visible { transform: translate(0, 0); }
  .page-top-arrow { width: 12px; height: 12px; }
  .footer-group { padding-top: 20px; margin-top: 20px;}
  .footer-group img { width: 160px; }
  .footer-navs { flex-direction: column; gap: 10px; min-width: 100%; }
  .footer-tel { font-size: 2rem; }

  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-navs   { order: 1; }
  .footer-banners{ order: 2; }
  .footer-left   { order: 3; min-width: 0; }

  .footer-banners {

    position: static;
    width: 100%;
    margin: 0;
    padding: 8px 10px;
    border-radius: 4px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
  }
  .footer-banner-svg {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
  .footer-banner-svg img {
    width: 100%;
    height: auto;
    display: block;
  }

  .accordion-title { position: relative; cursor: pointer; padding-right: 30px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .toggle-icon { display: block; position: absolute; right: 0; top: 50%; transform: translateY(-80%); width: 14px; height: 14px; }
  .toggle-icon::before { content: ''; position: absolute; top: 6px; left: 0; width: 14px; height: 2px; background-color: #fff; }
  .toggle-icon::after { content: ''; position: absolute; top: 0; left: 6px; width: 2px; height: 14px; background-color: #fff; transition: transform 0.3s ease, opacity 0.3s ease; }
  .accordion-title.is-open .toggle-icon::after { transform: rotate(90deg); opacity: 0; }
  .accordion-content { display: none; margin-bottom: 20px; padding-left: 10px; }

  .footer-nav-col h4:not(.accordion-title) { margin-bottom: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .footer-nav-col h4:not(.accordion-title) a { display: block; width: 100%; padding: 15px 0; }
  .accordion-title { display: block; padding: 15px 0; padding-right: 30px; }
  .toggle-icon { transform: translateY(-50%); }
}

:root {
  --e-expo:  cubic-bezier(0.16, 1, 0.30, 1);
  --e-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --e-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --d: 0ms;
}

html { scroll-behavior: smooth; }

.js-motion .rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--e-quint) var(--d),
    transform 0.9s var(--e-quint) var(--d);
  will-change: opacity, transform;
}
.js-motion .rv.rv-fade  { transform: none; }
.js-motion .rv.rv-left  { transform: translateX(-28px); }
.js-motion .rv.rv-right { transform: translateX(28px); }
.js-motion .rv.rv-zoom  { transform: translateY(20px) scale(0.96); }
.js-motion .rv.rv-pop   { transform: scale(0.80); }
.js-motion .rv.is-in { opacity: 1; transform: none; will-change: auto; }

.ln { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.js-motion .rv-lines .ln-i {
  display: block; transform: translateY(115%);
  transition: transform 1.1s var(--e-expo) var(--d, 0ms); will-change: transform;
}
.js-motion .rv-lines.is-in .ln-i { transform: none; will-change: auto; }

.js-motion .site-header { opacity: 0; transition: opacity 0.8s var(--e-quint) 0.35s; }
.js-motion.is-loaded .site-header { opacity: 1; }

.js-motion .right-menu { opacity: 0; transition: opacity 0.8s var(--e-quint) 0.35s; }
.js-motion.is-loaded .right-menu { opacity: 1; }

.js-motion .hamburger { transition: transform 0.45s var(--e-quint), background-color 0.3s ease, border-color 0.3s ease; }
.js-motion .hamburger:hover  { transform: scale(1.08); }
.js-motion .hamburger:active { transform: scale(0.94); }
.js-motion .hamburger span { transition: transform 0.5s var(--e-inout), opacity 0.25s linear; }
.js-motion .hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.js-motion .hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.js-motion .hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.js-motion .sns-icons svg { transition: opacity 0.3s ease; }
.js-motion .sns-icons svg:hover { transform: none; }

.js-motion .drawer-menu {
  right: 80px; transform: translateX(calc(100% + 80px));
  transition: transform 0.75s var(--e-expo), box-shadow 0.75s ease; box-shadow: none; will-change: transform;
}
.js-motion .drawer-menu.is-open { right: 80px; transform: translateX(0); box-shadow: -2px 0 30px rgba(0, 0, 0, 0.12); }
.js-motion .drawer-menu > ul > li {
  opacity: 0; transform: translateX(26px);
  transition: opacity 0.55s var(--e-quint), transform 0.55s var(--e-quint);
}
.js-motion .drawer-menu.is-open > ul > li { opacity: 1; transform: none; transition-delay: calc(0.16s + var(--i, 0) * 0.055s); }
.js-motion .drawer-menu a { transition: opacity 0.3s ease, transform 0.45s var(--e-quint); }
.js-motion .drawer-menu a:hover { transform: translateX(5px); }
.js-motion .drawer-menu .drawer-sns-icons a { transition: opacity 0.3s ease; }
.js-motion .drawer-menu .drawer-sns-icons a:hover { transform: none; }
.js-motion .drawer-toggle-icon::before, .js-motion .drawer-toggle-icon::after { transition: transform 0.45s var(--e-inout), opacity 0.3s ease; }
.js-motion .drawer-accordion-title.is-open .drawer-toggle-icon::before { transform: rotate(180deg); }

.arrow-circle { overflow: hidden; position: relative; transition: transform 0.5s var(--e-quint); }
.js-motion .more-link:hover .arrow-circle { transform: scale(1.08); }
.js-motion .more-link:hover .arrow-icon { transform: none; animation: arrowSwipe 0.6s var(--e-inout); }
@keyframes arrowSwipe {
  0%   { transform: translateX(0);     opacity: 1; }
  45%  { transform: translateX(26px);  opacity: 0; }
  55%  { transform: translateX(-26px); opacity: 0; }
  100% { transform: translateX(0);     opacity: 1; }
}

.js-motion .footer-nav-col a, .js-motion .footer-nav-col h4 a { display: inline-block; transition: color 0.3s ease, opacity 0.3s ease, transform 0.4s var(--e-quint); }
.js-motion .footer-nav-col a:hover { transform: translateX(4px); }
.js-motion .toggle-icon::before, .js-motion .toggle-icon::after { transition: transform 0.45s var(--e-inout), opacity 0.3s ease; }
.js-motion .accordion-title.is-open .toggle-icon::before { transform: rotate(180deg); }

@media screen and (max-width: 768px) {
  .js-motion .drawer-menu { right: 0; transform: translateX(100%); }
  .js-motion .drawer-menu.is-open { right: 0; transform: translateX(0); }
  .js-motion .rv { transform: translateY(20px); }

  .js-motion .accordion-title.is-open .toggle-icon::before {
    transform: translateX(-1px);
  }
  .js-motion .accordion-title.is-open .toggle-icon::after {
    top: 2.5px;
    left: 6px;
    width: 7px;
    height: 7px;
    background-color: transparent;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js-motion .rv,
  .js-motion .rv-lines .ln-i,
  .js-motion .drawer-menu > ul > li {
    opacity: 1 !important;
    transform: none !important;
  }
  .js-motion .site-header,
  .js-motion .right-menu { opacity: 1 !important; }
}

.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.screen-reader-text:focus{position:fixed!important;top:12px;left:12px;z-index:100000;width:auto;height:auto;padding:12px 18px;clip:auto;background:#fff;color:#002842}
.hamburger{appearance:none;border:0;background:transparent;padding:0;color:inherit}
.arc-breadcrumb ol,.article-breadcrumb ol{display:flex;flex-wrap:wrap;align-items:center;gap:.55em;list-style:none}
.arc-pagination {
  margin-top: 56px;
  text-align: center;
}
.arc-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.arc-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #dfe5ea;
  border-radius: 6px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #002842;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.arc-pagination a.page-numbers:visited {
  color: #002842;
}
.arc-pagination a.page-numbers:hover {
  border-color: #002842;
  color: #002842;
}
.arc-pagination .page-numbers.current {
  background-color: #002842;
  border-color: #002842;
  color: #fff;
}
.arc-pagination .page-numbers.prev,
.arc-pagination .page-numbers.next {
  padding: 0 20px;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.arc-pagination .page-numbers.dots {
  min-width: 0;
  padding: 0 4px;
  border: none;
  background-color: transparent;
  color: #8fa0af;
}
@media screen and (max-width: 768px) {
  .arc-pagination {
    margin-top: 40px;
  }
  .arc-pagination .nav-links {
    gap: 6px;
  }
  .arc-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    font-size: 0.8rem;
  }
  .arc-pagination .page-numbers.prev,
  .arc-pagination .page-numbers.next {
    padding: 0 14px;
    font-size: 0.75rem;
  }
}
.article-pager>a:only-child{grid-column:1/-1}
.page-hero-title .h1{font-family:"Montserrat",sans-serif;font-size:clamp(2.4rem,6vw,5.2rem);font-weight:500;letter-spacing:.04em}
.rk-default-page{max-width:960px;margin:0 auto;padding:180px 5% 120px}.rk-default-page h1{margin-bottom:1.5em;color:#002842}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}