:root {
  --pink: #ff0059;
  --ink: #404040;
  --text: #333;
  --muted: #777;
  --line: #e6e6e6;
  --paper: #f6f6f6;
  --yellow: #ffcb00;
  --green: #00cf68;
  --max: 1160px;
  --header: 84px;
  --service-side: max(54px, calc((100vw - 1280px) / 2 + 70px));
  --service-gap: clamp(70px, 7vw, 130px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  background: #fff;
  overflow-x: clip;
}
main {
  background: #fff;
}
body.rx-opening-active {
  overflow: hidden;
  height: 100svh;
  overscroll-behavior: none;
  touch-action: none;
}
html:has(body.rx-opening-active) {
  overflow: hidden;
  height: 100svh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.hidden { display: none !important; }

.rx-opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #2f2f2f;
  color: #fff;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.rx-opening.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.rx-opening__inner {
  display: grid;
  justify-items: center;
  gap: 42px;
}
.rx-opening__brand {
  width: min(84vw, 300px);
  opacity: 0;
  animation: openingBrand 1.5s .35s cubic-bezier(.19, 1, .22, 1) both;
}
.rx-opening__brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.rx-opening__spinner {
  position: relative;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  opacity: 1;
  transform-origin: center;
}
.rx-opening__spinner span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,.52);
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .125em;
  white-space: nowrap;
  animation: openingLoadingText 1.5s infinite ease-in-out;
}
.spinner.type1 {
  border-radius: 50%;
}
.spinner.type1::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-width: 8px;
  border-style: solid;
  border-color: #fff rgba(255,255,255,.12) rgba(255,255,255,.12);
  animation: openingSpinner 1.5s infinite linear;
}
@keyframes openingBrand {
  from { opacity: 0; transform: translateY(28px) scale(.86); filter: blur(16px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes openingSpinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes openingLoadingText {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .rx-opening,
  .rx-opening *,
  .spinner.type1,
  .spinner.type1::before,
  .rx-opening__spinner span {
    animation: none !important;
    transition: none !important;
  }
}

.rx-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  transition: background .2s ease, box-shadow .2s ease;
}
.rx-header.scrolled, .rx-header.open {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}
.rx-header__brand {
  position: relative;
  width: 220px;
  display: block;
}
.rx-header__brand img {
  transition: filter .25s ease;
}
.rx-header:not(.scrolled):not(.open) .rx-header__brand img {
  filter: brightness(0) invert(1);
}
.rx-header.scrolled .rx-header__brand img,
.rx-header.open .rx-header__brand img {
  filter: none;
}
.rx-header:not(.scrolled):not(.open) .rx-header__brand:hover img,
.rx-header:not(.scrolled):not(.open) .rx-header__brand:focus-visible img {
  filter: none;
}
.rx-header.scrolled .rx-header__brand:hover img,
.rx-header.scrolled .rx-header__brand:focus-visible img,
.rx-header.open .rx-header__brand:hover img,
.rx-header.open .rx-header__brand:focus-visible img {
  filter: brightness(0) saturate(0) invert(22%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(92%) contrast(88%);
}
.rx-header__nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
}
.rx-header__nav a {
  position: relative;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .1em;
  transition: color .3s ease;
}
.rx-header.scrolled .rx-header__nav a, .rx-header.open .rx-header__nav a { color: var(--ink); }
.rx-header__nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: rgba(255, 0, 89, .55);
  transition: width .3s ease, left .3s ease;
}
.rx-header__nav a:hover {
  color: rgba(255, 255, 255, .72);
}
.rx-header.scrolled .rx-header__nav a:hover,
.rx-header.open .rx-header__nav a:hover {
  color: var(--pink);
}
.rx-header__nav a:hover::before {
  width: 100%;
  left: 0;
}
.rx-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.rx-header__cta {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  background: var(--yellow);
  white-space: nowrap;
  overflow: hidden;
  transition:
    color .28s ease,
    background-color .28s ease;
}
.rx-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.38) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.rx-header__cta:hover,
.rx-header__cta:focus-visible {
  color: var(--ink);
  background: #ffd936;
}
.rx-header__cta:hover::before,
.rx-header__cta:focus-visible::before {
  transform: translateX(120%);
}
.rx-header__cta--contract {
  min-width: 142px;
  justify-content: center;
  color: var(--pink);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--pink);
}
.rx-header:not(.scrolled):not(.open) .rx-header__cta--contract {
  color: #fff;
  background: var(--pink);
}
.rx-header__cta--contract:hover,
.rx-header__cta--contract:focus-visible {
  color: #fff;
  background: #ff337a;
}
.rx-header:not(.scrolled):not(.open) .rx-header__cta--contract:hover,
.rx-header:not(.scrolled):not(.open) .rx-header__cta--contract:focus-visible {
  color: var(--pink);
  background: rgba(255,255,255,.94);
}
.rx-header.scrolled .rx-header__cta--contract:hover,
.rx-header.scrolled .rx-header__cta--contract:focus-visible,
.rx-header.open .rx-header__cta--contract:hover,
.rx-header.open .rx-header__cta--contract:focus-visible {
  color: #fff;
  background: var(--pink);
}
.rx-header__contract-icon,
.rx-header__cta--contract i {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}
.rx-header__contract-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rx-header__cta span {
  position: relative;
  z-index: 1;
}
.rx-header__cta-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  padding: 0;
  line-height: 1;
  text-align: right;
}
.rx-header__cta-icon::before,
.rx-header__cta-icon::after {
  content: "";
  position: absolute;
  left: -.7px;
  bottom: -.7px;
  background: currentColor;
}
.rx-header__cta-icon::before {
  width: 1px;
  height: 13px;
}
.rx-header__cta-icon::after {
  width: 13px;
  height: 1px;
}
.rx-header__menu {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255,255,255,.18);
}
.rx-header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
}
.rx-header.scrolled .rx-header__menu span, .rx-header.open .rx-header__menu span { background: var(--ink); }

.rx-hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.rx-hero picture, .rx-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.rx-hero img {
  object-fit: cover;
  transform: scale(1);
  animation: heroImageZoom 18s ease-out forwards;
}
.rx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.28));
}
.rx-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-top: var(--header);
}
.rx-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6.4vw, 72px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: .08em;
}
.rx-hero h1 span {
  display: block;
  opacity: 0;
  transform: scale(.58);
  filter: blur(16px);
}
.rx-opening-complete .rx-hero h1 span,
body:not(.rx-opening-active) .rx-hero h1 span {
  animation: heroFadeIn 1.25s cubic-bezier(.16, 1, .3, 1) both;
}
.rx-opening-complete .rx-hero h1 span:nth-child(2),
body:not(.rx-opening-active) .rx-hero h1 span:nth-child(2) {
  animation-delay: .18s;
}
.rx-opening-complete .rx-hero h1 span:nth-child(3),
body:not(.rx-opening-active) .rx-hero h1 span:nth-child(3) {
  animation-delay: .36s;
}
.rx-hero strong {
  display: block;
  max-width: 740px;
  margin-top: 46px;
  margin-left: 0;
  font-size: clamp(16px, 2.6vw, 24px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .06em;
}
.rx-hero strong span {
  display: block;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
  opacity: 1;
}
.rx-opening-complete .rx-hero strong span:nth-child(1),
body:not(.rx-opening-active) .rx-hero strong span:nth-child(1) {
  width: 100%;
}
.rx-hero strong span:nth-child(2) { width: 0; }
.rx-opening-complete .rx-hero strong span:nth-child(2),
body:not(.rx-opening-active) .rx-hero strong span:nth-child(2) {
  animation:
    heroTypewriter 3.6s steps(33, start) forwards,
    heroCaret .75s step-end infinite;
}
.rx-accent {
  font-style: normal;
}
.rx-accent--yellow {
  color: var(--yellow);
}
.rx-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
}
.rx-scroll i {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: arrowDown 1.35s ease-in-out infinite;
}
.rx-scroll span {
  margin-bottom: 6px;
}
.rx-scroll i + i {
  margin-top: -8px;
  animation-delay: .14s;
}
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(.58);
    filter: blur(16px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes heroTypewriter {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@keyframes heroCaret {
  0%, 100% { border-color: transparent; }
  50% { border-color: rgba(255,255,255,.86); }
}
@keyframes heroImageZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes messagePhotoZoom {
  from {
    transform: scale(1);
    filter: brightness(.92);
  }
  to {
    transform: scale(1.14);
    filter: brightness(1);
  }
}
@keyframes arrowDown {
  0% { opacity: 0; transform: translateY(-4px) rotate(45deg); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px) rotate(45deg); }
}

.rx-section { padding: 112px 24px; }
.rx-service { padding-bottom: 0; }
.rx-company { padding-bottom: 74px; }
.rx-contact { padding-bottom: 74px; }
.rx-section:nth-of-type(even) { background: var(--paper); }
.rx-section__title, .rx-news__slider, .rx-mission__cards, .rx-mission__lead, .rx-why, .rx-solutions, .rx-column__list, .rx-message, .rx-access-list, .rx-form {
  width: min(100%, var(--max));
  margin-inline: auto;
}
.rx-section__title {
  position: relative;
  margin-bottom: 52px;
  padding-top: 34px;
  padding-left: clamp(24px, 4vw, 58px);
  isolation: isolate;
  text-align: left;
}
.rx-service > .rx-section__title {
  margin-bottom: 0;
}
.rx-section__title span {
  position: absolute;
  left: -6px;
  top: -24px;
  z-index: -1;
  color: rgba(64, 64, 64, .045);
  font-size: clamp(76px, 14vw, 156px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: .02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(150px);
  filter: blur(16px);
  transition:
    opacity 1.35s .08s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s .08s cubic-bezier(.16, 1, .3, 1),
    filter 1.35s .08s cubic-bezier(.16, 1, .3, 1);
}
.rx-section__title span.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-section__title p,
.rx-subtitle p {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.rx-section__title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .01em;
}
.rx-section__title h2,
.rx-policy h2,
.rx-detail h2,
.rx-recruit h2 {
  opacity: 0;
  transform: translateY(120px);
  filter: blur(14px);
  transition:
    opacity 1.25s cubic-bezier(.16, 1, .3, 1),
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.25s cubic-bezier(.16, 1, .3, 1);
}
.rx-section__title h2.is-visible,
.rx-policy h2.is-visible,
.rx-detail h2.is-visible,
.rx-recruit h2.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-section__title h2 em {
  color: var(--pink);
  font-style: normal;
}
.rx-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
}
.rx-button-row {
  width: min(100%, var(--max));
  margin: 42px auto 0;
  display: flex;
  justify-content: center;
}
.rx-news .rx-button--light,
.rx-column .rx-button--light {
  width: 200px;
  min-height: 60px;
  padding: 0 24px;
  color: var(--pink);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border-color: rgba(255, 0, 89, .72);
  box-shadow: 5px 6px 0 rgba(255, 0, 89, .08);
  transition:
    color .3s ease,
    background-color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}
.rx-news .rx-button--light:hover,
.rx-news .rx-button--light:focus-visible,
.rx-column .rx-button--light:hover,
.rx-column .rx-button--light:focus-visible {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 7px 8px 0 rgba(255, 0, 89, .16);
  transform: translate(-1px, -1px);
}
.rx-button--primary { width: 100%; border-color: var(--pink); color: #fff; background: var(--pink); }
.rx-button--gray { border-color: #888; color: #fff; background: #888; }
.rx-form .rx-button--primary,
.rx-form .rx-button--gray {
  min-height: 60px;
  padding: 0 24px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 60px;
  text-align: center;
  background: #fff;
  transition:
    color .3s ease,
    background-color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}
.rx-form .rx-button--primary {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 5px 6px 0 rgba(255, 0, 89, .16);
}
.rx-form .rx-button--primary:hover,
.rx-form .rx-button--primary:focus-visible {
  color: var(--pink);
  background: #fff;
  border-color: rgba(255, 0, 89, .72);
  box-shadow: 7px 8px 0 rgba(255, 0, 89, .08);
  transform: translate(-1px, -1px);
}
.rx-form [data-next].rx-button--primary {
  color: var(--pink);
  background: #fff;
  border-color: rgba(255, 0, 89, .72);
  box-shadow: 5px 6px 0 rgba(255, 0, 89, .08);
}
.rx-form [data-next].rx-button--primary:hover,
.rx-form [data-next].rx-button--primary:focus-visible {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 7px 8px 0 rgba(255, 0, 89, .16);
  transform: translate(-1px, -1px);
}
.rx-form .rx-button--gray {
  color: #404040;
  border-color: rgba(64, 64, 64, .52);
  box-shadow: 5px 6px 0 rgba(64, 64, 64, .08);
}
.rx-form .rx-button--gray:hover,
.rx-form .rx-button--gray:focus-visible {
  color: #fff;
  background: #404040;
  border-color: #404040;
  box-shadow: 7px 8px 0 rgba(64, 64, 64, .16);
  transform: translate(-1px, -1px);
}

.rx-news {
  text-align: left;
  background: #eef2f7;
  padding-bottom: 74px;
}
.rx-news > .rx-section__title {
  margin-bottom: 66px;
}
.rx-news__wrap {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
}
.rx-news__slider,
.rx-column__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  text-align: left;
  scrollbar-width: none;
  scroll-padding-inline: 0;
  opacity: 0;
  transform: scale(.94);
  transform-origin: center;
  filter: blur(10px);
  transition:
    opacity 1.2s .12s cubic-bezier(.16, 1, .3, 1),
    transform 1.2s .12s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s .12s cubic-bezier(.16, 1, .3, 1);
}
.rx-news__slider.is-visible,
.rx-column__list.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.rx-news__slider::-webkit-scrollbar,
.rx-column__list::-webkit-scrollbar { display: none; }
.rx-news article {
  min-height: auto;
  position: static;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  scroll-snap-align: start;
}
.rx-news article a {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
}
.rx-news article img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 1;
  transition: transform .6s ease, filter .6s ease;
}
.rx-news article div {
  padding-top: 18px;
}
.rx-news article div > p:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.rx-news article span, .rx-column article span {
  display: inline-block;
  padding: 4px 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 0, 89, .62);
  border-radius: 999px;
  transition: color .32s ease, background-color .32s ease, border-color .32s ease;
}
.rx-news time {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.rx-news h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  transition: color .32s ease;
}
.rx-news article div > p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
  transition: color .32s ease;
}
.rx-news article a:hover img,
.rx-news article a:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: translateY(-4px) scale(1.045);
}
.rx-news article a:hover h3,
.rx-news article a:focus-visible h3,
.rx-news article a:hover div > p:last-child,
.rx-news article a:focus-visible div > p:last-child {
  color: var(--pink);
}
.rx-news article a:hover span,
.rx-news article a:focus-visible span,
.rx-column article a:hover span,
.rx-column article a:focus-visible span {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
}
.rx-news__arrow {
  position: absolute;
  top: 78px;
  z-index: 3;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--ink);
  font-size: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(30, 42, 60, .08);
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.rx-news__arrow:hover,
.rx-news__arrow:focus-visible {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 18px 36px rgba(255, 0, 89, .16);
}
.rx-news__arrow--prev {
  left: -86px;
}
.rx-news__arrow--next {
  right: -86px;
}

