:root {
  --rd-navy: #0f2854;
  --rd-green: #88be43;
  --rd-ink: #221f20;
  --rd-pale: #f3f8f9;
  --rd-border: #e0e4e6;
  --rd-white: #fff;
  --rd-content: calc(1200 / 1440 * 100vw);
}

html {
  overflow: visible;
  scroll-behavior: smooth;
}

body.rdesign-leadgrid-page {
  overflow: visible;
  margin: 0;
  color: var(--rd-ink);
  background: var(--rd-white);
  font-family: "Shippori Mincho", "Yu Mincho", YuMincho, serif;
  font-size: 14px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.rdesign-leadgrid-page *,
.rdesign-leadgrid-page *::before,
.rdesign-leadgrid-page *::after { box-sizing: border-box; }
.rdesign-leadgrid-page a { color: inherit; text-decoration: none; }
.rdesign-leadgrid-page img { max-width: 100%; height: auto; }
.rdesign-leadgrid-page ul,
.rdesign-leadgrid-page ol { margin: 0; }

.rdesign-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10001;
  padding: 8px 14px;
  color: var(--rd-white) !important;
  background: var(--rd-navy);
  transform: translateY(-150%);
}
.rdesign-skip-link:focus { transform: none; }

.rdesign-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(15, 40, 84, .08);
  font-family: "Shippori Mincho", serif;
  transition: translate .3s ease;
}
.rdesign-header.is-hidden:not(.is-open) { translate: 0 -100%; }
.admin-bar .rdesign-header { top: 32px; }
.rdesign-header__inner {
  display: flex;
  min-height: calc(97 / 1440 * 100vw);
  align-items: center;
  justify-content: space-between;
  padding: calc(12 / 1440 * 100vw) calc(24 / 1440 * 100vw);
}
.rdesign-header__logo {
  display: flex;
  align-items: center;
  flex: none;
}
.rdesign-header__logo img {
  display: block;
  width: auto;
  max-width: calc(200 / 1440 * 100vw);
  height: calc(64 / 1440 * 100vw);
  object-fit: contain;
}
.rdesign-header__panel {
  display: flex;
  flex: none;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: calc(12 / 1440 * 100vw);
  min-width: 0;
}
.rdesign-header__nav { padding: 0; }
.rdesign-header__nav > ul {
  display: flex;
  justify-content: flex-end;
  gap: calc(24 / 1440 * 100vw);
  padding: 0;
  list-style: none;
}
.rdesign-header__nav > ul > li { position: static; }
.rdesign-header__nav > ul > li > a,
.rdesign-header__mega-trigger {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  color: var(--rd-navy);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: calc(14 / 1440 * 100vw);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
}
.rdesign-header__nav > ul > li > a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rd-green);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.rdesign-header__nav > ul > li > a:hover::after,
.rdesign-header__nav > ul > li > a:focus-visible::after { transform: scaleX(1); }
.rdesign-header__mega-trigger { display: flex; align-items: center; gap: calc(4 / 1440 * 100vw); }
.rdesign-header__mega-trigger > span {
  width: 0;
  height: 0;
  border-top: calc(5 / 1440 * 100vw) solid var(--rd-navy);
  border-right: calc(4 / 1440 * 100vw) solid transparent;
  border-left: calc(4 / 1440 * 100vw) solid transparent;
  transition: transform .3s ease;
}
.rdesign-header__nav-item--mega.is-open .rdesign-header__mega-trigger > span { transform: rotate(180deg); }
.rdesign-header__mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  color: var(--rd-ink);
  background: rgba(255, 255, 255, .99);
  border-top: 1px solid rgba(15, 40, 84, .06);
  box-shadow: 0 18px 30px rgba(15, 40, 84, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: max-height .42s ease, opacity .28s ease, transform .35s ease, visibility 0s linear .42s;
}
.rdesign-header__nav-item--mega.is-open .rdesign-header__mega {
  max-height: calc(280 / 1440 * 100vw);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.rdesign-header__mega-inner {
  display: grid;
  width: 100%;
  align-items: start;
  margin: 0;
  grid-template-columns: calc(400 / 1440 * 100vw) minmax(0, 1fr);
}
.rdesign-header__mega-title {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: calc(16 / 1440 * 100vw);
  padding: calc(48 / 1440 * 100vw) calc(48 / 1440 * 100vw) calc(48 / 1440 * 100vw) calc(96 / 1440 * 100vw);
  color: var(--rd-ink) !important;
  font-size: calc(20 / 1440 * 100vw) !important;
  font-weight: 700 !important;
  line-height: 1.2;
}
.rdesign-header__mega-title i {
  display: grid;
  width: calc(16 / 1440 * 100vw);
  height: calc(16 / 1440 * 100vw);
  place-items: center;
  color: var(--rd-white);
  background: var(--rd-navy);
  border-radius: calc(2 / 1440 * 100vw);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-style: normal;
}
.rdesign-header__mega-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-self: stretch;
  padding: calc(48 / 1440 * 100vw);
  gap: calc(20 / 1440 * 100vw) calc(24 / 1440 * 100vw);
  list-style: none;
}
.rdesign-header__mega-links li { border: 0; }
.rdesign-header__mega-parent-link { display: none; }
.rdesign-header__mega-links a {
  position: relative;
  display: block;
  padding-left: calc(16 / 1440 * 100vw);
  color: var(--rd-ink);
  font-size: calc(14 / 1440 * 100vw);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.rdesign-header__mega-links a::before { position: absolute; left: 0; content: "-"; text-decoration: none; }
.rdesign-header__mega-links a:hover,
.rdesign-header__mega-title:hover { color: var(--rd-green) !important; }
.rdesign-header__actions {
  display: flex;
  justify-content: flex-end;
  gap: calc(12 / 1440 * 100vw);
}
.rdesign-header__actions a {
  display: flex;
  min-width: calc(120 / 1440 * 100vw);
  height: calc(41 / 1440 * 100vw);
  align-items: center;
  justify-content: center;
  padding: calc(10 / 1440 * 100vw) calc(24 / 1440 * 100vw);
  color: var(--rd-white);
  background: var(--rd-navy);
  border: 1px solid var(--rd-navy);
  border-radius: calc(4 / 1440 * 100vw);
  font-size: calc(12 / 1440 * 100vw);
  font-weight: 700;
  line-height: 1.4;
}
.rdesign-header__actions a:first-child { background: var(--rd-green); border-color: var(--rd-green); }
.rdesign-header__actions a.is-white { color: var(--rd-navy); background: var(--rd-white); }
.rdesign-header__actions a:last-child { background: var(--rd-green); border-color: var(--rd-green); }
.rdesign-header__toggle { display: none; }

.rdesign-migration-main {
  display: block;
  width: 100%;
  padding-top: calc(97 / 1440 * 100vw);
}
.rdesign-breadcrumbs {
  width: 100%;
  margin: 0;
  padding: calc(16 / 1440 * 100vw) calc(120 / 1440 * 100vw);
}
.rdesign-breadcrumbs__list {
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 0;
  color: #6a7178;
  font-size: calc(12 / 1440 * 100vw);
  list-style: none;
  white-space: nowrap;
}
.rdesign-breadcrumbs__list li { display: flex; min-width: 0; align-items: center; }
.rdesign-breadcrumbs__list li:not(:last-child)::after {
  margin: 0 calc(19 / 1440 * 100vw);
  color: var(--rd-green);
  content: "/";
}
.rdesign-breadcrumbs__list li:last-child { overflow: hidden; text-overflow: ellipsis; }
.rdesign-breadcrumbs a:hover { color: var(--rd-green); }

.rdesign-post {
  position: relative;
  overflow: visible;
  padding: calc(72 / 1440 * 100vw) 0;
  background: var(--rd-white);
}
.rdesign-post__layout {
  position: relative;
  display: grid;
  overflow: visible;
  width: 100%;
  margin: 0;
  padding: 0 calc(120 / 1440 * 100vw);
  grid-template-columns: minmax(0, 1fr) calc(288 / 1440 * 100vw);
  gap: calc(96 / 1440 * 100vw);
}
.rdesign-post__main { min-width: 0; }
.rdesign-post__header {
  margin-bottom: calc(48 / 1440 * 100vw);
  padding-bottom: calc(48 / 1440 * 100vw);
  border-bottom: calc(1 / 1440 * 100vw) solid var(--rd-border);
}
.rdesign-post__category {
  display: inline-flex;
  min-width: 96px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 4px 16px;
  color: var(--rd-white) !important;
  background: var(--rd-green);
  font-size: 12px;
  font-weight: 600;
}
.rdesign-post__title {
  margin: 0;
  color: var(--rd-ink);
  font-family: inherit;
  font-size: calc(36 / 1440 * 100vw);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
}
.rdesign-post__date {
  display: block;
  margin-top: calc(24 / 1440 * 100vw);
  color: #68727b;
  font-size: calc(12 / 1440 * 100vw);
  text-align: right;
}
.rdesign-post__eyecatch { margin: 0 0 40px; }
.rdesign-post__eyecatch img { display: block; width: 100%; }

.rdesign-share {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: grid;
  gap: calc(24 / 1440 * 100vw);
  padding: calc(233 / 1440 * 100vw) 0 calc(120 / 1440 * 100vw);
  align-self: start;
  height: max-content;
  min-height: 0;
}
.rdesign-post__share--desktop {
  position: absolute;
  top: 0;
  left: calc(48 / 1440 * 100vw);
  width: calc(32 / 1440 * 100vw);
  height: 100%;
  overflow: visible;
}
.rdesign-share > a,
.rdesign-share > button {
  position: relative;
  display: grid;
  width: calc(32 / 1440 * 100vw);
  height: calc(32 / 1440 * 100vw);
  padding: 0;
  place-items: center;
  color: var(--rd-ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.rdesign-share > a:hover,
.rdesign-share > button:hover { color: var(--rd-green); background: transparent; }
.rdesign-share svg { display: block; width: 32px; height: 32px; fill: currentColor; }
.rdesign-share svg text { fill: var(--rd-white); font-family: Arial, sans-serif; font-size: 7px; font-weight: 700; }
.rdesign-share button span {
  position: absolute;
  top: 46px;
  left: 50%;
  display: none;
  width: 90px;
  padding: 6px;
  color: var(--rd-white);
  background: var(--rd-navy);
  font-size: 10px;
  transform: translateX(-50%);
}
.rdesign-share button.is-copied span { display: block; }
.rdesign-post__share--mobile { display: none; }

.rdesign-post__content {
  color: var(--rd-ink);
  font-size: calc(16 / 1440 * 100vw);
  line-height: 2;
}
.rdesign-post__content::after { display: table; clear: both; content: ""; }
.rdesign-post__content > *:first-child { margin-top: 0; }
.rdesign-post__content p { margin: 0 0 1.6em; }
.rdesign-post__content .head-note {
  margin: 0 0 32px;
  padding: 18px 22px;
  background: #fff8e7;
  border: 1px solid #ead49a;
  font-size: 13px;
  line-height: 1.8;
}
.rdesign-post__content h2 {
  margin: 2.7em 0 1.2em;
  padding: .72em .9em;
  color: var(--rd-navy);
  background: var(--rd-white);
  border-left: 4px solid var(--rd-green);
  font-family: inherit;
  font-size: 24px;
  line-height: 1.6;
}
.rdesign-post__content h3 {
  margin: 2.4em 0 1em;
  padding-bottom: .55em;
  color: var(--rd-navy);
  border-bottom: 1px solid var(--rd-green);
  font-family: inherit;
  font-size: 20px;
  line-height: 1.6;
}
.rdesign-post__content h4 { margin: 2em 0 .8em; color: var(--rd-navy); font-size: 17px; }
.rdesign-post__content a { color: var(--rd-navy); text-decoration: underline; text-underline-offset: 3px; }
.rdesign-post__content a:hover { color: var(--rd-green); }
.rdesign-post__content figure { max-width: 100%; margin: 1.8em 0; }
.rdesign-post__content img { display: block; max-width: 100%; margin: 1.8em auto; }
.rdesign-post__content figure img { margin: 0 auto; }
.rdesign-post__content figcaption { margin-top: .5em; color: #68727b; font-size: 12px; text-align: center; }
.rdesign-post__content ul,
.rdesign-post__content ol { margin: 1.5em 0; padding-left: 1.5em; }
.rdesign-post__content blockquote {
  margin: 2em 0;
  padding: 22px 26px;
  background: var(--rd-white);
  border-left: 3px solid var(--rd-green);
}
.rdesign-post__content table { width: 100%; margin: 2em 0; border-collapse: collapse; }
.rdesign-post__content th,
.rdesign-post__content td { padding: 12px; border: 1px solid var(--rd-border); }
.rdesign-post__content th { color: var(--rd-navy); background: var(--rd-white); }
.rdesign-post__content iframe { max-width: 100%; }
.rdesign-post__content .alignleft { float: left; margin: 0 24px 20px 0; }
.rdesign-post__content .alignright { float: right; margin: 0 0 20px 24px; }
.rdesign-post__content .aligncenter { margin-right: auto; margin-left: auto; }
.rdesign-post__back {
  display: flex;
  width: min(100%, 320px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin: 72px auto 0;
  color: var(--rd-white) !important;
  background: var(--rd-navy);
  border: 1px solid var(--rd-navy);
  font-weight: 600;
  transition: color .2s, background .2s;
}
.rdesign-post__back:hover { color: var(--rd-navy) !important; background: transparent; }

.rdesign-post__side { position: relative; overflow: visible; align-self: stretch; padding: 0; }
.rdesign-post__side,
.rdesign-post__side button,
.rdesign-post__side input { font-family: "Shippori Mincho", serif; }
.rdesign-post__side-box {
  position: -webkit-sticky;
  position: sticky;
  top: calc(117 / 1440 * 100vw);
  padding: 0;
  background: var(--rd-white);
}
.rdesign-post__side-section + .rdesign-post__side-section {
  margin-top: calc(48 / 1440 * 100vw);
}
.rdesign-post__side-title {
  margin: 0 0 calc(24 / 1440 * 100vw);
  padding: 0;
  color: var(--rd-navy);
  border-bottom: 0;
  font-size: calc(20 / 1440 * 100vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
}
.rdesign-post__side ul { padding: 0; list-style: none; }
.rdesign-post__side li { border-bottom: calc(1 / 1440 * 100vw) solid var(--rd-border); }
.rdesign-post__side a {
  position: relative;
  display: block;
  padding: calc(16 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(28 / 1440 * 100vw);
  font-size: calc(16 / 1440 * 100vw);
  font-weight: 400;
  line-height: 1.6;
}
.rdesign-post__side a::before {
  position: absolute;
  top: calc(24 / 1440 * 100vw);
  left: calc(8 / 1440 * 100vw);
  width: calc(8 / 1440 * 100vw);
  height: calc(8 / 1440 * 100vw);
  background: var(--rd-green);
  border-radius: 50%;
  content: "";
}
.rdesign-post__side a::after { display: none; }
.rdesign-post__side .is-current a { color: inherit; font-weight: 400; }
.rdesign-post__side-keywords li { border-bottom: 0; }
.rdesign-post__side-keywords a {
  padding: calc(4 / 1440 * 100vw) 0;
  color: #697774;
  font-size: calc(15 / 1440 * 100vw);
}
.rdesign-post__side-keywords a::before { display: none; }
.rdesign-post__side-keywords a:hover,
.rdesign-post__side-keywords .is-current a { color: var(--rd-green); }
.rdesign-post--empty { text-align: center; }

.rdesign-footer {
  overflow: hidden;
  padding: calc(72 / 1440 * 100vw) 0 0;
  color: var(--rd-white);
  background: var(--rd-ink);
  font-family: "Shippori Mincho", serif;
}
.rdesign-footer__inner {
  position: relative;
  padding: 0 calc(120 / 1440 * 100vw);
}
.rdesign-footer__entry {
  display: flex;
  align-items: center;
  gap: calc(40 / 1440 * 100vw);
  margin-bottom: calc(72 / 1440 * 100vw);
}
.rdesign-footer__logo {
  display: block;
  flex: 0 0 calc(256 / 1440 * 100vw);
  width: calc(256 / 1440 * 100vw);
}
.rdesign-footer__logo img { display: block; width: 100%; height: auto; object-fit: contain; }
.rdesign-footer__description {
  flex: 1;
  min-width: 0;
  font-size: calc(12 / 1440 * 100vw);
  font-weight: 400;
  line-height: 2;
}
.rdesign-footer__description p { margin: 0; }
.rdesign-footer__main {
  display: flex;
  justify-content: space-between;
  gap: calc(48 / 1440 * 100vw);
  margin-bottom: calc(72 / 1440 * 100vw);
}
.rdesign-footer__nav {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: calc(48 / 1440 * 100vw);
  min-width: 0;
  max-width: calc(950 / 1440 * 100vw);
}
.rdesign-footer__nav ul {
  padding: 0;
  list-style: none;
}
.rdesign-footer__nav-group {
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: calc(60 / 1440 * 100vw);
}
.rdesign-footer__nav-group > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(12 / 1440 * 100vw);
}
.rdesign-footer__nav-main {
  position: relative;
  display: block;
  padding-right: calc(28 / 1440 * 100vw);
  font-size: calc(14 / 1440 * 100vw);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.rdesign-footer__nav-main i {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(16 / 1440 * 100vw);
  height: calc(16 / 1440 * 100vw);
  overflow: hidden;
  background: var(--rd-white);
  border-radius: calc(3 / 1440 * 100vw);
  transform: translateY(-50%);
}
.rdesign-footer__nav-main i::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: calc(3 / 1440 * 100vw) solid transparent;
  border-bottom: calc(3 / 1440 * 100vw) solid transparent;
  border-left: calc(4 / 1440 * 100vw) solid var(--rd-ink);
  content: "";
  transform: translate(-50%, -50%);
}
.rdesign-footer__nav-children {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(12 / 1440 * 100vw);
}
.rdesign-footer__nav-children a {
  position: relative;
  display: block;
  padding-left: calc(16 / 1440 * 100vw);
  font-size: calc(14 / 1440 * 100vw);
  font-weight: 400;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-position: under;
  white-space: nowrap;
}
.rdesign-footer__nav-children a::before {
  position: absolute;
  left: calc(4 / 1440 * 100vw);
  content: "-";
  text-decoration: none;
}
.rdesign-footer__nav a:hover { color: var(--rd-green); }
.rdesign-footer__right {
  display: flex;
  width: calc(204 / 1440 * 100vw);
  flex: 0 0 calc(204 / 1440 * 100vw);
  flex-direction: column;
  justify-content: space-between;
  gap: calc(60 / 1440 * 100vw);
}
.rdesign-footer__actions { display: grid; gap: calc(12 / 1440 * 100vw); }
.rdesign-footer__actions a {
  display: flex;
  width: 100%;
  min-height: calc(60 / 1440 * 100vw);
  align-items: center;
  justify-content: center;
  padding: calc(10 / 1440 * 100vw) calc(24 / 1440 * 100vw);
  background: var(--rd-green);
  border: 1px solid var(--rd-green);
  border-radius: calc(4 / 1440 * 100vw);
  font-size: calc(12 / 1440 * 100vw);
  font-weight: 700;
  line-height: 1.4;
}
.rdesign-footer__actions a.is-white { color: var(--rd-navy); background: var(--rd-white); border-color: var(--rd-white); }
.rdesign-footer__right-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(48 / 1440 * 100vw);
}
.rdesign-footer__social { display: flex; align-items: center; justify-content: flex-end; gap: calc(18 / 1440 * 100vw); }
.rdesign-footer__social a { display: block; width: calc(24 / 1440 * 100vw); height: calc(24 / 1440 * 100vw); }
.rdesign-footer__social svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.rdesign-footer__social path { fill: currentColor; stroke: none; }
.rdesign-footer__privacy { font-size: calc(14 / 1440 * 100vw); line-height: 1.4; text-decoration: underline !important; text-underline-position: under; }
.rdesign-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: calc(12 / 1440 * 100vw);
  padding: calc(24 / 1440 * 100vw) 0;
}
.rdesign-footer__bottom small { font-size: calc(12 / 1440 * 100vw); font-weight: 700; line-height: 1; }
.rdesign-footer__pagetop { font-size: calc(14 / 1440 * 100vw); font-weight: 700; line-height: 1; text-transform: capitalize; }
.rdesign-footer__pagetop i { margin-left: calc(8 / 1440 * 100vw); font-size: calc(9 / 1440 * 100vw); font-style: normal; }

@media (max-width: 768px) {
  :root {
    --rd-content: calc(327 / 375 * 100vw);
  }

  body.rdesign-leadgrid-page {
    font-size: calc(16 / 375 * 100vw);
  }

  .rdesign-header {
    height: calc(60 / 375 * 100vw);
  }
  .admin-bar .rdesign-header { top: 46px; }
  .rdesign-header__inner {
    height: calc(60 / 375 * 100vw);
    min-height: calc(60 / 375 * 100vw);
    padding: 0 0 0 calc(12 / 375 * 100vw);
  }
  .rdesign-header__logo {
    position: relative;
    z-index: 3;
    flex-basis: auto;
    margin-right: auto;
    padding: 0;
  }
  .rdesign-header__logo img {
    width: calc(200 / 375 * 100vw);
    max-width: none;
    height: calc(40 / 375 * 100vw);
    max-height: none;
  }
  .rdesign-header__toggle {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(60 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    flex: 0 0 calc(60 / 375 * 100vw);
    padding: 0;
    color: var(--rd-ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .rdesign-header__toggle span {
    position: absolute;
    top: calc(19 / 375 * 100vw);
    left: 50%;
    display: block;
    width: calc(24 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background: currentColor;
    transform: translateX(-50%);
    transition: top .25s ease, transform .25s ease, opacity .2s ease;
  }
  .rdesign-header__toggle span:nth-child(2) { top: calc(26 / 375 * 100vw); }
  .rdesign-header__toggle span:nth-child(3) { top: calc(33 / 375 * 100vw); }
  .rdesign-header__toggle b {
    position: absolute;
    right: 0;
    bottom: calc(5 / 375 * 100vw);
    left: 0;
    font-size: calc(10 / 375 * 100vw);
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
  }
  .rdesign-header__toggle[aria-expanded="true"] span:nth-child(1),
  .rdesign-header__toggle[aria-expanded="true"] span:nth-child(3) { top: calc(24 / 375 * 100vw); }
  .rdesign-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) rotate(32deg); }
  .rdesign-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .rdesign-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateX(-50%) rotate(-32deg); }
  .rdesign-header__panel {
    position: fixed;
    top: calc(60 / 375 * 100vw);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: calc(24 / 375 * 100vw);
    padding: calc(48 / 375 * 100vw) calc(24 / 375 * 100vw);
    background: var(--rd-white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-12 / 375 * 100vw));
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
  }
  .admin-bar .rdesign-header__panel { top: calc(46px + 60 / 375 * 100vw); }
  .rdesign-header__panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }
  .rdesign-header__nav { width: 100%; padding: 0; }
  .rdesign-header__nav > ul {
    display: grid;
    width: 100%;
    justify-content: stretch;
    gap: 0;
    padding: 0 0 calc(24 / 375 * 100vw);
  }
  .rdesign-header__nav > ul > li {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(16 / 375 * 100vw);
    padding: 0 0 calc(24 / 375 * 100vw);
    border-bottom: calc(1 / 375 * 100vw) solid var(--rd-border);
  }
  .rdesign-header__nav > ul > li + li { padding-top: calc(24 / 375 * 100vw); }
  .rdesign-header__nav > ul > li > a,
  .rdesign-header__mega-trigger {
    width: 100%;
    padding: 0;
    color: var(--rd-ink);
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.4;
    text-align: left;
  }
  .rdesign-header__nav > ul > li > a::after { display: none; }
  .rdesign-header__mega-trigger { justify-content: space-between; }
  .rdesign-header__mega-trigger > span {
    display: none;
  }
  .rdesign-header__mega {
    position: static;
    width: 100%;
    overflow: visible;
    max-height: none;
    visibility: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .rdesign-header__nav-item--mega.is-open .rdesign-header__mega { max-height: none; }
  .rdesign-header__mega-inner {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
  }
  .rdesign-header__mega-title { display: none; }
  .rdesign-header__mega-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: calc(12 / 375 * 100vw);
    padding: 0;
  }
  .rdesign-header__mega-links li { padding: 0; border: 0; }
  .rdesign-header__mega-parent-link { display: block; }
  .rdesign-header__mega-links a {
    padding: 0 0 0 calc(14 / 375 * 100vw);
    color: var(--rd-ink);
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.4;
    white-space: normal;
  }
  .rdesign-header__mega-links a::before { top: 0; left: calc(2 / 375 * 100vw); }
  .rdesign-header__actions {
    display: grid;
    justify-items: end;
    gap: calc(12 / 375 * 100vw);
    margin: 0;
    grid-template-columns: 1fr;
  }
  .rdesign-header__actions a {
    width: calc(240 / 375 * 100vw);
    min-width: 0;
    height: calc(41 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(24 / 375 * 100vw);
    border-radius: calc(2 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
  body.rdesign-menu-open { overflow: hidden; }

  .rdesign-migration-main { padding-top: calc(60 / 375 * 100vw); }
  .rdesign-breadcrumbs {
    width: 100%;
    overflow-x: auto;
    padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
    scrollbar-width: none;
  }
  .rdesign-breadcrumbs::-webkit-scrollbar { display: none; }
  .rdesign-breadcrumbs__list {
    width: max-content;
    overflow: visible;
    font-size: calc(11 / 375 * 100vw);
    line-height: 1.4;
  }
  .rdesign-breadcrumbs__list li:not(:last-child)::after {
    margin: 0 calc(14 / 375 * 100vw);
  }
  .rdesign-breadcrumbs__list li:last-child { max-width: calc(260 / 375 * 100vw); }

  .rdesign-post { padding: calc(48 / 375 * 100vw) 0 calc(82 / 375 * 100vw); }
  .rdesign-post__layout {
    display: block;
    width: 100%;
    padding: 0 calc(24 / 375 * 100vw);
  }
  .rdesign-post__share--desktop,
  .rdesign-post__side { display: none; }
  .rdesign-post__header {
    margin-bottom: calc(26 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
    border-bottom-width: calc(1 / 375 * 100vw);
  }
  .rdesign-post__title {
    margin-top: calc(20 / 375 * 100vw);
    font-size: calc(28 / 375 * 100vw);
    line-height: 1.4;
  }
  .rdesign-post__date {
    margin-top: calc(24 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.4;
  }
  .rdesign-post__share--mobile {
    display: block;
    margin: 0 0 calc(24 / 375 * 100vw);
  }
  .rdesign-share {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: calc(12 / 375 * 100vw);
    padding: 0;
  }
  .rdesign-share > a,
  .rdesign-share > button {
    width: calc(32 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
  .rdesign-share svg {
    width: calc(32 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
  }
  .rdesign-share button span {
    top: calc(42 / 375 * 100vw);
    width: calc(90 / 375 * 100vw);
    font-size: calc(10 / 375 * 100vw);
  }
  .rdesign-post__content { font-size: calc(16 / 375 * 100vw); }
  .rdesign-post__content h2 { font-size: calc(20 / 375 * 100vw); }
  .rdesign-post__content h3 { font-size: calc(18 / 375 * 100vw); }
  .rdesign-post__content .alignleft,
  .rdesign-post__content .alignright { float: none; margin: 1.8em auto; }
  .rdesign-post__back {
    width: calc(320 / 375 * 100vw);
    min-height: calc(58 / 375 * 100vw);
    margin-top: calc(72 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }

  .rdesign-footer {
    padding: calc(48 / 375 * 100vw) 0 0;
  }
  .rdesign-footer__inner { padding: 0 calc(24 / 375 * 100vw); }
  .rdesign-footer__entry {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(20 / 375 * 100vw);
    margin-bottom: calc(48 / 375 * 100vw);
  }
  .rdesign-footer__logo {
    width: auto;
    flex: none;
  }
  .rdesign-footer__logo img {
    width: auto;
    height: calc(40 / 375 * 100vw);
  }
  .rdesign-footer__description {
    font-size: calc(11 / 375 * 100vw);
    line-height: 2;
  }
  .rdesign-footer__main {
    flex-direction: column;
    gap: calc(48 / 375 * 100vw);
    margin-bottom: calc(48 / 375 * 100vw);
  }
  .rdesign-footer__nav {
    width: 100%;
    max-width: none;
    flex-direction: column;
    gap: calc(32 / 375 * 100vw);
    margin-top: 0;
  }
  .rdesign-footer__nav ul.rdesign-footer__nav-group {
    display: flex;
    width: 100%;
    gap: calc(32 / 375 * 100vw);
  }
  .rdesign-footer__nav-group > li { gap: calc(12 / 375 * 100vw); }
  .rdesign-footer__nav-main {
    padding-right: calc(28 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  .rdesign-footer__nav-main i {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    border-radius: calc(3 / 375 * 100vw);
  }
  .rdesign-footer__nav-main i::after {
    border-top-width: calc(3 / 375 * 100vw);
    border-bottom-width: calc(3 / 375 * 100vw);
    border-left-width: calc(4 / 375 * 100vw);
  }
  .rdesign-footer__nav ul.rdesign-footer__nav-children {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: calc(12 / 375 * 100vw) calc(11 / 375 * 100vw);
  }
  .rdesign-footer__nav-children a {
    padding-left: calc(16 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    white-space: normal;
  }
  .rdesign-footer__nav-children a::before { left: calc(4 / 375 * 100vw); }
  .rdesign-footer__right {
    display: contents;
  }
  .rdesign-footer__actions {
    justify-items: start;
    gap: calc(16 / 375 * 100vw);
    margin-top: 0;
  }
  .rdesign-footer__actions a {
    width: calc(240 / 375 * 100vw);
    min-height: calc(60 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(24 / 375 * 100vw);
    border-radius: calc(2 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  .rdesign-footer__right-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: calc(48 / 375 * 100vw);
  }
  .rdesign-footer__social { gap: calc(24 / 375 * 100vw); }
  .rdesign-footer__social a {
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
  }
  .rdesign-footer__privacy { font-size: calc(12 / 375 * 100vw); }
  .rdesign-footer__bottom {
    position: relative;
    align-items: center;
    padding: 0 0 calc(48 / 375 * 100vw);
  }
  .rdesign-footer__bottom small { font-size: calc(12 / 375 * 100vw); font-weight: 400; }
  .rdesign-footer__pagetop {
    position: absolute;
    right: 0;
    bottom: calc(20 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
  .rdesign-footer__pagetop i {
    margin-left: calc(8 / 375 * 100vw);
    font-size: calc(9 / 375 * 100vw);
  }
}

@media (max-width: 782px) {
  .admin-bar .rdesign-header { top: 46px; }
}