.rx-mission__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.rx-mission article {
  padding: 44px;
  background: #fff;
  border-top: 5px solid var(--pink);
}
.rx-mission small { color: var(--pink); font-weight: 700; text-transform: uppercase; }
.rx-mission h3 { margin: 12px 0 18px; font-size: 28px; font-weight: 500; }
.rx-mission p { margin: 0; }
.rx-mission__lead {
  margin-top: 30px;
  padding: 36px 44px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  background: var(--ink);
}

.rx-why {
  position: relative;
  padding: 56px 48px;
  background: #fff;
  overflow: visible;
}
.rx-why__title, .rx-subtitle { text-align: center; }
.rx-why__title {
  text-align: center;
}
.rx-why__text .rx-why__title {
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(46px);
  filter: blur(10px);
  transition:
    opacity 1.15s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s cubic-bezier(.16, 1, .3, 1);
}
.rx-why__text .rx-why__title.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-why__title p {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--pink);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .075em;
}
.rx-why__title p::after {
  content: "";
  width: 64px;
  height: 1px;
  background: rgba(64,64,64,.28);
}
.rx-why__title h3, .rx-subtitle h3 { margin: 0; font-size: clamp(24px, 3.4vw, 36px); font-weight: 500; line-height: 1.35; letter-spacing: .06em; }
.rx-why__title h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .16em;
}
.rx-why__title h3 span {
  color: var(--pink);
  font-size: 1.55em;
  font-weight: 700;
  line-height: .9;
}
.rx-why__deco-text {
  position: absolute;
  top: 32%;
  left: auto;
  right: calc((100% - 100vw) / 2);
  z-index: 1;
  width: min(72vw, 820px);
  height: min(72vw, 820px);
  color: rgba(64,64,64,.075);
  transform: translateY(-50%);
  animation: whyDecoRotate 42s linear infinite;
  pointer-events: none;
}
.rx-why__deco-text text {
  fill: currentColor;
  font-size: clamp(30px, 5.3vw, 58px);
  font-weight: 400;
  letter-spacing: .18em;
}
@keyframes whyDecoRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.rx-why-graphic {
  position: relative;
  margin: 52px auto;
  background: #fff;
  padding: 20px 0 0;
  overflow: visible;
  isolation: isolate;
}
.rx-why-graphic::before {
  display: none;
}
.rx-why-graphic__headline {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto 40px;
  text-align: center;
}
.rx-why-graphic__headline h3 {
  margin: 0;
  color: #252525;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .06em;
}
.rx-why-graphic__headline span {
  color: var(--pink);
}
.rx-why-graphic__grid {
  position: relative;
  z-index: 2;
  width: min(100% - 150px, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}
.rx-why-node {
  position: relative;
  z-index: 2;
  min-height: 238px;
  display: grid;
  align-items: end;
  padding: 28px;
  color: #fff;
  background: #222;
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 14px 16px 28px rgba(64,64,64,.16);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transform-origin: center;
  transition:
    border-color .32s ease,
    box-shadow .32s ease,
    transform .32s ease;
}
.rx-why-node::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.22)),
    color-mix(in srgb, currentColor 16%, transparent);
  opacity: .72;
  transition: opacity .32s ease, background .32s ease;
}
.rx-why-node::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: inherit;
  opacity: .8;
  transition: opacity .32s ease;
  pointer-events: none;
}
.rx-why-node:hover,
.rx-why-node:focus-visible {
  border-color: currentColor;
  box-shadow:
    inset 0 0 0 3px currentColor,
    18px 20px 34px rgba(64,64,64,.22);
  transform: scale(1);
  outline: 0;
}
.rx-why-node:hover::before,
.rx-why-node:focus-visible::before {
  opacity: .52;
}
.rx-why-node:hover::after,
.rx-why-node:focus-visible::after {
  opacity: 0;
}
.rx-why-node:hover .rx-why-node__image,
.rx-why-node:focus-visible .rx-why-node__image {
  filter: grayscale(0) saturate(1.06) contrast(1.02);
  transform: scale(1.03);
}
.rx-why-node__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.18) saturate(.82) contrast(.96);
  transform: scale(1);
  transition: filter .36s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}
.rx-why-node__label span {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding-bottom: 6px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px solid #fff;
  transition: color .28s ease, border-color .28s ease;
}
.rx-why-node:hover .rx-why-node__label span,
.rx-why-node:focus-visible .rx-why-node__label span {
  color: currentColor;
  border-color: currentColor;
}
.rx-why-node__label strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}
.rx-why-node--electricity { color: var(--pink); }
.rx-why-node--telecom { color: var(--pink); }
.rx-why-node--it { color: var(--green); }
.rx-why-node--arts { color: #f2a000; }
.rx-why-node--electricity { border-radius: 36px 0 0 0; }
.rx-why-node--telecom { border-radius: 0 36px 0 0; }
.rx-why-node--it { border-radius: 0 0 0 36px; }
.rx-why-node--arts { border-radius: 0 0 36px 0; }
.rx-why-node--electricity .rx-why-node__image,
.rx-why-node--it .rx-why-node__image {
  width: calc(100% + 76px);
  max-width: none;
  transform: translateX(-76px) scale(1);
}
.rx-why-node--telecom .rx-why-node__image,
.rx-why-node--arts .rx-why-node__image {
  width: calc(100% + 76px);
  max-width: none;
  transform: translateX(0) scale(1);
}
.rx-why-node--electricity:hover .rx-why-node__image,
.rx-why-node--electricity:focus-visible .rx-why-node__image,
.rx-why-node--it:hover .rx-why-node__image,
.rx-why-node--it:focus-visible .rx-why-node__image {
  transform: translateX(-76px) scale(1.03);
}
.rx-why-node--telecom:hover .rx-why-node__image,
.rx-why-node--telecom:focus-visible .rx-why-node__image,
.rx-why-node--arts:hover .rx-why-node__image,
.rx-why-node--arts:focus-visible .rx-why-node__image {
  transform: translateX(0) scale(1.03);
}
.rx-why-strategy {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 20px 24px 22px;
  text-align: center;
}
.rx-why-strategy::before,
.rx-why-strategy::after {
  display: none;
}
.rx-why-strategy h3 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}
.rx-why-strategy h3::before,
.rx-why-strategy h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(17vw, 180px);
  height: 1px;
  background: rgba(64,64,64,.22);
}
.rx-why-strategy h3::before {
  display: none;
}
.rx-why-strategy h3::after {
  display: none;
}
.rx-why-strategy h3 span {
  display: inline-block;
  opacity: 0;
  transform: translate(var(--gather-x), var(--gather-y)) scale(.82);
  filter: blur(12px);
}
.rx-why-strategy h3 .rx-gather-accent {
  color: var(--pink);
}
.rx-why-strategy h3 .rx-gather-space {
  width: .32em;
}
.rx-why-strategy h3 .rx-gather-space--narrow {
  width: .18em;
}
.rx-why-strategy.is-visible h3 span {
  animation: gatherText 3.6s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--gather-index) * 42ms);
}
@keyframes gatherText {
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
}
.rx-why-strategy p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}
.rx-why-graphic__copy {
  position: relative;
  z-index: 2;
  width: min(90%, 760px);
  margin: 36px auto 0;
  color: #222;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .06em;
  text-align: center;
}
.rx-why-graphic__copy span {
  color: var(--pink);
  font-weight: 700;
}
.rx-why__text {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1280px);
  margin: 82px auto 0;
  overflow: visible;
}
.rx-why__text p {
  position: relative;
  z-index: 1;
}
.rx-why__text p { margin: 0 0 18px; }
.rx-why-reasons {
  display: grid;
  gap: 30px;
  margin-top: 38px;
}
.rx-why-reasons article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) clamp(140px, 16vw, 220px);
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  padding: clamp(20px, 2.5vw, 34px) clamp(13px, 2vw, 27px) clamp(20px, 2.5vw, 34px) clamp(18px, 2.4vw, 32px);
  background: #fff;
  border: 1px solid rgba(64,64,64,.14);
  border-radius: 10px;
  box-shadow: 8px 10px 28px rgba(64,64,64,.06);
}
.rx-why-reasons article > span {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--pink);
  font-size: 48px;
  line-height: 1;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateX(-34px);
  filter: blur(8px);
  transition:
    opacity 2.2s cubic-bezier(.16, 1, .3, 1),
    transform 2.2s cubic-bezier(.16, 1, .3, 1),
    filter 2.2s cubic-bezier(.16, 1, .3, 1);
}
.rx-why-reasons article.is-visible > span {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-why-reasons article > span::before {
  content: "POINT";
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .28em;
}
.rx-why-reasons article > span::after {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(64,64,64,.14);
}
.rx-why-reasons h4 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .02em;
}
.rx-why-reasons h4 em {
  color: #404040;
  font-style: normal;
}
.rx-marker {
  background-image: linear-gradient(rgba(255,230,0,.86), rgba(255,230,0,.86));
  background-repeat: no-repeat;
  background-position: left 82%;
  background-size: 0 36%;
  transition: background-size 2.4s .36s cubic-bezier(.16, 1, .3, 1);
}
.rx-marker.is-active {
  background-size: 100% 36%;
}
.rx-why-reasons p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 1.9s .18s cubic-bezier(.16, 1, .3, 1),
    transform 1.9s .18s cubic-bezier(.16, 1, .3, 1),
    filter 1.9s .18s cubic-bezier(.16, 1, .3, 1);
}
.rx-why-reasons p:last-child {
  margin-bottom: 0;
}
.rx-why-reasons article.is-visible p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-why-reasons figure {
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  transition: opacity 1.05s .28s ease;
}
.rx-why-reasons article.is-visible figure {
  opacity: 1;
}
.rx-why-reasons figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .rx-why__text {
    width: min(100% - 48px, 820px);
  }
  .rx-why-reasons article {
    grid-template-columns: 70px 1fr;
  }
  .rx-why-reasons figure {
    grid-column: 2;
    justify-self: center;
    width: min(100%, 300px);
    margin-top: 6px;
  }
}

.rx-solutions {
  width: 100%;
  margin-top: 84px;
}
.rx-service-panels {
  width: 100vw;
  margin: 42px calc(50% - 50vw) 0;
}
.rx-service-panel {
  position: relative;
  min-height: 150svh;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(420px, 1.2fr);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(rgba(28, 24, 24, .84), rgba(28, 24, 24, .84)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 34%),
    #3f3a3a;
  isolation: isolate;
}
.rx-service-panel:nth-child(even) {
  background:
    linear-gradient(rgba(24, 24, 24, .86), rgba(24, 24, 24, .86)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.1), transparent 34%),
    #343434;
}
.rx-service-panel--reverse {
  grid-template-columns: minmax(420px, 1.2fr) minmax(0, 1.55fr);
}
.rx-service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.24), transparent 32%, rgba(0,0,0,.2)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  pointer-events: none;
}
.rx-service-panel--reverse .rx-service-panel__text {
  order: 2;
  padding-right: var(--service-side);
  padding-left: var(--service-gap);
}
.rx-service-panel--reverse .rx-service-panel__image {
  order: 1;
}
.rx-service-panel__text {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 120svh;
  padding: 120px var(--service-gap) 120px var(--service-side);
}
.rx-service-panel__head {
  display: flex;
  align-items: flex-end;
  gap: 54px;
  margin-bottom: 58px;
}
.rx-service-panel__number {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 200;
  line-height: .85;
  letter-spacing: -.04em;
}
.rx-service-panel small {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateX(-140px);
  filter: blur(10px);
  transition:
    opacity 1.35s .12s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s .12s cubic-bezier(.16, 1, .3, 1),
    filter 1.35s .12s cubic-bezier(.16, 1, .3, 1);
}
.rx-service-panel--reverse small {
  transform: translateX(140px);
}
.rx-service-panel.is-visible small {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-service-panel h4 {
  margin: 0 0 48px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateX(-140px);
  filter: blur(10px);
  transition:
    opacity 1.35s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s cubic-bezier(.16, 1, .3, 1),
    filter 1.35s cubic-bezier(.16, 1, .3, 1);
}
.rx-service-panel--reverse h4 {
  transform: translateX(140px);
}
.rx-service-panel.is-visible h4 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-service-panel h4 a {
  width: auto;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}
.rx-service-panel h4 a::after {
  content: none;
}
.rx-service-panel__text > p:not(.rx-service-panel__number) {
  max-width: 820px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.92);
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: .075em;
}
.rx-service-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin: 20px 0 34px;
  padding: 0;
  list-style: none;
}
.rx-service-panel li {
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid rgba(255,255,255,.7);
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}
.rx-service-panel li:hover,
.rx-service-panel li:focus-within {
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.96);
  transform: translateY(-3px);
}
.rx-service-panel a {
  width: fit-content;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
}
.rx-service-panel a::after {
  content: " →";
  color: var(--pink);
  animation: serviceArrowBlink 1.15s ease-in-out infinite;
}
.rx-service-panel__image a {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.rx-service-panel__image a::after {
  content: none;
}
@keyframes serviceArrowBlink {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}
.rx-service-panel__image {
  position: sticky;
  top: 104px;
  height: calc(100svh - 128px);
  min-height: 520px;
  padding: 48px var(--service-side) 48px 0;
}
.rx-service-panel--reverse .rx-service-panel__image {
  padding: 48px 0 48px var(--service-side);
}
.rx-service-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  filter: blur(12px) saturate(.85) contrast(.95);
  transform: scale(1.035);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  transition:
    filter .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
}
.rx-service-panel.is-visible .rx-service-panel__image img {
  filter: blur(0) saturate(.85) contrast(.95);
  transform: scale(1);
}
.rx-service-panel--electricity .rx-service-panel__image img {
  object-position: left center;
}
.rx-service-panel--reverse .rx-service-panel__image img {
  border-radius: 0;
}
#service-01 .rx-service-panel__image img {
  border-radius: 36px 0 0 0;
}
#service-02 .rx-service-panel__image img {
  border-radius: 0 36px 0 0;
}
#service-03 .rx-service-panel__image img {
  border-radius: 0 0 0 36px;
}
#service-04 .rx-service-panel__image img {
  border-radius: 0 0 36px 0;
}
.rx-service-panel--extra-bottom .rx-service-panel__text,
.rx-service-panel--arts .rx-service-panel__text {
  padding-bottom: calc(120px + 76px);
}
.rx-service-panel--extra-bottom .rx-service-panel__image,
.rx-service-panel--arts .rx-service-panel__image {
  padding-bottom: calc(48px + 76px);
}
.rx-service-panel--electricity .rx-service-panel__text,
#service-02 .rx-service-panel__text,
#service-03 .rx-service-panel__text,
#service-04 .rx-service-panel__text {
  align-content: center;
  padding-top: clamp(90px, 7.5vw, 120px);
}
.rx-service-panel--electricity .rx-service-panel__image,
#service-02 .rx-service-panel__image,
#service-03 .rx-service-panel__image,
#service-04 .rx-service-panel__image {
  padding-top: clamp(90px, 7.5vw, 120px);
}
.rx-service-panel--electricity .rx-service-panel__text,
#service-02 .rx-service-panel__text,
#service-03 .rx-service-panel__text {
  padding-bottom: 98px;
}
.rx-service-panel--electricity .rx-service-panel__image,
#service-02 .rx-service-panel__image,
#service-03 .rx-service-panel__image {
  padding-bottom: 62px;
}

.rx-column { text-align: left; }
.rx-column > .rx-column__lead {
  width: min(100%, var(--max));
  margin: 10px auto 34px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .06em;
}
.rx-column .rx-column__meta span {
  color: var(--pink);
  border-color: rgba(255, 0, 89, .62);
}
.rx-column__categories,
.rx-column__latest-title {
  width: min(100%, var(--max));
  margin-inline: auto;
}
.rx-column__categories {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.rx-column__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.rx-column__categories h3,
.rx-column__latest-title h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.rx-column__category-head h3 {
  margin: 0;
}
.rx-column__category-toggle {
  display: none;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(64,64,64,.32);
  border-radius: 50%;
  cursor: pointer;
  transition: color .24s ease, border-color .24s ease, background-color .24s ease;
}
.rx-column__category-toggle span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}
.rx-column__category-toggle span::before,
.rx-column__category-toggle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .24s ease;
}
.rx-column__category-toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.rx-column__category-toggle:hover,
.rx-column__category-toggle:focus-visible {
  color: var(--pink);
  border-color: var(--pink);
}
.rx-column__categories.is-open .rx-column__category-toggle {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
}
.rx-column__categories.is-open .rx-column__category-toggle span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.rx-column__category-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 14px;
}
.rx-column__category-list a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 0, 89, .62);
  border-radius: 999px;
  background: #fff;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.rx-column__category-list a:hover,
.rx-column__category-list a:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 4px 5px 0 rgba(255,0,89,.10);
  transform: translateY(-1px);
}
.rx-column__latest-title {
  margin-top: 30px;
  margin-bottom: 22px;
}
.rx-column__wrap {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
}
.rx-column__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  text-align: left;
}
.rx-column__list::-webkit-scrollbar { display: none; }
.rx-column article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  scroll-snap-align: start;
}
.rx-column article a {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
}
.rx-column article a.rx-column__card-link {
  flex: 1 1 auto;
}
.rx-column article > div {
  position: relative;
  min-height: auto;
  padding: 18px 0 34px;
}
.rx-column article a > div {
  position: relative;
  min-height: auto;
  padding: 18px 0 16px;
}
.rx-column img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.rx-column__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 0 0 8px;
}
.rx-column__date {
  display: block;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}
.rx-column h3 { margin: 0 0 12px; color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.8; transition: color .32s ease; }
.rx-column p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.9; transition: color .32s ease; }
.rx-column p.rx-column__meta {
  margin: 0 0 8px;
}
.rx-column__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: -2px 0 0;
  padding: 0 0 34px;
  list-style: none;
}
.rx-column__tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  width: auto;
  height: auto;
  min-height: 28px;
  padding: 4px 12px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(64, 64, 64, .24);
  border-radius: 6px;
  box-shadow: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.rx-column__tags a:hover,
.rx-column__tags a:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.rx-column__arrow {
  display: none;
}
.rx-column article a:hover img,
.rx-column article a:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: translateY(-4px) scale(1.045);
}
.rx-column article a:hover h3,
.rx-column article a:focus-visible h3,
.rx-column article a:hover div > p:not(.rx-column__meta),
.rx-column article a:focus-visible div > p:not(.rx-column__meta) {
  color: var(--pink);
}

.rx-message {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 880px);
  align-content: center;
  gap: 34px;
  width: 100vw;
  max-width: none;
  min-height: clamp(560px, 62vw, 760px);
  padding: clamp(70px, 8vw, 120px) clamp(36px, 7vw, 112px);
  overflow: hidden;
  color: #fff;
  background: #3d4144;
  border-radius: 0;
  margin: 0 calc(50% - 50vw) 68px;
  isolation: isolate;
}
.rx-message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../assets/images/ceo-photo.png") center center / cover no-repeat;
  transform: scale(1);
}
.rx-message.is-visible::before {
  animation: messagePhotoZoom 13.5s ease-out forwards;
}
.rx-message::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.54) 42%, rgba(0,0,0,.14) 74%),
    radial-gradient(circle at 28% 50%, rgba(255,255,255,.1), transparent 36%),
    radial-gradient(rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: auto, auto, 4px 4px;
  opacity: 1;
  pointer-events: none;
}
.rx-message__title {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  color: var(--ink);
  text-align: center;
}
.rx-message__title p,
.rx-message p:first-child {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--pink);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
}
.rx-message__title p::after {
  content: "";
  width: 64px;
  height: 1px;
  background: rgba(64,64,64,.28);
}
.rx-message__title h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .04em;
}
.rx-message > div:not(.rx-message__title) {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
}
.rx-message img {
  display: none;
}
.rx-message h3 {
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(27px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .08em;
}
.rx-message__headline span {
  display: block;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
}
.rx-message__headline span:nth-child(1) {
  width: 100%;
}
.rx-message__headline span:nth-child(2) {
  width: 0;
}
.rx-message__headline em {
  color: var(--yellow);
  font-style: normal;
}
.rx-message.is-visible .rx-message__headline span:nth-child(2) {
  animation:
    messageTypewriter 2.3s .18s steps(18, start) forwards,
    heroCaret .75s .18s step-end infinite;
  border-right-color: rgba(255,255,255,.86);
}
@keyframes messageTypewriter {
  from { width: 0; }
  to { width: 100%; }
}
.rx-message p {
  max-width: 860px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: .08em;
}
.rx-message > div:not(.rx-message__title) > p {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 1.55s 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.55s 1.25s cubic-bezier(.16, 1, .3, 1);
}
.rx-message.is-visible > div:not(.rx-message__title) > p {
  opacity: 1;
  filter: blur(0);
}
.rx-message strong {
  display: block;
  margin-top: 42px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateX(56px);
  filter: blur(10px);
  transition:
    opacity 1.25s 2.35s cubic-bezier(.16, 1, .3, 1),
    transform 1.25s 2.35s cubic-bezier(.16, 1, .3, 1),
    filter 1.25s 2.35s cubic-bezier(.16, 1, .3, 1);
}
.rx-message.is-visible strong {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-message .rx-message__sign {
  display: block;
  width: min(192px, 32vw);
  height: auto;
  margin-top: 10px;
  object-fit: contain;
}
.rx-message__social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.rx-message__social-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,.88);
  font-size: 28px;
  line-height: 1;
  transition: color .24s ease, transform .24s ease;
}
.rx-message__social-link:hover,
.rx-message__social-link:focus-visible {
  transform: scale(1.16);
}
.rx-message__social-link--instagram:hover,
.rx-message__social-link--instagram:focus-visible {
  color: #e4405f;
}
.rx-message__social-link--youtube:hover,
.rx-message__social-link--youtube:focus-visible {
  color: #ff0033;
}
.rx-message__social-link--amazon:hover,
.rx-message__social-link--amazon:focus-visible {
  color: var(--yellow);
}
.rx-profile {
  width: min(100%, 960px);
  margin-inline: auto;
  text-align: left;
  border-top: 1px solid var(--line);
}
.rx-profile dt,
.rx-profile dd {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(8px);
  transition:
    opacity 1.75s cubic-bezier(.16, 1, .3, 1),
    transform 1.75s cubic-bezier(.16, 1, .3, 1),
    filter 1.75s cubic-bezier(.16, 1, .3, 1);
}
.rx-profile.is-visible dt,
.rx-profile.is-visible dd {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-profile div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.rx-profile dt { font-weight: 500; }
.rx-profile dd { margin: 0; }
.rx-profile dd a {
  color: inherit;
  text-decoration: none;
}
.rx-profile dd a.rx-profile__external-link {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.rx-profile dd a.rx-profile__external-link span {
  text-decoration: underline;
  text-decoration-color: rgba(255, 0, 89, .45);
  text-underline-offset: 4px;
}
.rx-profile dd a.rx-profile__external-link i {
  font-size: .72em;
  line-height: 1;
  transform: translateY(-.08em);
}
.rx-profile dd a.rx-profile__external-link:hover,
.rx-profile dd a.rx-profile__external-link:focus-visible {
  color: var(--pink);
}
.rx-profile dd a.rx-profile__external-link:hover span,
.rx-profile dd a.rx-profile__external-link:focus-visible span {
  text-decoration-color: var(--pink);
}
.rx-profile dd ruby {
  ruby-align: center;
}
.rx-profile dd rt {
  color: inherit;
  font-size: .32em;
  font-weight: 600;
  letter-spacing: .08em;
  padding-bottom: 3px;
}
.rx-phone-reveal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  padding: 8px 18px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  background: #fff;
  border: 1px solid rgba(64,64,64,.22);
  border-radius: 999px;
  cursor: pointer;
  transition: color .24s ease, border-color .24s ease, background-color .24s ease;
}
.rx-phone-reveal[hidden],
.rx-phone-value[hidden] {
  display: none !important;
}
.rx-phone-reveal:hover,
.rx-phone-reveal:focus-visible {
  color: var(--pink);
  background: rgba(255,0,89,.04);
  border-color: rgba(255,0,89,.5);
}
.rx-contact-method__phone .rx-phone-reveal {
  min-width: 190px;
  min-height: 54px;
  font-size: clamp(16px, 1.35vw, 19px);
}
.rx-phone-value.is-phone-visible {
  animation: rxPhoneShow .32s ease both;
}
@keyframes rxPhoneShow {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.rx-certifications {
  display: grid;
  gap: 20px;
  width: min(100%, 860px);
  margin: 42px auto 0;
}
.rx-certification {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 104px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.rx-certification figure {
  display: grid;
  place-items: center;
  min-height: 74px;
  margin: 0;
  padding-right: 26px;
  border-right: 1px solid rgba(64,64,64,.18);
  opacity: 0;
  transition: opacity 2.45s .12s cubic-bezier(.16, 1, .3, 1);
}
.rx-certification:nth-child(2) figure {
  transition-delay: .36s;
}
.rx-certifications.is-visible .rx-certification figure {
  opacity: 1;
}
.rx-certification figure a {
  display: grid;
  place-items: center;
  transition: transform .24s ease, opacity .24s ease;
}
.rx-certification figure a:hover,
.rx-certification figure a:focus-visible {
  opacity: .82;
  transform: scale(1.04);
}
.rx-certification img {
  display: block;
  max-width: 104px;
  max-height: 74px;
  object-fit: contain;
}
.rx-certification h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateX(84px);
  filter: blur(10px);
  transition:
    opacity 1.15s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s cubic-bezier(.16, 1, .3, 1);
}
.rx-certification:nth-child(2) h3 {
  transition-delay: .12s;
}
.rx-certifications.is-visible .rx-certification h3 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-certification p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .04em;
}
.rx-certification a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,0,89,.42);
  text-underline-offset: .18em;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.rx-certification p a[target="_blank"]::after {
  content: "\f08e";
  display: inline-block;
  margin-left: .35em;
  font-family: "Font Awesome 6 Free";
  font-size: .78em;
  font-weight: 900;
  line-height: 1;
  vertical-align: .08em;
}
.rx-certification a:hover,
.rx-certification a:focus-visible {
  color: var(--pink);
  text-decoration-color: currentColor;
}
.rx-access-list {
  display: grid;
  gap: 52px;
}
.rx-access-section .rx-section__title {
  margin-bottom: 72px;
}
.rx-office {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  min-height: 420px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rx-office--reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}
.rx-office--reverse .rx-office__map {
  order: 2;
}
.rx-office__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.rx-office__body {
  display: grid;
  align-content: center;
  padding: 54px;
}
.rx-office__body span {
  display: block;
  color: var(--pink);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: .12em;
  opacity: 0;
  transform: translateX(140px);
  filter: blur(10px);
  transition:
    opacity 1.05s .12s cubic-bezier(.16, 1, .3, 1),
    transform 1.05s .12s cubic-bezier(.16, 1, .3, 1),
    filter 1.05s .12s cubic-bezier(.16, 1, .3, 1);
}
.rx-office__body h3 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateX(140px);
  filter: blur(10px);
  transition:
    opacity 1.05s cubic-bezier(.16, 1, .3, 1),
    transform 1.05s cubic-bezier(.16, 1, .3, 1),
    filter 1.05s cubic-bezier(.16, 1, .3, 1);
}
.rx-office--reverse .rx-office__body span,
.rx-office--reverse .rx-office__body h3 {
  transform: translateX(-140px);
}
.rx-office.is-visible .rx-office__body span,
.rx-office.is-visible .rx-office__body h3 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-office__body p {
  position: relative;
  margin: 0;
  padding-top: 28px;
  font-size: 17px;
}
.rx-office__body p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.rx-contact-guide {
  width: min(100%, var(--max));
  margin: -18px auto 58px;
  font-family: "Noto Sans JP", sans-serif;
}
.rx-contact-guide__lead {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .06em;
  text-align: center;
}
.rx-contact-guide__lead p {
  margin: 0;
}
.rx-contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(100%, 640px);
  min-height: 58px;
  margin: 0 auto 52px;
  padding: 10px 22px;
  color: #404040;
  border: 1px solid rgba(64,64,64,.22);
  background: rgba(255,255,255,.58);
}
.rx-contact-hours span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 22px;
  color: var(--pink);
  border-right: 1px solid rgba(64,64,64,.24);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
}
.rx-contact-hours i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 21px;
}
.rx-contact-hours strong {
  color: var(--ink);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 500;
  letter-spacing: .08em;
}
.rx-contact-hours strong b {
  font: inherit;
}
.rx-contact-hours small {
  color: var(--text);
  font-size: 14px;
}
.rx-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rx-contact-method {
  display: grid;
  grid-template-rows: 92px auto minmax(148px, 1fr) 82px;
  align-content: stretch;
  align-items: center;
  justify-items: center;
  min-height: 360px;
  padding: 36px 30px 28px;
  text-align: center;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(64,64,64,.14);
  box-shadow: 8px 10px 28px rgba(64,64,64,.06);
}
.rx-contact-method__icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  color: #404040;
  font-size: 38px;
  background: radial-gradient(circle, rgba(64,64,64,.08), rgba(64,64,64,.04));
  border-radius: 50%;
}
.rx-contact-method--line .rx-contact-method__icon {
  color: #06c755;
  background: radial-gradient(circle, rgba(6,199,85,.16), rgba(6,199,85,.06));
}
.rx-contact-method h3 {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
  padding-bottom: 20px;
  color: #404040;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 1.9s .16s cubic-bezier(.16, 1, .3, 1),
    transform 1.9s .16s cubic-bezier(.16, 1, .3, 1),
    filter 1.9s .16s cubic-bezier(.16, 1, .3, 1);
}
.rx-contact-method--phone h3 {
  transform: translateX(-112px);
}
.rx-contact-method--line h3 {
  transform: translateY(72px);
}
.rx-contact-method--form h3 {
  transform: translateX(112px);
}
.rx-contact-method.is-contact-visible h3,
.rx-contact-method.is-visible h3 {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}
.rx-contact-method h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(64,64,64,.16);
}
.rx-contact-method--line h3 {
  color: #06c755;
}
.rx-contact-method--line h3::after {
  background: rgba(6,199,85,.26);
}
.rx-contact-method p {
  align-self: center;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
  justify-self: center;
}
.rx-contact-method__phone {
  align-self: center;
  margin: 0 !important;
  color: #404040 !important;
  font-size: clamp(30px, 3vw, 38px) !important;
  font-weight: 700;
  line-height: 1.15 !important;
  letter-spacing: .05em;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  transition: opacity 3.2s .8s ease;
}
.rx-contact-method.is-contact-visible .rx-contact-method__phone,
.rx-contact-method.is-visible .rx-contact-method__phone {
  opacity: 1;
}
.rx-contact-method__phone a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.rx-contact-method__phone a:hover,
.rx-contact-method__phone a:focus-visible {
  color: var(--pink);
}
.rx-contact-method__phone ruby {
  ruby-align: center;
}
.rx-contact-method__phone rt {
  color: inherit;
  font-size: clamp(10px, .78vw, 12px);
  font-weight: 600;
  letter-spacing: .08em;
}
.rx-contact-method__qr {
  display: block;
  align-self: center;
  justify-self: center;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.rx-line-button,
.rx-contact-form-button {
  display: block;
  justify-self: center;
  align-self: center;
  width: min(100%, 420px);
  text-decoration: none;
  opacity: 0;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.08));
  transition:
    opacity 3.2s .8s ease,
    filter .3s ease;
}
.rx-contact-method.is-contact-visible .rx-line-button,
.rx-contact-method.is-contact-visible .rx-contact-form-button,
.rx-contact-method.is-visible .rx-line-button,
.rx-contact-method.is-visible .rx-contact-form-button {
  opacity: 1;
}
.rx-line-button:hover,
.rx-line-button:focus-visible,
.rx-contact-form-button:hover,
.rx-contact-form-button:focus-visible {
  opacity: 1;
  filter: drop-shadow(6px 7px 0 rgba(64,64,64,.12)) brightness(1.06) saturate(1.08);
}
.rx-line-button img,
.rx-contact-form-button img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: contain;
}
.rx-contact-guide__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 30px 0 0;
  padding-top: 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .04em;
  border-top: 1px solid rgba(64,64,64,.16);
}
.rx-contact-guide__note i {
  color: #404040;
  font-size: 24px;
  line-height: 1.4;
}
.rx-contact-form-heading {
  width: min(100%, 760px);
  margin: 76px auto 28px;
  scroll-margin-top: calc(var(--header) + 28px);
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  opacity: 0;
  transform: translateX(120px);
  filter: blur(10px);
  transition:
    opacity 1.6s cubic-bezier(.16, 1, .3, 1),
    transform 1.6s cubic-bezier(.16, 1, .3, 1),
    filter 1.6s cubic-bezier(.16, 1, .3, 1);
}
.rx-contact-form-heading.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-contact-form-heading p {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--pink);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .075em;
}
.rx-contact-form-heading p::after {
  content: "";
  width: 64px;
  height: 1px;
  background: rgba(64,64,64,.28);
}
.rx-contact-form-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .06em;
}
.rx-form {
  max-width: 760px;
  padding: 38px;
  background: #fff;
  border: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.rx-progress {
  --progress-line: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.rx-progress[data-current="2"] { --progress-line: calc((100% - 100% / 3) / 2); }
.rx-progress[data-current="3"] { --progress-line: calc(100% - 100% / 3); }
.rx-progress::before,
.rx-progress::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 4px;
  border-radius: 999px;
}
.rx-progress::before {
  background: rgba(64,64,64,.18);
}
.rx-progress::after {
  right: auto;
  width: var(--progress-line);
  background: #00cf68;
  transition: width .35s ease;
}
.rx-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.rx-progress li::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-top: -2px;
  background: currentColor;
  opacity: 0;
  transition: opacity .25s ease;
}
.rx-progress li.active::after {
  opacity: .38;
}
.rx-progress span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #cfcfcf;
  border-radius: 50%;
  transition: background-color .25s ease, color .25s ease;
}
.rx-progress li.active,
.rx-progress li.completed { color: var(--ink); }
.rx-progress li.active {
  animation: progressLabelBlink 1.35s ease-in-out infinite;
}
.rx-progress li.active span {
  color: #404040;
  background: #ffcb00;
}
.rx-progress li.completed span {
  color: #fff;
  background: #00cf68;
}
.rx-progress li.completed span {
  font-size: 0;
}
.rx-progress li.completed span::before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}
@keyframes progressLabelBlink {
  0%, 100% { color: var(--ink); }
  50% { color: rgba(64,64,64,.42); }
}
.rx-form label, .rx-form fieldset { display: block; margin: 0 0 22px; padding: 0; border: 0; font-weight: 500; }
.rx-form label,
.rx-form fieldset {
  position: relative;
}
.rx-form__label-text {
  display: inline-block;
}
.rx-form__label-text--required::after {
  content: "*";
  display: inline-block;
  margin-left: 3px;
  color: var(--pink);
  font-size: .86em;
  font-weight: 700;
  line-height: 1;
  vertical-align: super;
}
.rx-form__step[data-step="1"] > label,
.rx-form__step[data-step="1"] > fieldset {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 1.25s cubic-bezier(.16, 1, .3, 1),
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.25s cubic-bezier(.16, 1, .3, 1);
}
.rx-form.is-visible .rx-form__step[data-step="1"] > label,
.rx-form.is-visible .rx-form__step[data-step="1"] > fieldset {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-form.is-visible .rx-form__step[data-step="1"] > label:nth-of-type(1) { transition-delay: .08s; }
.rx-form.is-visible .rx-form__step[data-step="1"] > label:nth-of-type(2) { transition-delay: .16s; }
.rx-form.is-visible .rx-form__step[data-step="1"] > label:nth-of-type(3) { transition-delay: .24s; }
.rx-form.is-visible .rx-form__step[data-step="1"] > fieldset { transition-delay: .32s; }
.rx-form.is-visible .rx-form__step[data-step="1"] > label:nth-of-type(4) { transition-delay: .4s; }
.rx-form.is-visible .rx-form__step[data-step="1"] > label:nth-of-type(5) { transition-delay: .48s; }
.rx-form input, .rx-form select, .rx-form textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  background: #fff;
}
.rx-form input.has-field-status-icon,
.rx-form select.has-field-status-icon,
.rx-form textarea.has-field-status-icon {
  padding-right: 58px;
}
.rx-form input.is-error-field,
.rx-form select.is-error-field,
.rx-form textarea.is-error-field {
  border-color: #d90036;
  box-shadow: 0 0 0 1px rgba(217,0,54,.22);
}
.rx-form input.is-valid-field,
.rx-form select.is-valid-field,
.rx-form textarea.is-valid-field {
  border-color: #35a647;
  box-shadow: 0 0 0 1px rgba(53,166,71,.22);
}
.rx-field-status-icon {
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: none;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.rx-field-status-icon[data-state="valid"],
.rx-field-status-icon[data-state="error"] {
  display: grid;
}
.rx-field-status-icon[data-state="valid"] {
  background: #35a647;
}
.rx-field-status-icon[data-state="error"] {
  background: #e93a3a;
  font-size: 16px;
}
.rx-phone { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rx-phone .rx-field-status-icon {
  right: 30px;
  top: calc(50% + 4px);
}
.rx-phone.is-error-field input {
  border-color: #d90036;
  box-shadow: 0 0 0 1px rgba(217,0,54,.22);
}
.rx-phone.is-valid-field input {
  border-color: #35a647;
  box-shadow: 0 0 0 1px rgba(53,166,71,.22);
}
.rx-form [data-next] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  width: calc((100% - 20px) / 3);
  margin-inline: auto;
  white-space: nowrap;
}
.rx-error { margin: 8px 0 0; color: #d90036; font-size: 13px; font-weight: 500; }
.rx-confirm {
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 10px;
  box-shadow: 8px 10px 28px rgba(64,64,64,.06);
}
.rx-confirm dl {
  display: grid;
  gap: 0;
  margin: 0;
}
.rx-confirm dl > div {
  display: grid;
  grid-template-columns: minmax(140px, .34fr) 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(64,64,64,.16);
}
.rx-confirm dl > div:first-child {
  padding-top: 0;
}
.rx-confirm dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.rx-confirm dt,
.rx-confirm dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
.rx-confirm dt {
  font-weight: 700;
}
.rx-form__step[data-step="2"]:not(.hidden) {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  column-gap: 24px;
}
.rx-form__step[data-step="2"] .rx-confirm,
.rx-form__step[data-step="2"] .rx-form__status,
.rx-form__step[data-step="2"] .rx-form__buttons {
  grid-column: 1 / -1;
  width: 100%;
}
.rx-form__verify {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  row-gap: 8px;
  width: 100%;
  margin: 22px 0;
}
.rx-form__verify > * {
  min-width: 0;
}
.rx-form .rx-form__verify .rx-check {
  grid-column: 1;
  grid-row: 1;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 72px;
  margin: 0 !important;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 8px;
  box-shadow: 8px 10px 28px rgba(64,64,64,.04);
  align-self: center;
}
.rx-check input { width: auto; min-height: 0; margin: 0; }
.rx-check a { color: var(--pink); text-decoration: underline; }
.rx-form__verify .g-recaptcha {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  margin: 0 !important;
  align-self: start;
}
.rx-form__verify > .rx-error {
  grid-row: 2;
  justify-self: center;
  margin: 0;
  text-align: center;
}
.rx-form__verify > .rx-error--privacy {
  grid-column: 1;
}
.rx-form__verify > .rx-error--recaptcha {
  grid-column: 2;
}
.rx-form__status {
  min-height: 1.6em;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.rx-form__status.is-error {
  color: #d90036;
}
.rx-form button:disabled {
  cursor: wait;
  opacity: .62;
}
.rx-form__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rx-form__buttons .rx-button {
  gap: 14px;
}
.rx-form [data-next] span,
.rx-form__buttons .rx-button span {
  display: inline-block;
  font-size: 1.48em;
  line-height: 1;
  transform: translateY(-.06em);
}
.rx-complete {
  display: grid;
  justify-items: center;
  padding: 48px 34px;
  text-align: center;
  background: var(--paper);
}
.rx-complete__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
}
.rx-complete__label::before,
.rx-complete__label::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255,0,89,.45);
}
.rx-complete h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .04em;
}
.rx-complete p:not(.rx-complete__label) {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
}
.rx-complete__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: min(100%, 360px);
  min-height: 64px;
  margin-top: 36px;
  padding: 0 34px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(255,0,89,.18);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.rx-complete__button:hover,
.rx-complete__button:focus-visible {
  background: #e90051;
  box-shadow: 0 18px 32px rgba(255,0,89,.24);
  transform: translateY(-2px);
}
.rx-complete__button span {
  font-size: 28px;
  line-height: 1;
}

.rx-footer {
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 72% 34%, rgba(255,255,255,.055), transparent 30%),
    linear-gradient(135deg, #202020, #151515);
}
.rx-footer__main {
  width: min(calc(100% - 200px), 1700px);
  margin: 0 auto;
  padding: 55px 0 40px;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(570px, 1.04fr) minmax(500px, .96fr);
  gap: 0;
}
.rx-footer__about,
.rx-footer__nav,
.rx-footer__policy {
  min-width: 0;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 2s cubic-bezier(.16, 1, .3, 1),
    transform 2s cubic-bezier(.16, 1, .3, 1),
    filter 2s cubic-bezier(.16, 1, .3, 1);
}
.rx-footer__about {
  display: flex;
  flex-direction: column;
  padding-right: clamp(44px, 4vw, 84px);
  transform: translateX(-56px);
}
.rx-footer__nav,
.rx-footer__policy {
  padding-left: clamp(48px, 4vw, 78px);
  border-left: 1px solid rgba(255,255,255,.2);
}
.rx-footer__nav {
  padding-right: clamp(46px, 4vw, 76px);
  transform: translateY(56px);
}
.rx-footer__policy {
  padding-left: clamp(42px, 3.5vw, 64px);
  transform: translateX(56px);
}
.rx-footer__about.is-visible,
.rx-footer__nav.is-visible,
.rx-footer__policy.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}
.rx-footer__logo-link {
  display: inline-block;
  margin-bottom: 26px;
  transition:
    opacity .28s ease,
    filter .28s ease;
}
.rx-footer__logo-link:hover,
.rx-footer__logo-link:focus-visible {
  opacity: 1;
}
.rx-footer__logo-link img {
  display: block;
  width: 240px;
  filter: brightness(0) invert(1);
  transition: filter .28s ease, opacity .28s ease;
}
.rx-footer__logo-link:hover img,
.rx-footer__logo-link:focus-visible img {
  filter: none;
}
.rx-footer__about > p { margin: 0; color: rgba(255,255,255,.74); font-size: 14px; line-height: 2.05; letter-spacing: .06em; }
.rx-footer__title {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
}
.rx-footer a.rx-footer__title {
  width: fit-content;
  transition: color .25s ease;
}
.rx-footer a.rx-footer__title:hover,
.rx-footer a.rx-footer__title:focus-visible {
  color: #fff;
}
.rx-footer__title::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pink);
}
.rx-footer__list, .rx-footer__sns { margin: 0; padding: 0; list-style: none; }
.rx-footer__list--sitemap {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  column-gap: 56px;
  row-gap: 0;
  position: relative;
}
.rx-footer__list--sitemap::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.rx-footer__list li { margin-bottom: 8px; }
.rx-footer__list.rx-footer__list--sitemap li { margin-bottom: 0; }
.rx-footer__list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.rx-footer__policy .rx-footer__list a {
  display: inline-flex;
  justify-content: flex-start;
  width: auto;
  gap: 18px;
}
.rx-footer__list a::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .92;
  transition: transform .2s ease, opacity .2s ease;
}
.rx-footer__list a:hover,
.rx-footer__list a:focus-visible {
  color: #fff;
}
.rx-footer__list a:hover::after,
.rx-footer__list a:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}
.rx-footer__bottom {
  width: min(calc(100% - 200px), 1700px);
  margin: 0 auto;
  padding: 21px 0 28px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.16);
}
.rx-footer__social {
  margin-top: auto;
  padding-top: 54px;
}
.rx-footer__sns-title {
  margin: 0 0 18px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}
.rx-footer__sns { display: flex; gap: 18px; align-items: center; }
.rx-footer__sns li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rx-footer__sns a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 0;
  background: rgba(255,255,255,.09);
  border-radius: 50%;
  transition: background-color .2s ease, transform .2s ease;
}
.rx-footer__sns a:hover,
.rx-footer__sns a:focus-visible {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}
.rx-footer__sns img {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
  transform: translate(-50%, -50%);
}
.rx-footer__sns a[href*="x.com"] img {
  transform: translate(-50%, -50%);
}
.rx-footer__sns a[href*="facebook"] img {
  transform: translate(-50%, -50%);
}
.rx-footer__sns a[href*="instagram"] img {
  transform: translate(-50%, -50%);
}
.rx-footer__sns a[href*="youtube"] img {
  transform: translate(-50%, -50%);
}
.rx-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  letter-spacing: .08em;
  text-align: center;
}
.rx-footer__bottom p.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -.12em;
  animation: footerCursorBlink .8s steps(1) infinite;
}
@keyframes footerCursorBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@media (max-width: 1320px) {
  .rx-footer__main,
  .rx-footer__bottom {
    width: min(calc(100% - 72px), 1700px);
  }
  .rx-footer__main {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    row-gap: 0;
  }
  .rx-footer__about {
    grid-row: 1 / 3;
    padding-right: clamp(34px, 4vw, 58px);
  }
  .rx-footer__nav,
  .rx-footer__policy {
    grid-column: 2;
    padding-left: clamp(44px, 5vw, 70px);
  }
  .rx-footer__nav {
    padding-right: 0;
  }
  .rx-footer__policy {
    margin-top: 28px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .rx-footer__list--sitemap {
    column-gap: 44px;
  }
  .rx-footer__policy .rx-footer__list {
    max-width: 560px;
  }
  .rx-footer__policy .rx-footer__list a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.rx-lesson-popup {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 920;
  width: min(30vw, 232px);
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.96);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}
.rx-lesson-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.rx-lesson-popup a {
  display: block;
}
.rx-lesson-popup img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 10px 14px 30px rgba(64,64,64,.18);
}
.rx-lesson-popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  background: rgba(64,64,64,.82);
  border-radius: 50%;
  cursor: pointer;
}
.rx-cookie-popup {
  position: fixed;
  top: calc(var(--header) + 24px);
  right: 28px;
  z-index: 940;
  width: min(46vw, 760px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 20px;
  padding: 26px 34px 26px 28px;
  color: var(--ink);
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(64,64,64,.14);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(64,64,64,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition:
    opacity .55s cubic-bezier(.16, 1, .3, 1),
    visibility .55s cubic-bezier(.16, 1, .3, 1),
    transform .55s cubic-bezier(.16, 1, .3, 1);
}
.rx-cookie-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rx-cookie-popup__icon {
  display: grid;
  place-items: center;
  color: #0b66d8;
}
.rx-cookie-popup__icon svg {
  width: 56px;
  height: 66px;
}
.rx-cookie-popup__body h2 {
  margin: 0 0 8px;
  color: #0f1824;
  font-size: clamp(16px, 1.12vw, 21px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
}
.rx-cookie-popup__body p {
  margin: 0;
  color: #151515;
  font-size: clamp(11px, .76vw, 13px);
  line-height: 1.85;
  letter-spacing: .03em;
}
.rx-cookie-popup__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b66d8;
  text-decoration: none;
  transition: color .2s ease;
}
.rx-cookie-popup__body a:hover,
.rx-cookie-popup__body a:focus-visible {
  color: var(--pink);
}
.rx-cookie-popup__body a span {
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 7px;
}
.rx-cookie-popup__body a i {
  font-size: .9em;
}
.rx-cookie-popup__accept {
  justify-self: end;
  min-width: 138px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #0b66d8;
  color: #0b66d8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 5px 6px 0 rgba(64,64,64,.08);
  cursor: pointer;
  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}
.rx-cookie-popup__accept:hover,
.rx-cookie-popup__accept:focus-visible {
  color: #fff;
  background: #0b66d8;
  border-color: #0b66d8;
  box-shadow: 7px 8px 0 rgba(64,64,64,.12);
}
.rx-cookie-popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  background: rgba(64,64,64,.82);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .2s ease;
}
.rx-cookie-popup__close:hover,
.rx-cookie-popup__close:focus-visible {
  background: rgba(64,64,64,.96);
}
.rx-pagetop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(64,64,64,.1);
  transition: background .2s ease, box-shadow .2s ease;
}
.rx-pagetop:hover,
.rx-pagetop:focus-visible {
  background: #f2b900;
  box-shadow: 0 18px 30px rgba(64,64,64,.16);
}
.rx-pagetop__icon {
  width: 22px;
  height: 22px;
  overflow: visible;
}
.rx-pagetop__icon path {
  stroke: #404040;
  stroke-width: 1.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.rx-policy-hero,
.rx-news-hero,
.rx-column-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: var(--header) 24px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(32,32,32,.76) 0%, rgba(32,32,32,.58) 46%, rgba(32,32,32,.34) 100%),
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    url("../assets/images/corporate-policy-hero.png") center / cover;
  background-size: auto, 4px 4px, cover;
}
.rx-policy-hero div,
.rx-mission-hero div,
.rx-news-hero div,
.rx-column-hero div {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.rx-policy {
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: max(24px, calc((100vw - 1280px) / 2));
}
.rx-policy-hero p,
.rx-mission-hero p,
.rx-news-hero p,
.rx-column-hero p {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}
.rx-policy-hero h1,
.rx-mission-hero h1,
.rx-news-hero h1,
.rx-column-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .04em;
}
.rx-policy-hero span,
.rx-mission-hero span,
.rx-news-hero span,
.rx-column-hero span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  letter-spacing: .08em;
}
.rx-breadcrumb {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 34px 0 0;
}
.rx-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rx-breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: rgba(64,64,64,.55);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .08em;
}
.rx-breadcrumb li + li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 22px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.rx-breadcrumb a {
  color: var(--ink);
  transition: color .25s ease;
}
.rx-breadcrumb a:hover,
.rx-breadcrumb a:focus-visible {
  color: var(--pink);
}
.rx-breadcrumb li[aria-current="page"] span {
  min-width: 0;
}
.rx-policy { padding: 40px 0 55px; }
.rx-policy__layout {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
}
.rx-policy__nav {
  position: sticky;
  top: calc(var(--header) + 48px);
  display: grid;
  gap: 18px;
  padding: 8px 0 0;
}
.rx-policy__nav a {
  position: relative;
  width: max-content;
  display: grid;
  grid-template-columns: 58px max-content;
  align-items: center;
  column-gap: 16px;
  color: rgba(64,64,64,.58);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: color .25s ease;
}
.rx-policy__nav a::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: 30px;
  height: 2px;
  background: rgba(64,64,64,.25);
  transition: width .25s ease, background-color .25s ease;
}
.rx-policy__nav a::after {
  content: "";
  position: absolute;
  left: 38px;
  top: calc(50% - 1px);
  width: 20px;
  height: 2px;
  background: transparent;
  transform: rotate(45deg);
  transform-origin: right center;
  transition: background-color .25s ease;
}
.rx-policy__nav a:hover,
.rx-policy__nav a:focus-visible,
.rx-policy__nav a.is-active {
  color: var(--pink);
}
.rx-policy__nav a.is-active::before {
  width: 58px;
  background: var(--pink);
}
.rx-policy__nav a.is-active::after {
  background: var(--pink);
}
.rx-policy__content {
  min-width: 0;
}
.rx-policy section {
  padding: 0 0 72px;
  scroll-margin-top: calc(var(--header) + 32px);
}
.rx-policy section + section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}
.rx-policy h2 { margin: 0 0 24px; font-size: 30px; font-weight: 500; }
.rx-policy h3 { margin: 30px 0 10px; font-size: 20px; font-weight: 500; }
.rx-policy-service-cards {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding-left: clamp(18px, 3vw, 34px);
}
.rx-policy-service-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.rx-policy-service-card + .rx-policy-service-card {
  border-top: 0;
}
.rx-policy-service-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 14px;
}
.rx-policy-service-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.rx-policy-service-card__head p {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(64,64,64,.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.rx-policy-service-card dl {
  margin: 0;
}
.rx-policy-service-card dl div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(64,64,64,.12);
}
.rx-policy-service-card dt {
  color: rgba(64,64,64,.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.rx-policy-service-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.9;
}
.rx-policy__date {
  margin-top: 28px;
  text-align: right;
}
.rx-policy__end {
  margin-top: 28px;
  text-align: right;
}
.rx-policy__end + .rx-policy__date {
  margin-top: 8px;
}

.rx-lower-hero {
  padding: 180px 24px 96px;
  color: #fff;
  background:
    linear-gradient(rgba(38, 34, 34, .84), rgba(38, 34, 34, .84)),
    url("../assets/images/firstview.png") center / cover;
}
.rx-lower-hero div {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.rx-lower-hero p {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}
.rx-lower-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.25;
}
.rx-lower-hero span {
  color: rgba(255,255,255,.78);
  font-size: 16px;
}
.rx-lower-hero.rx-service-hero,
.rx-lower-hero.rx-support-hero,
.rx-lower-hero.rx-lesson-hero,
.rx-lower-hero.rx-recruit-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: var(--header) 24px 0;
  background:
    linear-gradient(90deg, rgba(32,32,32,.76) 0%, rgba(32,32,32,.58) 46%, rgba(32,32,32,.34) 100%),
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    var(--lower-hero-image) center / cover;
  background-size: auto, 4px 4px, cover;
}
.rx-lower-hero.rx-service-hero { --lower-hero-image: url("../assets/images/service-hero.png"); }
.rx-lower-hero.rx-support-hero { --lower-hero-image: url("../assets/images/support-hero.png"); }
.rx-lower-hero.rx-lesson-hero { --lower-hero-image: url("../assets/images/lesson-hero.png"); }
.rx-lower-hero.rx-recruit-hero { --lower-hero-image: url("../assets/images/recruit-hero.png"); }
.rx-lower-hero.rx-service-hero div,
.rx-lower-hero.rx-support-hero div,
.rx-lower-hero.rx-lesson-hero div,
.rx-lower-hero.rx-recruit-hero div {
  transform: translateY(-12px);
}
.rx-coming-soon-section {
  background: #fff;
  padding: clamp(20px, 3vw, 36px) 24px clamp(28px, 4vw, 52px);
}
.rx-coming-soon {
  width: min(720px, 82vw);
  margin: 0 auto;
}
.rx-coming-soon img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.rx-news-hero {
  background:
    linear-gradient(90deg, rgba(32,32,32,.82), rgba(32,32,32,.56)),
    radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    url("../assets/images/news-hero.png") center / cover;
  background-size: auto, 4px 4px, cover;
}
.rx-column-hero {
  background:
    linear-gradient(90deg, rgba(32,32,32,.82), rgba(32,32,32,.56)),
    radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    url("../assets/images/column-hero.png") center / cover;
  background-size: auto, 4px 4px, cover;
}
.rx-news-page {
  padding: 48px 24px 100px;
}
.rx-news-page__layout {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(42px, 5vw, 72px);
  align-items: start;
}
.rx-news-page__tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(64,64,64,.18);
}
.rx-news-page__tabs a {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
  transition: color .25s ease;
}
.rx-news-page__tabs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.rx-news-page__tabs a:hover,
.rx-news-page__tabs a:focus-visible,
.rx-news-page__tabs a.is-active {
  color: var(--pink);
}
.rx-news-page__tabs a.is-active::after,
.rx-news-page__tabs a:hover::after,
.rx-news-page__tabs a:focus-visible::after {
  transform: scaleX(1);
}
.rx-news-page__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 28px;
  border-bottom: 1px solid rgba(64,64,64,.18);
  scroll-margin-top: 140px;
}
.rx-news-page__tools p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  letter-spacing: .04em;
}
.rx-news-page__tools strong {
  color: var(--pink);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .06em;
}
.rx-news-page__controls {
  display: flex;
  align-items: center;
  gap: 24px;
}
.rx-news-page__controls select {
  width: 150px;
  height: 46px;
  padding: 0 42px 0 20px;
  color: var(--ink);
  font-size: 14px;
  border: 1px solid rgba(64,64,64,.18);
  border-radius: 2px;
  background: #fff;
}
.rx-news-page__pager {
  margin-top: 34px;
}
.rx-news-page__pager-pc {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 130px;
  align-items: center;
  column-gap: clamp(16px, 2vw, 24px);
}
.rx-news-page__pager-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  min-width: 0;
}
.rx-news-page__pager-button,
.rx-news-page__pager-number,
.rx-news-page__pager-ellipsis,
.rx-news-page__pager-mobile-button,
.rx-news-page__pager-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}
.rx-news-page__pager-button {
  width: 130px;
  height: 52px;
  border: 1px solid rgba(64,64,64,.18);
  border-radius: 4px;
  background: #fff;
  font-weight: 500;
  letter-spacing: .08em;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.rx-news-page__pager-number {
  min-width: 34px;
  height: 42px;
  border-radius: 3px;
  font-size: 16px;
  letter-spacing: .04em;
  transition: color .25s ease, background-color .25s ease;
}
.rx-news-page__pager-ellipsis {
  min-width: 20px;
  height: 42px;
  color: var(--ink);
  letter-spacing: .08em;
}
.rx-news-page__pager-button:hover,
.rx-news-page__pager-button:focus-visible,
.rx-news-page__pager-number:hover,
.rx-news-page__pager-number:focus-visible,
.rx-news-page__pager-number.is-current {
  color: #fff;
  background: var(--pink);
}
.rx-news-page__pager-button:hover,
.rx-news-page__pager-button:focus-visible {
  border-color: var(--pink);
}
.rx-news-page__pager-button.is-disabled,
.rx-news-page__pager-mobile-button.is-disabled {
  color: rgba(64,64,64,.35);
  pointer-events: none;
}
.rx-news-page__pager-sp {
  display: none;
}
.rx-news-page__list article {
  border-bottom: 1px solid rgba(64,64,64,.18);
}
.rx-news-page__list article[hidden] {
  display: none;
}
.rx-news-page__list a {
  display: grid;
  grid-template-columns: 104px 138px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 22px;
  color: var(--ink);
  transition: color .25s ease, background-color .25s ease;
}
.rx-news-page__list a:hover,
.rx-news-page__list a:focus-visible {
  color: var(--pink);
  background: rgba(255,0,89,.025);
}
.rx-news-page__list time {
  font-size: 16px;
  letter-spacing: .04em;
}
.rx-news-page__list h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .03em;
}
.rx-news-page__list b {
  justify-self: end;
  color: currentColor;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-3px);
}
.rx-news-page__tag {
  display: inline-grid;
  place-items: center;
  min-width: 118px;
  height: 28px;
  padding: 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 0, 89, .62);
  border-radius: 999px;
}
.rx-news-page__empty,
.rx-column-media__empty {
  margin: 34px 0 0;
  padding: 36px 24px;
  color: rgba(64,64,64,.72);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .04em;
  border: 1px solid rgba(64,64,64,.12);
  background: rgba(255,255,255,.68);
}
.rx-news-page__more {
  width: min(100%, 360px);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 36px auto 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid rgba(64,64,64,.42);
  background: #fff;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.rx-news-page__more i {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.rx-news-page__more:hover,
.rx-news-page__more:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}
.rx-news-page__side {
  padding: 30px 24px 22px;
  border: 1px solid rgba(64,64,64,.14);
  background: rgba(255,255,255,.78);
}
.rx-news-page__side h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 22px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,0,89,.32);
}
.rx-news-page__side h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 66px;
  height: 2px;
  background: var(--pink);
}
.rx-news-page__side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rx-news-page__side li {
  border-bottom: 1px solid rgba(64,64,64,.12);
}
.rx-news-page__side li a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  transition: color .25s ease;
}
.rx-news-page__side li a:hover,
.rx-news-page__side li a:focus-visible {
  color: var(--pink);
}
.rx-news-page__side b {
  font-size: 14px;
  font-weight: 400;
}
.rx-news-page__archive-label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.rx-news-page__archive > ul {
  margin: 0 0 14px;
  padding: 0 0 10px 14px;
  border-left: 1px solid rgba(255,0,89,.28);
}
.rx-news-page__archive > ul[hidden] {
  display: none;
}
.rx-news-page__archive > ul li {
  border-bottom: 0;
}
.rx-news-page__archive > ul a {
  min-height: auto;
  padding: 6px 0;
  color: rgba(64,64,64,.76);
  font-size: 13px;
  line-height: 1.7;
}
.rx-news-detail {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 48px 0 100px;
}
.rx-news-detail__head {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(64,64,64,.18);
}
.rx-news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: .04em;
}
.rx-news-detail__updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.rx-news-detail__updated i {
  color: #404040;
  font-size: .95em;
}
.rx-news-detail__head h2 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateX(-72px);
  filter: blur(8px);
  transition:
    opacity 1.2s cubic-bezier(.16, 1, .3, 1),
    transform 1.2s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s cubic-bezier(.16, 1, .3, 1);
}
.rx-news-detail__head h2.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-news-detail__thumbnail {
  width: min(100%, 860px);
  margin: 34px auto 0;
  padding: 12px;
  border: 1px solid rgba(64,64,64,.12);
  background: #fff;
  box-shadow: 16px 18px 42px rgba(30, 42, 60, .08);
}
.rx-news-detail__thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
}
.rx-news-detail__body {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 48px 0 20px;
}
.rx-news-detail__body p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .04em;
}
.rx-news-detail__foot {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.rx-news-detail__foot a {
  width: min(100%, 260px);
  min-height: 54px;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  border: 1px solid rgba(255,0,89,.62);
  background: #fff;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.rx-news-detail__foot a:hover,
.rx-news-detail__foot a:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}
.rx-mission-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: var(--header) 24px 0;
  background:
    linear-gradient(90deg, rgba(32,32,32,.76) 0%, rgba(32,32,32,.58) 46%, rgba(32,32,32,.34) 100%),
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    url("../assets/images/mission-hero.png") center / cover;
  background-size: auto, 4px 4px, cover;
}
.rx-policy-hero,
.rx-lower-hero.rx-mission-hero,
.rx-news-hero,
.rx-column-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: var(--header) 24px 0;
}
.rx-policy-hero div,
.rx-lower-hero.rx-mission-hero div,
.rx-news-hero div,
.rx-column-hero div {
  width: min(100%, var(--max));
  margin: 0 auto;
  transform: translateY(-12px);
}
.rx-policy-hero p,
.rx-lower-hero.rx-mission-hero p,
.rx-news-hero p,
.rx-column-hero p {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
}
.rx-policy-hero h1,
.rx-lower-hero.rx-mission-hero h1,
.rx-news-hero h1,
.rx-column-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .04em;
}
.rx-policy-hero span,
.rx-lower-hero.rx-mission-hero span,
.rx-news-hero span,
.rx-column-hero span {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .08em;
}
.rx-lower-hero.rx-service-hero p,
.rx-lower-hero.rx-support-hero p,
.rx-lower-hero.rx-lesson-hero p,
.rx-lower-hero.rx-recruit-hero p {
  line-height: 1.5;
}
.rx-lower-hero.rx-service-hero h1,
.rx-lower-hero.rx-support-hero h1,
.rx-lower-hero.rx-lesson-hero h1,
.rx-lower-hero.rx-recruit-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.2;
  letter-spacing: .04em;
}
.rx-lower-hero.rx-service-hero span,
.rx-lower-hero.rx-support-hero span,
.rx-lower-hero.rx-lesson-hero span,
.rx-lower-hero.rx-recruit-hero span {
  display: block;
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: .08em;
}
.rx-statement {
  padding: 40px 24px 112px;
}
.rx-statement--mission,
.rx-statement--spaced {
  padding-top: 72px;
}
.rx-statement:nth-of-type(odd) {
  background: var(--paper);
}
.rx-statement__body,
.rx-values {
  width: min(100%, var(--max));
  margin-inline: auto;
}
.rx-statement__body {
  max-width: 920px;
}
.rx-statement__body h3 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.45;
}
.rx-statement--purpose .rx-statement__body h3 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .08em;
}
.rx-statement__body p {
  margin: 0 0 20px;
}
.rx-statement__english {
  color: var(--pink);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .04em;
}
.rx-statement__headline-ja,
.rx-statement__headline-en {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 1.2s cubic-bezier(.16, 1, .3, 1),
    transform 1.2s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s cubic-bezier(.16, 1, .3, 1);
}
.rx-statement__headline-ja {
  transform: translateX(-64px);
}
.rx-statement__headline-en {
  transform: translateX(64px);
  transition-delay: .08s;
}
.rx-statement__headline-ja.is-visible,
.rx-statement__headline-en.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-statement__body--mission {
  margin-bottom: 36px;
  text-align: center;
}
.rx-statement__body--mission h3 {
  margin-bottom: 14px;
}
.rx-mission-showcase {
  position: relative;
  overflow: visible;
  padding: clamp(64px, 7vw, 96px) 24px clamp(72px, 8vw, 108px);
  background: #fff;
}
.rx-mission-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}
.rx-mission-showcase__head {
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 58px);
}
.rx-mission-showcase__head h3 {
  margin: 0 0 26px;
  color: #2f3337;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .08em;
}
.rx-mission-showcase .rx-statement__english {
  margin: 0;
  color: var(--pink);
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
}
.rx-mission-showcase .rx-mission__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 40px);
}
.rx-mission-card {
  position: relative;
  min-height: 318px;
  padding: clamp(34px, 3.2vw, 50px);
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(214, 218, 224, .78);
  border-radius: 8px;
  box-shadow: 11px 14px 26px rgba(35, 43, 54, .09);
  opacity: 0;
  transform: translateY(40px) scale(.985);
  filter: blur(8px);
  transition:
    opacity 1.15s .08s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s .08s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s .08s cubic-bezier(.16, 1, .3, 1);
}
.rx-mission-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.rx-mission-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(34px, 4vw, 58px);
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
}
.rx-mission-card__meta i {
  width: 1px;
  height: 24px;
  background: rgba(64, 64, 64, .18);
}
.rx-mission-card__meta small {
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .05em;
}
.rx-mission-card__icon {
  position: absolute;
  top: 38px;
  right: 48px;
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.rx-mission-card h3 {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 16px;
  color: var(--ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 2.7vw, 36px);
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 1.15s .18s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s .18s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s .18s cubic-bezier(.16, 1, .3, 1);
}
.rx-mission-card__heading-suffix {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.rx-mission-card--technology h3 {
  transform: translateX(-58px);
}
.rx-mission-card--sensibility h3 {
  transform: translateX(58px);
}
.rx-mission-card.is-visible h3 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.rx-mission-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--pink);
}
.rx-mission-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
  transition:
    opacity 1.2s .3s cubic-bezier(.16, 1, .3, 1),
    transform 1.2s .3s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s .3s cubic-bezier(.16, 1, .3, 1);
}
.rx-mission-card.is-visible p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-mission-showcase .rx-mission__lead {
  width: min(100%, 920px);
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: 0;
  color: var(--ink);
  text-align: center;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: .05em;
  background: transparent;
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition:
    opacity 1.15s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s cubic-bezier(.16, 1, .3, 1);
}
.rx-mission-showcase .rx-mission__lead.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.rx-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rx-values article {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}
.rx-values span {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: var(--pink);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .06em;
}
.rx-values span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 1px;
  background: rgba(64,64,64,.22);
}
.rx-values h3 {
  margin: 12px 0 14px;
  color: var(--ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .08em;
}
.rx-values h3,
.rx-values small {
  opacity: 0;
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(.16, 1, .3, 1);
}
.rx-values article:nth-child(odd) h3,
.rx-values article:nth-child(odd) small {
  transform: translateX(-72px);
}
.rx-values article:nth-child(even) h3,
.rx-values article:nth-child(even) small {
  transform: translateX(72px);
}
.rx-values article.is-visible h3,
.rx-values article.is-visible small {
  opacity: 1;
  transform: translateX(0);
}
.rx-values small {
  display: block;
  margin: -4px 0 18px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}
.rx-values p {
  margin: 0;
}

.rx-column-media,
.rx-column-detail {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 56px 0 112px;
}
.rx-column-media__layout,
.rx-column-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}
.rx-column-media__main,
.rx-column-detail__main {
  min-width: 0;
}
.rx-column-media__head {
  margin-bottom: 26px;
}
.rx-column-media__head > p:first-child {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .08em;
}
.rx-column-media__head h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 47px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .02em;
}
.rx-column-media__head h2::first-letter {
  color: var(--pink);
}
.rx-column-media__head--category h2 {
  display: inline-flex;
  align-items: center;
  gap: .28em;
}
.rx-column-media__head--category h2::first-letter,
.rx-column-media__head--tag h2::first-letter {
  color: inherit;
}
.rx-column-media__title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: .76em;
  line-height: 1;
  transform: translateY(.02em);
}
.rx-column-media__title-icon i {
  display: block;
  line-height: 1;
}
.rx-column-media__head > p:last-of-type {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .04em;
}
.rx-column-media__head b {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .06em;
}
.rx-column-media__search {
  margin: 0 0 22px;
}
.rx-column-media__side-search .rx-column-media__search {
  margin-bottom: 0;
}
.rx-column-media__search label {
  position: relative;
  display: block;
}
.rx-column-media__search i {
  position: absolute;
  top: 50%;
  left: 22px;
  color: rgba(64,64,64,.58);
  transform: translateY(-50%);
}
.rx-column-media__search input {
  width: 100%;
  min-height: 54px;
  padding: 0 24px 0 54px;
  border: 1px solid rgba(64,64,64,.16);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  box-shadow: 8px 12px 26px rgba(31, 39, 50, .04);
}
.rx-column-reveal-left,
.rx-column-reveal-right,
.rx-column-reveal-up {
  opacity: 0;
  transition: opacity 1.15s ease, transform 1.15s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform;
}
.rx-column-reveal-left {
  transform: translate3d(-46px, 0, 0);
}
.rx-column-reveal-right {
  transform: translate3d(46px, 0, 0);
}
.rx-column-reveal-up {
  transform: translate3d(0, 36px, 0);
}
.rx-column-reveal-left.is-visible,
.rx-column-reveal-right.is-visible,
.rx-column-reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.rx-column-media__side .rx-column-reveal-right:nth-of-type(2) {
  transition-delay: .08s;
}
.rx-column-media__side .rx-column-reveal-right:nth-of-type(3) {
  transition-delay: .14s;
}
.rx-column-media__side .rx-column-reveal-right:nth-of-type(4) {
  transition-delay: .2s;
}
.rx-column-media__chips,
.rx-column-media__subchips,
.rx-column-media__tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rx-column-media__chips {
  margin-bottom: 52px;
}
.rx-column-media__subchips {
  margin-bottom: 38px;
}
.rx-column-media__subchips + .rx-column-media__grid {
  margin-top: 0;
}
.rx-column-media__chips a,
.rx-column-media__subchips a,
.rx-column-media__tag-cloud a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  background: #fff;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}
.rx-column-media__chips a {
  color: var(--pink);
  border: 1px solid rgba(255, 0, 89, .62);
}
.rx-column-media__subchips a,
.rx-column-media__tag-cloud a {
  color: #404040;
  border: 1px solid rgba(64, 64, 64, .34);
  border-radius: 10px;
}
.rx-column-media__chips a:hover,
.rx-column-media__chips a:focus-visible,
.rx-column-media__chips a.is-active {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}
.rx-column-media__subchips a:hover,
.rx-column-media__subchips a:focus-visible,
.rx-column-media__tag-cloud a:hover,
.rx-column-media__tag-cloud a:focus-visible,
.rx-column-media__tag-cloud a.is-active {
  color: #fff;
  border-color: #404040;
  background: #404040;
}
.rx-column-media__pickup,
.rx-column-media__latest {
  margin-top: 44px;
}
#column-list {
  scroll-margin-top: 140px;
}
.rx-column-media__pickup h2,
.rx-column-media__latest h2,
.rx-column-detail__author h2,
.rx-column-detail__related h2,
.rx-column-detail__toc h2 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
.rx-column-media__pickup h2::before,
.rx-column-media__latest h2::before,
.rx-column-detail__author h2::before,
.rx-column-detail__related h2::before,
.rx-column-detail__toc h2::before {
  content: "";
  position: absolute;
  top: .36em;
  left: 0;
  width: 4px;
  height: 1.3em;
  background: var(--pink);
}
.rx-column-media__count {
  margin: -8px 0 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .04em;
}
.rx-column-media__count strong {
  color: var(--pink);
  font-size: 1.35em;
  font-weight: 700;
}
.rx-column-media__pickup-shell {
  position: relative;
  width: calc(100% - 112px);
  margin-inline: auto;
  overflow: visible;
}
.rx-column-media__pickup-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, calc((100% - 44px) / 3), 360px);
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  margin: -10px -16px -6px;
  padding: 14px 16px 34px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 16px;
  scrollbar-width: none;
}
.rx-column-media__pickup-slider::-webkit-scrollbar {
  display: none;
}
.rx-column-media__pickup-slider .rx-column-card {
  scroll-snap-align: start;
  box-shadow: 10px 14px 28px rgba(25, 35, 45, .06);
}
.rx-column-media__pickup-slider .rx-column-card:hover,
.rx-column-media__pickup-slider .rx-column-card:focus-within {
  box-shadow: 12px 18px 34px rgba(255,0,89,.08);
}
.rx-column-media__pickup-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  padding: 0 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 8px 12px 26px rgba(25,35,45,.08);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, opacity .25s ease;
}
.rx-column-media__pickup-button:hover,
.rx-column-media__pickup-button:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}
.rx-column-media__pickup-button:disabled {
  opacity: .34;
  cursor: default;
  pointer-events: none;
}
.rx-column-media__pickup-button--prev {
  left: -78px;
}
.rx-column-media__pickup-button--next {
  right: -78px;
}
.rx-column-media__pickup-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.rx-column-media__pickup-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(64,64,64,.24);
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background-color .25s ease;
}
.rx-column-media__pickup-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--pink);
}
.rx-column-media__grid,
.rx-column-detail__related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.rx-column-card {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  box-shadow: 10px 14px 28px rgba(25, 35, 45, .06);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.rx-column-card:hover,
.rx-column-card:focus-within {
  border-color: rgba(255,0,89,.28);
  box-shadow: 12px 18px 34px rgba(255,0,89,.08);
  transform: translateY(-3px);
}
.rx-column-card__image,
.rx-column-card__content {
  color: inherit;
  text-decoration: none;
}
.rx-column-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.rx-column-card__body {
  display: grid;
  align-content: start;
  padding: 18px;
}
.rx-column-card__meta {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin: 0 0 14px;
}
.rx-column-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  max-width: 100%;
  border: 1px solid rgba(255, 0, 89, .62);
  border-radius: 999px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  background: #fff;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.rx-column-card:hover .rx-column-chip,
.rx-column-card:focus-within .rx-column-chip {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}
.rx-column-card time {
  color: rgba(64,64,64,.62);
  font-size: 12px;
  letter-spacing: .04em;
}
.rx-column-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}
.rx-column-card p:not(.rx-column-card__meta) {
  margin: 0 0 16px;
  color: rgba(64,64,64,.8);
  font-size: 13px;
  line-height: 1.9;
}
.rx-column-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.rx-column-card li {
  display: inline-flex;
}
.rx-column-card li a,
.rx-column-media__tag-cloud span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(64, 64, 64, .34);
  border-radius: 8px;
  color: #404040;
  font-size: 11px;
  background: #fff;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.rx-column-card li a:hover,
.rx-column-card li a:focus-visible {
  color: #fff;
  border-color: #404040;
  background: #404040;
}
.rx-column-media__side,
.rx-column-detail__side {
  display: grid;
  gap: 24px;
}
.rx-column-sidebar-banner {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
  transition: opacity .25s ease;
}
.rx-column-sidebar-banner:hover,
.rx-column-sidebar-banner:focus-visible {
  opacity: .86;
}
.rx-column-sidebar-banner img {
  display: block;
  width: calc(100% + 4px);
  max-width: none;
  height: auto;
  margin: -2px;
  border-radius: inherit;
}
.rx-column-media__side section,
.rx-column-detail__side section {
  padding: 12px 24px 24px;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 14px 28px rgba(25, 35, 45, .05);
}
.rx-column-media__side h2,
.rx-column-detail__side h2 {
  margin: 0 0 18px;
  padding-left: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.rx-column-media__category-side {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rx-column-media__category-side a {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
.rx-column-media__category-side a:hover,
.rx-column-media__category-side a:focus-visible,
.rx-column-media__category-side a.is-active {
  color: var(--pink);
}
.rx-column-media__popular {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular;
}
.rx-column-media__popular a {
  display: grid;
  grid-template-columns: 26px 1fr 12px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}
.rx-column-media__popular span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  background: var(--pink);
}
.rx-column-detail {
  padding-top: 42px;
}
.rx-column-detail__head {
  padding-bottom: 30px;
}
.rx-column-detail__tax {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.rx-column-detail__tax a:not(.rx-column-chip) {
  color: #404040;
  font-size: 13px;
}
.rx-column-detail__head h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .03em;
}
.rx-column-detail__head > p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}
.rx-column-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 8px;
  color: rgba(64,64,64,.78);
  font-size: 13px;
  background: #fff;
}
.rx-column-detail__meta a,
.rx-column-detail__meta span,
.rx-column-detail__meta time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rx-column-detail__meta a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
.rx-column-detail__meta a:hover {
  color: var(--pink);
}
.rx-column-detail__meta i {
  color: var(--pink);
}
.rx-column-detail__eyecatch {
  margin: 0;
}
.rx-column-detail__eyecatch img {
  width: 100%;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 10px 18px 36px rgba(25, 35, 45, .08);
}
.rx-column-detail__toc {
  margin: 36px 0;
  padding: 26px 28px;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 14px 28px rgba(25, 35, 45, .04);
}
.rx-column-detail__toc h2 {
  margin-bottom: 16px;
  font-size: 20px;
}
.rx-column-detail__toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rx-column-detail__toc a {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.8;
}
.rx-column-detail__toc-level-3 {
  padding-left: 16px;
}
.rx-column-detail__body {
  color: var(--ink);
}
.rx-column-detail__body h2 {
  margin: 54px 0 18px;
  padding-left: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
}
.rx-column-detail__body h3 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}
.rx-column-detail__body p,
.rx-column-detail__body li {
  color: var(--ink);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: .04em;
}
.rx-column-detail__body p {
  margin: 0 0 18px;
}
.rx-column-detail__body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 1.2em;
}
.rx-column-detail__author {
  margin-top: 56px;
  scroll-margin-top: calc(var(--header) + 36px);
}
.rx-column-detail__author-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 10px 14px 28px rgba(25, 35, 45, .055);
}
.rx-column-detail__author-card figure {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(64,64,64,.12);
  border-radius: 50%;
  background: #fff;
}
.rx-column-detail__author-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.rx-column-detail__author-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.rx-column-detail__author-role {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}
.rx-column-detail__author-description {
  margin: 0 0 14px;
  color: rgba(64,64,64,.82);
  font-size: 14px;
  line-height: 1.9;
}
.rx-column-detail__author-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rx-column-detail__author-card li {
  display: inline-flex;
}
.rx-column-detail__author-card li a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(64, 64, 64, .34);
  border-radius: 8px;
  color: #404040;
  font-size: 12px;
  line-height: 1;
  background: #fff;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.rx-column-detail__author-card li a:hover,
.rx-column-detail__author-card li a:focus-visible {
  color: #fff;
  border-color: #404040;
  background: #404040;
}
.rx-column-detail__related {
  margin-top: 58px;
}
.rx-column-detail__related > div {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rx-column-detail__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.rx-column-detail__nav a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(64,64,64,.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  background: #fff;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.rx-column-detail__nav a:hover,
.rx-column-detail__nav a:focus-visible {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}
@media (max-width: 1180px) {
  .rx-header {
    gap: 20px;
  }
  .rx-header__nav {
    gap: 22px;
  }
  .rx-header__cta {
    padding: 0 14px;
  }
  .rx-header__cta--contract {
    min-width: 136px;
  }
}

@media (max-width: 980px) {
  .rx-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
    padding-inline: 20px;
  }
  .rx-header__brand { width: 170px; }
  .rx-header__menu {
    display: block;
    grid-column: 3;
  }
  .rx-header__actions {
    grid-column: 4;
  }
  .rx-header__cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
  .rx-header__cta--contract {
    display: none;
  }
  .rx-header__nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    padding: 16px 24px 24px;
    background: #fff;
  }
  .rx-header.open .rx-header__nav { display: grid; }
  .rx-header__nav a { padding: 13px 0; color: var(--ink); border-bottom: 1px solid var(--line); }
  .rx-news__arrow,
  .rx-column-media__pickup-button { display: none; }
  .rx-mission__cards, .rx-message, .rx-office, .rx-office--reverse { grid-template-columns: 1fr; }
  .rx-mission-showcase__head h3,
  .rx-statement--purpose .rx-statement__body h3 {
    font-size: clamp(38px, 8vw, 48px);
  }
  .rx-mission-card {
    min-height: auto;
  }
  .rx-contact-methods {
    grid-template-columns: 1fr;
  }
  .rx-contact-method {
    min-height: auto;
  }
  .rx-message {
    min-height: 620px;
    padding: 70px 40px;
    border-radius: 0;
    background: #3d4144;
  }
  .rx-message::before {
    background-position: 64% center;
  }
  .rx-message::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.62) 56%, rgba(0,0,0,.3) 100%),
      radial-gradient(circle at 28% 50%, rgba(255,255,255,.1), transparent 36%),
      radial-gradient(rgba(255,255,255,.24) 1px, transparent 1px);
    background-size: auto, auto, 4px 4px;
  }
  .rx-office--reverse .rx-office__map { order: 0; }
  .rx-why { padding: 34px 20px; }
  .rx-column__category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rx-column__list { grid-auto-columns: calc((100% - 28px) / 2); }
  .rx-profile div { grid-template-columns: 1fr; }
  .rx-policy-service-card__head {
    display: grid;
    gap: 4px;
  }
  .rx-policy-service-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .rx-certification {
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 0;
  }
  .rx-certification figure {
    padding-right: 18px;
  }
  .rx-certification img {
    max-width: 88px;
    max-height: 64px;
  }
  .rx-service-panel,
  .rx-service-panel--reverse {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .rx-service-panel--reverse .rx-service-panel__text,
  .rx-service-panel--reverse .rx-service-panel__image {
    order: initial;
  }
  .rx-service-panel__text {
    min-height: auto;
    display: contents;
  }
  .rx-service-panel__head {
    order: 1;
    gap: 28px;
    margin-bottom: 0;
    padding: 92px 24px 18px;
  }
  .rx-service-panel small {
    margin-left: 0;
    margin-bottom: 6px;
    font-size: 15px;
  }
  .rx-service-panel h4 {
    order: 2;
    margin: 0;
    padding: 0 24px 28px;
  }
  .rx-service-panel__text > p:not(.rx-service-panel__number) {
    order: 4;
    max-width: none;
    margin: 0 0 22px;
    padding: 0 24px;
  }
  .rx-service-panel ul {
    order: 5;
    max-width: none;
    margin: 0 24px 30px;
  }
  .rx-service-panel a {
    order: 6;
    margin: 0 24px 36px;
  }
  .rx-service-panel__image,
  .rx-service-panel--reverse .rx-service-panel__image {
    order: 3;
    position: static;
    height: auto;
    min-height: 360px;
    padding: 0 24px 32px;
  }
  .rx-service-panel__image img,
  .rx-service-panel--reverse .rx-service-panel__image img {
    border-radius: 0;
  }
  #service-01 .rx-service-panel__image img {
    border-radius: 28px 0 0 0;
  }
  #service-02 .rx-service-panel__image img {
    border-radius: 0 28px 0 0;
  }
  #service-03 .rx-service-panel__image img {
    border-radius: 0 0 0 28px;
  }
  #service-04 .rx-service-panel__image img {
    border-radius: 0 0 28px 0;
  }
  .rx-service-panel--electricity .rx-service-panel__head {
    padding-top: 184px;
  }
  #service-02 .rx-service-panel__head,
  #service-03 .rx-service-panel__head {
    padding-top: 184px;
  }
  .rx-service-panel--electricity .rx-service-panel__image,
  .rx-service-panel--electricity.rx-service-panel--extra-bottom .rx-service-panel__image,
  #service-02 .rx-service-panel__image,
  #service-03 .rx-service-panel__image {
    padding-bottom: 16px;
  }
  .rx-service-panel--electricity a,
  #service-02 a,
  #service-03 a {
    margin-bottom: 18px;
  }
  .rx-footer__main {
    width: min(calc(100% - 48px), 1700px);
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 0 34px;
  }
  .rx-footer__about,
  .rx-footer__nav,
  .rx-footer__policy {
    grid-column: auto;
    grid-row: auto;
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
    transform: translateY(46px);
  }
  .rx-footer__nav,
  .rx-footer__policy {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .rx-footer__policy {
    margin-top: 34px;
  }
  .rx-footer__logo-link img {
    width: 220px;
  }
  .rx-footer__about > p {
    max-width: 520px;
  }
  .rx-footer__social {
    margin-top: 0;
    padding-top: 30px;
  }
  .rx-footer__title {
    margin-bottom: 24px;
  }
  .rx-footer__list--sitemap {
    column-gap: 34px;
  }
  .rx-footer__policy .rx-footer__list {
    max-width: none;
  }
  .rx-footer__policy .rx-footer__list a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .rx-footer__bottom {
    width: min(calc(100% - 48px), 1700px);
    display: grid;
    justify-items: center;
    padding: 18px 0 26px;
  }
  .rx-policy__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .rx-policy__nav {
    position: static;
    gap: 12px;
  }
  .rx-policy__nav a {
    grid-template-columns: 46px max-content;
    font-size: 16px;
  }
  .rx-policy__nav a.is-active::before {
    width: 46px;
  }
  .rx-policy__nav a::after {
    left: 29px;
    width: 17px;
  }
  .rx-news-page {
    padding: 42px 24px 78px;
  }
  .rx-news-page__layout {
    grid-template-columns: 1fr;
  }
  .rx-news-page__side {
    width: min(100%, 520px);
  }
  .rx-values { grid-template-columns: 1fr; }
  .rx-why__deco-text {
    right: 0;
    width: min(132vw, 620px);
    height: min(132vw, 620px);
    color: rgba(64,64,64,.045);
  }
  .rx-cookie-popup {
    right: 24px;
    width: min(calc(100vw - 40px), 720px);
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 34px 28px 32px;
  }
  .rx-cookie-popup__icon svg {
    width: 64px;
  }
  .rx-cookie-popup__accept {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 58px;
  }
}

@media (max-width: 720px) {
  .rx-why-graphic {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 28px 0;
    background: #fff;
  }
  .rx-why-graphic__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .rx-why-strategy {
    padding: 12px 0 8px;
  }
  .rx-why-strategy::before,
  .rx-why-strategy::after,
  .rx-why-strategy h3::before,
  .rx-why-strategy h3::after {
    display: none;
  }
  .rx-why-strategy h3 {
    font-size: 28px;
    white-space: normal;
  }
  .rx-why-strategy p {
    font-size: 14px;
  }
  .rx-why-graphic::before,
  .rx-why-graphic__arrow {
    display: none;
  }
  .rx-why-graphic__headline,
  .rx-why-graphic__center,
  .rx-why-graphic__copy {
    position: static;
    width: 100%;
    transform: none;
  }
  .rx-why-graphic__headline {
    margin-bottom: 12px;
  }
  .rx-why-graphic__headline h3 {
    font-size: clamp(30px, 8vw, 44px);
  }
  .rx-why-graphic__center {
    width: 190px;
    height: 190px;
    margin: 0 auto 10px;
  }
  .rx-why-node,
  .rx-why-node--electricity,
  .rx-why-node--telecom,
  .rx-why-node--it,
  .rx-why-node--arts {
    width: 100%;
    min-height: 188px;
    margin-right: 0;
    margin-left: 0;
    padding: 22px;
  }
  .rx-why-node__label span {
    margin-bottom: 8px;
    font-size: 26px;
  }
  .rx-why-node__label strong {
    font-size: 17px;
  }
  .rx-why-graphic__copy {
    margin-top: 18px;
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  :root { --header: 72px; }
  .rx-header { gap: 12px; padding-inline: 14px; }
  .rx-header__brand { width: 140px; }
  .rx-header__cta { min-height: 42px; padding: 0 12px; font-size: 14px; }
  .rx-header__cta-icon {
    width: 16px;
    height: 16px;
  }
  .rx-header__cta-icon::before {
    height: 11px;
  }
  .rx-header__cta-icon::after {
    width: 11px;
  }
  .rx-footer__main,
  .rx-footer__bottom {
    width: min(calc(100% - 36px), 1700px);
  }
  .rx-footer__main {
    padding: 42px 0 30px;
  }
  .rx-footer__logo-link {
    margin-bottom: 22px;
  }
  .rx-footer__logo-link img {
    width: 196px;
  }
  .rx-footer__about > p {
    font-size: 13px;
    line-height: 1.9;
  }
  .rx-footer__about > p br {
    display: none;
  }
  .rx-footer__nav,
  .rx-footer__policy {
    margin-top: 28px;
    padding-top: 28px;
  }
  .rx-footer__list--sitemap {
    grid-template-columns: 1fr;
  }
  .rx-footer__list--sitemap::before {
    display: none;
  }
  .rx-footer__list a {
    min-height: 38px;
    font-size: 14px;
    white-space: normal;
  }
  .rx-footer__sns {
    gap: 14px;
  }
  .rx-footer__sns a {
    width: 44px;
    height: 44px;
  }
  .rx-footer__sns img {
    width: 19px;
    height: 19px;
  }
  .rx-footer__bottom p {
    font-size: 12px;
    line-height: 1.7;
  }
  .rx-section { padding: 78px 20px; }
  .rx-cookie-popup {
    right: 20px;
    top: auto;
    bottom: 104px;
    left: 20px;
    right: 20px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 14px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 28px rgba(64,64,64,.18);
  }
  .rx-cookie-popup__icon {
    display: none;
  }
  .rx-cookie-popup__body h2 {
    margin-bottom: 5px;
    padding-right: 24px;
    font-size: 14px;
    line-height: 1.45;
  }
  .rx-cookie-popup__body p {
    font-size: 10px;
    line-height: 1.7;
  }
  .rx-cookie-popup__body a {
    gap: 5px;
  }
  .rx-cookie-popup__body a span {
    text-underline-offset: 4px;
  }
  .rx-cookie-popup__accept {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    border-radius: 7px;
  }
  .rx-cookie-popup__close {
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
  .rx-message {
    min-height: 680px;
    padding: 56px 32px;
  }
  .rx-message > div:not(.rx-message__title) {
    max-width: 100%;
  }
  .rx-message__title h3 {
    font-size: 26px;
  }
  .rx-message h3 {
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: .04em;
  }
  .rx-message__headline span {
    max-width: 100%;
    white-space: normal;
  }
  .rx-message__headline span:nth-child(2) {
    width: 100%;
  }
  .rx-message.is-visible .rx-message__headline span:nth-child(2) {
    animation: none;
    border-right-color: transparent;
  }
  .rx-message p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .04em;
  }
  .rx-contact-guide {
    margin-bottom: 44px;
  }
  .rx-contact-guide__lead {
    font-size: 16px;
    text-align: left;
  }
  .rx-contact-hours {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
  }
  .rx-contact-hours span {
    padding-right: 0;
    border-right: 0;
  }
  .rx-contact-hours small {
    font-size: 14px;
  }
  .rx-contact-method {
    padding: 28px 20px;
  }
  .rx-line-button,
  .rx-contact-form-button {
    font-size: 16px;
  }
  .rx-contact-guide__note {
    font-size: 14px;
  }
  .rx-certification {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 0;
  }
  .rx-certification figure {
    min-height: 62px;
    padding-right: 14px;
    padding-bottom: 0;
    border-right: 1px solid rgba(64,64,64,.18);
    border-bottom: 0;
  }
  .rx-certification img {
    max-width: 72px;
    max-height: 56px;
  }
  .rx-certification h3 {
    font-size: 17px;
  }
  .rx-certification p {
    font-size: 14px;
  }
  .rx-hero__copy { width: calc(100% - 30px); }
  .rx-hero img { object-position: 8% center; }
  .rx-hero h1 { font-size: 38px; }
  .rx-mission-showcase {
    padding: 52px 20px 68px;
  }
  .rx-mission-showcase__head {
    margin-bottom: 28px;
  }
  .rx-mission-showcase__head h3 {
    margin-bottom: 18px;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.5;
    letter-spacing: .05em;
  }
  .rx-statement--purpose .rx-statement__body h3 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.5;
    letter-spacing: .05em;
  }
  .rx-mobile-line {
    display: block;
  }
  .rx-mission-showcase .rx-statement__english {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .04em;
  }
  .rx-mission-showcase .rx-mission__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .rx-mission-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta icon"
      "title title"
      "body body";
    align-items: start;
    row-gap: 14px;
    min-height: auto;
    padding: 24px 22px 28px;
    box-shadow: 8px 10px 20px rgba(35, 43, 54, .08);
  }
  .rx-mission-card__meta {
    grid-area: meta;
    flex-wrap: wrap;
    gap: 14px;
    row-gap: 8px;
    margin-bottom: 0;
  }
  .rx-mission-card__meta,
  .rx-mission-card__meta small {
    font-size: 16px;
  }
  .rx-mission-card__icon {
    position: static;
    grid-area: icon;
    justify-self: end;
    width: 54px;
    height: 54px;
    margin-left: 14px;
  }
  .rx-mission-card h3 {
    grid-area: title;
    margin-bottom: 22px;
    padding-bottom: 14px;
    font-size: 30px;
    line-height: 1.45;
  }
  .rx-mission-card p {
    grid-area: body;
    font-size: 15px;
    line-height: 2.05;
  }
  .rx-mission-card p br {
    display: none;
  }
  .rx-mission-showcase .rx-mission__lead {
    text-align: left;
    font-size: 15px;
    line-height: 2;
  }
  .rx-news__slider { grid-auto-columns: 88%; }
  .rx-column > .rx-column__lead {
    padding-left: 0;
    font-size: 16px;
    line-height: 1.9;
  }
  .rx-column__categories {
    padding-bottom: 24px;
  }
  .rx-column__category-head {
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
  }
  .rx-column__category-toggle {
    display: grid;
  }
  .rx-column__categories.is-collapsible .rx-column__category-list {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .42s cubic-bezier(.16, 1, .3, 1), opacity .28s ease, margin-top .28s ease;
  }
  .rx-column__categories.is-collapsible.is-open .rx-column__category-list {
    max-height: 620px;
    margin-top: 18px;
    opacity: 1;
  }
  .rx-column__category-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rx-column__category-list a {
    justify-content: flex-start;
    min-height: 48px;
  }
  .rx-column__list { grid-auto-columns: 88%; }
  .rx-news-page {
    padding: 32px 20px 64px;
  }
  .rx-breadcrumb {
    width: min(calc(100% - 48px), var(--max));
    padding-top: 28px;
  }
  .rx-breadcrumb ol {
    align-items: flex-start;
  }
  .rx-breadcrumb li {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: .06em;
  }
  .rx-breadcrumb li + li::before {
    width: 7px;
    height: 7px;
    margin: 0 14px;
    transform: rotate(45deg);
    flex: 0 0 auto;
  }
  .rx-breadcrumb li[aria-current="page"] {
    display: flex;
    width: 100%;
    margin-top: 2px;
    min-width: 0;
  }
  .rx-breadcrumb li[aria-current="page"]::before {
    margin-left: 0;
  }
  .rx-breadcrumb li[aria-current="page"] span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .rx-news-page__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rx-news-page__tabs a {
    min-height: 50px;
    font-size: 14px;
  }
  .rx-news-page__tools,
  .rx-news-page__controls {
    display: grid;
    justify-items: start;
  }
  .rx-news-page__tools {
    gap: 18px;
    padding: 24px 0 20px;
    scroll-margin-top: 110px;
  }
  .rx-news-page__controls {
    width: 100%;
    gap: 16px;
  }
  .rx-news-page__controls select {
    width: 180px;
  }
  .rx-news-page__pager {
    margin-top: 28px;
  }
  .rx-news-page__pager-pc {
    display: none;
  }
  .rx-news-page__pager-sp {
    display: grid;
    grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
    align-items: center;
    gap: 14px;
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 10px 12px;
    border: 1px solid rgba(64,64,64,.14);
    border-radius: 6px;
    background: #fff;
  }
  .rx-news-page__pager-mobile-button {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(64,64,64,.14);
    border-radius: 5px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    background: #fff;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .18s ease, box-shadow .18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .rx-news-page__pager-mobile-button:hover,
  .rx-news-page__pager-mobile-button:focus-visible {
    color: #fff;
    border-color: var(--pink);
    background: var(--pink);
  }
  .rx-news-page__pager-mobile-button:active {
    color: #fff;
    border-color: var(--pink);
    background: var(--pink);
    box-shadow: 0 8px 16px rgba(255, 0, 89, .16);
    transform: translateY(2px) scale(.98);
  }
  .rx-news-page__pager-state {
    min-width: 68px;
    color: var(--ink);
    font-size: 15px;
    letter-spacing: .06em;
  }
  .rx-news-page__pager-state strong {
    color: var(--pink);
    font-size: 22px;
    font-weight: 500;
  }
  .rx-news-page__list a {
    grid-template-columns: 1fr 34px;
    gap: 8px 16px;
    min-height: auto;
    padding: 18px 0;
  }
  .rx-news-page__list time,
  .rx-news-page__tag,
  .rx-news-page__list h3 {
    grid-column: 1;
  }
  .rx-news-page__list b {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }
  .rx-news-page__list h3 {
    font-size: 15px;
  }
  .rx-news-page__tag {
    justify-self: start;
  }
  .rx-news-page__side {
    padding: 24px 20px 20px;
  }
  .rx-why-graphic {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 28px 0;
    background: #fff;
  }
  .rx-why-graphic__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .rx-why-graphic::before,
  .rx-why-graphic__arrow {
    display: none;
  }
  .rx-why-graphic__headline,
  .rx-why-graphic__center,
  .rx-why-graphic__copy {
    position: static;
    width: 100%;
    transform: none;
  }
  .rx-why-graphic__headline {
    margin-bottom: 12px;
  }
  .rx-why-graphic__headline h3 {
    font-size: clamp(30px, 8vw, 44px);
  }
  .rx-why-graphic__center {
    width: 190px;
    height: 190px;
    margin: 0 auto 10px;
  }
  .rx-why-node,
  .rx-why-node--electricity,
  .rx-why-node--telecom,
  .rx-why-node--it,
  .rx-why-node--arts {
    width: 100%;
    min-height: 188px;
    margin-right: 0;
    margin-left: 0;
    padding: 22px;
  }
  .rx-why-node__label span {
    margin-bottom: 8px;
    font-size: 26px;
  }
  .rx-why-node__label strong {
    font-size: 17px;
  }
  .rx-why-graphic__copy {
    margin-top: 18px;
    font-size: 18px;
  }
  .rx-mission article, .rx-mission__lead, .rx-form { padding: 24px; }
  .rx-service-panel h4 { margin-bottom: 28px; }
  .rx-service-panel__text > p:not(.rx-service-panel__number) { font-size: 15px; line-height: 1.9; }
  .rx-form__step[data-step="2"]:not(.hidden) {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    column-gap: 0;
    width: 100%;
    min-width: 0;
  }
  .rx-form__step[data-step="2"] .rx-confirm,
  .rx-form__step[data-step="2"] .rx-form__status,
  .rx-form__step[data-step="2"] .rx-form__buttons {
    width: 100%;
    min-width: 0;
  }
  .rx-confirm {
    padding: 22px 18px;
  }
  .rx-form__verify {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    justify-items: stretch;
    width: 100%;
    min-width: 0;
  }
  .rx-form .rx-form__verify .rx-check {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    min-height: auto;
    padding: 16px;
  }
  .rx-form__verify .g-recaptcha {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }
  .rx-form__verify > .rx-error,
  .rx-form__verify > .rx-error--privacy,
  .rx-form__verify > .rx-error--recaptcha {
    grid-column: 1;
  }
  .rx-confirm dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .rx-phone, .rx-form__buttons { grid-template-columns: 1fr; }
  .rx-form [data-next].rx-button {
    width: min(100%, 180px);
    min-width: 160px;
    min-height: 58px;
    gap: 10px;
    white-space: nowrap !important;
  }
  .rx-lesson-popup {
    right: 18px;
    bottom: 94px;
    width: 150px;
    min-width: 0;
  }
  .rx-office__body { padding: 28px; }
  .rx-office__map iframe { min-height: 300px; }
}

@media (max-width: 980px) {
  .rx-column-media,
  .rx-column-detail {
    width: min(calc(100% - 48px), var(--max));
    padding: 42px 0 84px;
  }
  .rx-column-media__layout,
  .rx-column-detail__layout {
    grid-template-columns: 1fr;
  }
  .rx-column-media__side,
  .rx-column-detail__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rx-column-media__grid,
  .rx-column-detail__related > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rx-column-media__pickup-slider {
    grid-auto-columns: clamp(260px, calc((100% - 24px) / 2), 360px);
  }
}

@media (max-width: 560px) {
  .rx-column-media,
  .rx-column-detail {
    width: min(calc(100% - 40px), var(--max));
    padding: 34px 0 66px;
  }
  .rx-column-media__head h2 {
    font-size: 30px;
  }
  .rx-column-media__chips {
    gap: 9px;
    margin-bottom: 34px;
  }
  .rx-column-media .rx-column-reveal-left,
  .rx-column-media .rx-column-reveal-right,
  .rx-column-media .rx-column-reveal-up,
  .rx-column-detail .rx-column-reveal-left,
  .rx-column-detail .rx-column-reveal-right,
  .rx-column-detail .rx-column-reveal-up {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .rx-column-media__chips a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }
  .rx-column-media__grid,
  .rx-column-detail__related > div,
  .rx-column-media__side,
  .rx-column-detail__side,
  .rx-column-detail__toc ol,
  .rx-column-detail__nav {
    grid-template-columns: 1fr;
  }
  .rx-column-media__pickup-slider {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 86%);
    overflow-x: auto;
  }
  .rx-column-card__body {
    padding: 16px;
  }
  .rx-column-detail__meta {
    display: grid;
  }
  .rx-column-detail__eyecatch img {
    aspect-ratio: 16 / 10;
  }
  .rx-column-detail__toc,
  .rx-column-detail__author-card,
  .rx-column-media__side section,
  .rx-column-detail__side section {
    padding: 12px 20px 20px;
  }
  .rx-column-detail__author-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .rx-column-detail__author-card figure {
    width: 96px;
    height: 96px;
  }
  .rx-column-detail__author-card ul {
    justify-content: center;
  }
  .rx-column-detail__body h2 {
    font-size: 24px;
  }
  .rx-column-detail__body p,
  .rx-column-detail__body li {
    font-size: 15px;
  }
}
