*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}

.rl-body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #191311;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .rl-body, .rl-body p, .rl-body h1, .rl-body h2, .rl-body h3, .rl-body li {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
.rl-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rl-body a {
  text-decoration: none;
}

.rl-body button {
  font-family: inherit;
  border: 0;
  cursor: pointer;
}

.rl-bang {
  font-weight: 900;
  margin-left: 0.05em;
}

.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 354px;
  height: 68px;
  padding: 0 32px;
  border-radius: 50px;
  border: 1.5px solid #fff;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  position: relative;
}
.rl-btn span {
  display: inline-block;
}
.rl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}
.rl-btn:active {
  transform: translateY(0);
}
.rl-btn--pink {
  background: linear-gradient(90deg, #d32953 0%, #ff60b8 100%);
}
.rl-btn--orange {
  background: linear-gradient(90deg, #e87c00 0%, #f39800 100%);
  min-width: 252px;
  height: 48px;
  font-size: 16px;
}
.rl-btn--lg {
  min-width: 400px;
  height: 76px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .rl-btn {
    min-width: 0;
    width: 100%;
    max-width: 36rem;
    height: 6rem;
    font-size: 2rem;
    border-radius: 3rem;
  }
  .rl-btn--orange {
    height: 4.4rem;
    font-size: 1.4rem;
    max-width: 24rem;
  }
  .rl-btn--lg {
    height: 6.4rem;
    font-size: 1.8rem;
  }
}

.rl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rl-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .rl-header__inner {
    padding: 1.2rem 2rem;
  }
}
.rl-header__logo img {
  width: 100px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .rl-header__logo img {
    width: 8rem;
    height: 3rem;
  }
}
.rl-header__cta {
  background: linear-gradient(90deg, #d32953 0%, #ff60b8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  height: 50px;
  padding: 0 26px;
  border-radius: 25px;
  border: 1.5px solid #fff;
  box-shadow: 0 4px 10px rgba(211, 41, 83, 0.3);
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.rl-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(211, 41, 83, 0.38);
}
@media screen and (max-width: 768px) {
  .rl-header__cta {
    height: 4rem;
    font-size: 1.5rem;
    padding: 0 1.6rem;
    border-radius: 2rem;
  }
}

.rl-main {
  padding-top: 82px;
}
@media screen and (max-width: 768px) {
  .rl-main {
    padding-top: 6.4rem;
  }
}

.rl-hero {
  position: relative;
  padding: 10px 40px 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .rl-hero {
    padding: 1rem 1.6rem 2.4rem;
  }
}
.rl-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background-image: url("../../image/roulette-lp/kv-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .rl-hero::before {
    height: 55%;
  }
}
.rl-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rl-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.rl-hero__copy {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .rl-hero__copy {
    display: contents;
  }
}
.rl-hero__copy-img {
  margin: 0;
  width: 100%;
}
.rl-hero__copy-img img {
  width: 100%;
  max-width: 750px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .rl-hero__copy-img {
    order: 1;
  }
  .rl-hero__copy-img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .rl-hero__list-wrap {
    order: 4;
    width: 100vw;
    margin: 0.8rem -1.6rem 0;
    padding: 0.4rem 0 1.6rem;
    overflow: hidden;
  }
}
.rl-hero__list {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .rl-hero__list {
    margin-top: 0;
    gap: 1.2rem;
    justify-content: flex-start;
  }
  .rl-hero__list.is-marquee {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: rl-hero-marquee 18s linear infinite;
            animation: rl-hero-marquee 18s linear infinite;
    will-change: transform;
  }
}
@-webkit-keyframes rl-hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-61rem, 0, 0);
  }
}
@keyframes rl-hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-61rem, 0, 0);
  }
}
.rl-hero__item {
  flex: 1;
  max-width: 135px;
}
.rl-hero__item--lg {
  max-width: 150px;
}
@media screen and (max-width: 768px) {
  .rl-hero__item {
    flex: 0 0 auto;
    width: 11rem;
    max-width: none;
    min-width: 0;
  }
  .rl-hero__item--lg {
    max-width: none;
    width: 11rem;
  }
}
.rl-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .rl-hero__visual {
    order: 2;
    width: 65%;
  }
}
.rl-hero__visual-img {
  width: 100%;
  max-width: 440px !important;
  height: auto;
}
@media screen and (max-width: 768px) {
  .rl-hero__visual-img {
    max-width: 100% !important;
  }
}
.rl-hero__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: #f5e929;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(15deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.rl-hero__badge span {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.4;
  color: #191311;
}
@media screen and (max-width: 768px) {
  .rl-hero__badge {
    width: 12rem;
    height: 12rem;
  }
  .rl-hero__badge span {
    font-size: 1.3rem;
  }
}
.rl-hero__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .rl-hero__cta {
    order: 3;
    margin-top: 0.8rem;
    width: 90%;
  }
}

.rl-reasons {
  background: #f5e929;
  padding: 36px 24px;
}
@media screen and (max-width: 768px) {
  .rl-reasons {
    padding: 2.4rem 1.6rem;
  }
}
.rl-reasons__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rl-reasons__list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.rl-reasons__item {
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 16px;
  min-height: 98px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-left: 6px solid currentColor;
}
.rl-reasons__item--pink {
  color: #d32953;
}
.rl-reasons__item--green {
  color: #519743;
}
.rl-reasons__item--blue {
  color: #123577;
}
@media screen and (max-width: 768px) {
  .rl-reasons__item {
    gap: 2rem;
    padding: 1.6rem 3.2rem;
    min-height: 0;
    border-radius: 0.8rem;
  }
}
.rl-reasons__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .rl-reasons__icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.rl-reasons__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rl-reasons__title {
  font-size: 18px;
  font-weight: 800;
  color: currentColor;
  margin: 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .rl-reasons__title {
    font-size: 1.8rem;
  }
}
.rl-reasons__text {
  font-size: 13px;
  color: #191311;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .rl-reasons__text {
    font-size: 1.4rem;
  }
}

.rl-problems {
  background: #f0f0f0;
  padding: 56px 24px 72px;
}
@media screen and (max-width: 768px) {
  .rl-problems {
    padding: 4rem 1.6rem 4.8rem;
  }
}
.rl-problems__title {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  color: #191311;
  margin: 0 0 32px;
}
@media screen and (max-width: 768px) {
  .rl-problems__title {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
  }
}
.rl-problems__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .rl-problems__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .rl-problems__list {
    gap: 1.2rem;
  }
}
.rl-problems__item {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #191311;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .rl-problems__item {
    min-height: 0;
    padding: 1.4rem 1.6rem;
    font-size: 1.4rem;
    border-radius: 0.8rem;
  }
}
.rl-problems__bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.rl-problems__bridge-text {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  color: #123577;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .rl-problems__bridge-text {
    font-size: 2.4rem;
  }
}
.rl-problems__bridge-icon {
  width: 48px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .rl-problems__bridge-icon {
    width: 4rem;
  }
}

.rl-usecase {
  background: #fff;
  padding: 64px 24px;
}
@media screen and (max-width: 768px) {
  .rl-usecase {
    padding: 4rem 1.6rem;
  }
}
.rl-usecase__title {
  text-align: center;
  font-size: clamp(24px, 2.4vw, 26px);
  font-weight: 900;
  color: #d32953;
  margin: 32px 0 24px;
}
@media screen and (max-width: 768px) {
  .rl-usecase__title {
    font-size: 2rem;
    margin: 2.4rem 0 1.6rem;
  }
}
.rl-usecase__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: #191311;
  margin: 0 auto 56px;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .rl-usecase__lead {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3.2rem;
    text-align: left;
  }
  .rl-usecase__lead br {
    display: none;
  }
}
.rl-usecase__demo {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 56px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rl-usecase__demo {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    justify-items: center;
  }
}
.rl-usecase__wheel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rl-usecase__wheel {
    width: 100%;
    max-width: 26rem;
    gap: 1.6rem;
  }
}
.rl-usecase__cards {
  width: 100%;
}
.rl-usecase__cta {
  position: relative;
  margin-top: 56px;
  padding: 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .rl-usecase__cta {
    margin-top: 3.2rem;
    padding: 5rem 1.6rem;
    gap: 1.2rem;
  }
}
.rl-usecase__cta::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: url("../../image/roulette-lp/kv-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.rl-usecase__cta-headline {
  background: #f5e929;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: #191311;
  margin: 0;
  position: relative;
}
.rl-usecase__cta-headline::before {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 0;
  border-top: 12px solid #f5e929;
  left: 48%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
@media screen and (max-width: 768px) {
  .rl-usecase__cta-headline {
    font-size: 1.6rem;
    padding: 0.4rem 1.6rem;
  }
}

.rl-wheel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.rl-wheel-wrap.is-idle {
  -webkit-animation: rl-wheel-idle 3s ease-in-out infinite;
          animation: rl-wheel-idle 3s ease-in-out infinite;
}

.rl-wheel-canvas {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 30px rgba(211, 41, 83, 0.18);
}

.rl-wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid #d32953;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
  z-index: 2;
}

@-webkit-keyframes rl-wheel-idle {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(2deg);
  }
}

@keyframes rl-wheel-idle {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(2deg);
  }
}
.rl-wheel-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rl-usecase-card {
  background: #e8f3ff;
  border: 2px solid var(--tag-color, #436b93);
  border-radius: 10px;
  padding: 32px;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card {
    padding: 2.4rem;
    border-radius: 1rem;
  }
}
.rl-usecase-card--active {
  display: block;
}
.rl-usecase-card__tag {
  display: inline-block;
  background: var(--tag-color, #436b93);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card__tag {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.6rem;
  }
}
.rl-usecase-card__body {
  display: grid;
  grid-template-columns: 24rem 1fr;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card__body {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    justify-items: center;
  }
}
.rl-usecase-card__img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card__img {
    width: 50%;
  }
}
.rl-usecase-card__heading {
  font-size: 20px;
  font-weight: 700;
  color: #191311;
  margin: 0 0 12px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card__heading {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.rl-usecase-card__text {
  font-size: 15px;
  color: #191311;
  line-height: 1.7;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }
}
.rl-usecase-card__missions {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rl-usecase-card__missions li {
  font-size: 14px;
  color: #191311;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .rl-usecase-card__missions li {
    font-size: 1.3rem;
    gap: 0.8rem;
  }
}

.rl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #436b93;
  flex-shrink: 0;
}

.rl-features {
  background: #fff;
  padding: 64px 24px 48px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .rl-features {
    padding: 4rem 1.6rem 2.4rem;
  }
}
.rl-features__lead {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 900;
  color: #123577;
}
@media screen and (max-width: 768px) {
  .rl-features__lead {
    font-size: 2.4rem;
  }
}
.rl-features__container {
  max-width: 1080px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .rl-features__container {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .rl-features__container {
    gap: 1.6rem;
    margin-top: 2rem;
  }
}
.rl-features__img {
  flex: 1;
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .rl-features__img {
    max-width: 24rem;
  }
}
.rl-features__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .rl-features__content {
    align-items: center;
    gap: 2rem;
    width: 100%;
  }
}
.rl-features__title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 900;
  color: #d32953;
}
@media screen and (max-width: 768px) {
  .rl-features__title {
    font-size: 2rem;
  }
}
.rl-features__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .rl-features__list {
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 32rem;
    margin-top: 4rem;
  }
}
.rl-features__item {
  background: #f0f0f0;
  border-radius: 10px;
  padding: 40px 24px 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .rl-features__item {
    padding: 3.2rem 2rem 2.4rem;
    border-radius: 1rem;
  }
}
.rl-features__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .rl-features__icon {
    width: 5rem;
    height: 5rem;
  }
}
.rl-features__heading {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 24px;
  text-align: center;
}
.rl-features__heading--pink {
  color: #d32953;
}
.rl-features__heading--green {
  color: #519743;
}
.rl-features__heading--blue {
  color: #123577;
}
@media screen and (max-width: 768px) {
  .rl-features__heading {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.rl-features__text {
  font-size: 14px;
  color: #191311;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .rl-features__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.rl-cases {
  background: #fff;
  padding: 24px 24px 64px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .rl-cases {
    padding: 2.4rem 3.2rem 6.5rem;
  }
}
.rl-cases__lead {
  font-size: clamp(26px, 2.6vw, 30px);
  font-weight: 900;
  color: #123577;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .rl-cases__lead {
    font-size: 2.4rem;
    margin-bottom: 2.8rem;
  }
}
.rl-cases__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .rl-cases__list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    max-width: 36rem;
  }
}
.rl-cases__item {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rl-ar {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.rl-ar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: url("../../image/roulette-lp/kv-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.rl-ar__wrapper {
  position: relative;
  max-width: 1080px;
  margin: auto;
}
.rl-ar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 50px 40px 180px;
  border-radius: 10px;
  border: 2px solid #123577;
  background-color: #fff;
}
.rl-ar__img {
  position: absolute;
  width: 26%;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.rl-ar__title {
  font-size: clamp(26px, 2.6vw, 30px);
  font-weight: 900;
  color: #123577;
}
@media screen and (max-width: 768px) {
  .rl-ar__title {
    font-size: 2.2rem;
  }
}
.rl-ar__qr {
  width: 150px;
}
.rl-ar__note {
  font-size: clamp(12px, 1.3vw, 14px);
  margin-top: -20px;
}
.rl-ar__text {
  font-size: clamp(12px, 1.3vw, 14px);
  text-align: left;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .rl-ar {
    padding: 4rem 1.5rem;
  }
  .rl-ar__inner {
    gap: 20px;
    padding: 10rem 2rem 4rem 2rem;
  }
  .rl-ar__img {
    position: relative;
    width: 18rem;
    margin: 0 auto -8rem;
    left: unset;
    top: unset;
    transform: translateY(0);
  }
  .rl-ar__title {
    font-size: 2.2rem;
  }
  .rl-ar__note {
    margin-top: -20px;
  }
  .rl-ar__text {
    text-align: left;
    padding: 0 20px;
  }
}

.rl-about {
  position: relative;
  background-color: #2F8CC5;
  background: linear-gradient(0deg, #2F8CC5 0%, #123577 100%);
  padding: 64px 24px 64px;
  color: #191311;
}
@media screen and (max-width: 768px) {
  .rl-about {
    padding: 6.4rem 2.4rem;
  }
}
.rl-about__logo {
  position: absolute;
  width: 35%;
  top: -1%;
  left: -5%;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .rl-about__logo {
    width: 70%;
    top: 0;
    left: -10%;
  }
}
.rl-about__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}
.rl-about__title {
  text-align: center;
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 900;
  color: #f5e929;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .rl-about__title {
    font-size: 2.4rem;
    margin-bottom: 2.8rem;
  }
}
.rl-about__card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 48px 60px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
@media screen and (max-width: 768px) {
  .rl-about__card {
    padding: 3.2rem 2rem;
    border-radius: 1.2rem;
  }
}
.rl-about__text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .rl-about__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }
}
.rl-about__company {
  display: inline-block;
  background: #f5e929;
  color: #191311;
  font-weight: 700;
  margin: 0 0 32px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .rl-about__company {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.rl-about__stats {
  list-style: none;
  margin: 0 0 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rl-about__stats {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.rl-about__stat {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .rl-about__stat {
    padding: 2rem;
    border-radius: 1rem;
  }
}
.rl-about__stat-num {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: #d32953;
  margin: 0 0 4px;
  line-height: 1;
}
.rl-about__stat-num span {
  font-size: 40px;
}
.rl-about__stat-num em {
  font-style: normal;
  font-size: 18px;
  margin-left: 4px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
}
.rl-about__stat-num--text span {
  font-size: 32px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .rl-about__stat-num span {
    font-size: 4rem;
  }
  .rl-about__stat-num em {
    font-size: 1.8rem;
    margin-left: 0.4rem;
  }
  .rl-about__stat-num--text span {
    font-size: 3.2rem;
  }
}
.rl-about__stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #191311;
  margin: 8px 0 6px;
}
@media screen and (max-width: 768px) {
  .rl-about__stat-label {
    font-size: 1.6rem;
    margin: 0.8rem 0 0.6rem;
  }
}
.rl-about__stat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #191311;
  margin: 0;
}
.rl-about__stat-desc small {
  display: block;
  font-size: 10px;
  color: #707070;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .rl-about__stat-desc {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .rl-about__stat-desc small {
    font-size: 1rem;
  }
}
.rl-about__panel {
  background: #faebf1;
  border: 2px solid #d32953;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .rl-about__panel {
    padding: 2.8rem 2rem;
    margin-bottom: 3.2rem;
    border-radius: 1rem;
  }
}
.rl-about__panel-title {
  font-size: 20px;
  font-weight: 800;
  color: #191311;
  margin: 0 0 8px;
}
@media screen and (max-width: 768px) {
  .rl-about__panel-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.rl-about__panel-desc {
  font-size: 14px;
  color: #191311;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .rl-about__panel-desc {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.rl-about__flow {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .rl-about__flow {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
.rl-about__flow li {
  background: #fff;
  border: 1px solid #d32953;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rl-about__flow li + li::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #d32953;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
@media screen and (max-width: 768px) {
  .rl-about__flow li {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
    text-align: center;
    min-width: 17.6rem;
  }
  .rl-about__flow li + li::before {
    left: 50%;
    top: -1.6rem;
    transform: translateX(-50%);
    border-left: 0.8rem solid transparent;
    border-right: 0.8rem solid transparent;
    border-top: 0.8rem solid #d32953;
    border-bottom: 0;
  }
}
.rl-about__panel-foot {
  font-size: 18px;
  font-weight: 700;
  color: #d32953;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .rl-about__panel-foot {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.rl-about__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .rl-about__cta {
    gap: 1.6rem;
  }
}
.rl-about__cta-headline {
  background: #f5e929;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: #191311;
  margin: 0;
  position: relative;
  text-align: center;
}
.rl-about__cta-headline::before {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 0;
  border-top: 12px solid #f5e929;
  left: 48%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
@media screen and (max-width: 768px) {
  .rl-about__cta-headline {
    font-size: 1.6rem;
    padding: 0.4rem 1.6rem;
  }
}

.rl-theme {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-image: url("../../image/roulette-lp/kv-bg.webp");
}
@media screen and (max-width: 768px) {
  .rl-theme {
    padding: 4rem 0 3.2rem;
  }
}
.rl-theme__marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.rl-theme__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-end;
}
.rl-theme__list.is-marquee {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: rl-theme-marquee 30s linear infinite;
          animation: rl-theme-marquee 30s linear infinite;
  will-change: transform;
}
.rl-theme__item {
  width: 7.5%;
  margin-right: 16px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .rl-theme__item {
    width: 12rem;
    margin-right: 1.2rem;
  }
}
.rl-theme__item img {
  width: 100%;
  height: auto;
  display: block;
}
@-webkit-keyframes rl-theme-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes rl-theme-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.rl-theme__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .rl-theme__inner {
    gap: 2.4rem;
  }
}
.rl-theme__title {
  font-size: clamp(26px, 2.8vw, 30px);
  font-weight: 900;
  color: #123577;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .rl-theme__title {
    font-size: 2.4rem;
    padding: 0 1.6rem;
  }
}
.rl-theme__text {
  font-size: 18px;
  color: #191311;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .rl-theme__text {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0 1.6rem;
  }
}

.rl-price {
  background: #fff;
  padding: 64px 24px 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .rl-price {
    padding: 4rem 1.6rem 4.8rem;
  }
}
.rl-price__title {
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 900;
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  .rl-price__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.rl-price__list {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .rl-price__list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.rl-price__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.rl-price__img {
  width: 100%;
  height: auto;
  display: block;
}
.rl-price__note {
  font-size: 14px;
  color: #191311;
  margin: 24px 0 32px;
}
@media screen and (max-width: 768px) {
  .rl-price__note {
    font-size: 1.2rem;
    margin: 1.6rem 0 3.2rem;
  }
}
.rl-price__design {
  background: #fffde2;
  border: 2px solid #f5e929;
  border-radius: 8px;
  padding: 24px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .rl-price__design {
    align-items: flex-start;
    padding: 2rem 1.6rem;
    gap: 1.2rem;
    border-radius: 0.8rem;
  }
}
.rl-price__design-icon {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .rl-price__design-icon {
    width: 5.6rem;
  }
}
.rl-price__design-headline {
  font-size: 24px;
  margin: 0 0 4px;
  line-height: 1.5;
  color: #191311;
  font-weight: 500;
}
.rl-price__design-headline strong {
  color: #d32953;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .rl-price__design-headline {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.rl-price__design-sub {
  font-size: 18px;
  color: #191311;
  margin: 0;
  line-height: 1.6;
}
.rl-price__design-sub strong {
  color: #d32953;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .rl-price__design-sub {
    font-size: 1.4rem;
  }
}

.rl-faq {
  background: #f0f0f0;
  padding: 64px 24px;
}
@media screen and (max-width: 768px) {
  .rl-faq {
    padding: 4rem 1.6rem;
  }
}
.rl-faq__title {
  text-align: center;
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 900;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .rl-faq__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.rl-faq__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 768px) {
  .rl-faq__list {
    gap: 1rem;
  }
}
.rl-faq__item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.rl-faq__item.is-open .rl-faq__answer {
  max-height: 400px;
  padding: 0 16px 16px;
}
.rl-faq__item.is-open .rl-faq__chevron {
  transform: rotate(225deg);
}
.rl-faq__question {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: #fff;
  color: #191311;
  font-family: inherit;
}
.rl-faq__question:hover {
  background: rgba(211, 41, 83, 0.03);
}
@media screen and (max-width: 768px) {
  .rl-faq__question {
    padding: 1.4rem 1.6rem;
    gap: 1rem;
  }
}
.rl-faq__q {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #d32953;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .rl-faq__q {
    font-size: 2rem;
  }
}
.rl-faq__qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .rl-faq__qtext {
    font-size: 1.4rem;
  }
}
.rl-faq__chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid #191311;
  border-bottom: 2px solid #191311;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.rl-faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.rl-faq__answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #191311;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .rl-faq__answer p {
    font-size: 1.3rem;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.rl-form {
  background: #fff;
  padding: 72px 24px 88px;
}
@media screen and (max-width: 768px) {
  .rl-form {
    padding: 4.8rem 1.6rem 5.6rem;
  }
}
.rl-form__title {
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .rl-form__title {
    font-size: 2.4rem;
    margin-bottom: 2.8rem;
  }
}
.rl-form__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rl-form__row {
  display: flex;
  flex-direction: column;
}
.rl-form__label {
  font-size: 15px;
  font-weight: 700;
  color: #191311;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .rl-form__label {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
}
.rl-form__req {
  background: #d32953;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .rl-form__req {
    font-size: 1.1rem;
  }
}
.rl-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #191311;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rl-form__input:focus {
  outline: 0;
  border-color: #d32953;
  box-shadow: 0 0 0 3px rgba(211, 41, 83, 0.12);
}
.rl-form__input--area {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .rl-form__input {
    font-size: 1.6rem;
    padding: 1.2rem 1.6rem;
    border-radius: 0.6rem;
  }
}
.rl-form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .rl-form__choices {
    gap: 1.6rem;
  }
}
.rl-form__choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #191311;
}
.rl-form__choice input {
  accent-color: #d32953;
  width: 18px;
  height: 18px;
}
.rl-form__choice span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .rl-form__choice {
    font-size: 1.4rem;
  }
}
.rl-form__submit {
  margin-top: 16px;
  text-align: center;
}
.rl-form--cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .rl-form--cf7 .wpcf7-form {
    gap: 2rem;
  }
}
.rl-form--cf7 .wpcf7-form > p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rl-form--cf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-acceptance):not(.wpcf7-list-item-label) {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #191311;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rl-form--cf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-acceptance):not(.wpcf7-list-item-label):focus {
  outline: 0;
  border-color: #d32953;
  box-shadow: 0 0 0 3px rgba(211, 41, 83, 0.12);
}
@media screen and (max-width: 768px) {
  .rl-form--cf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-acceptance):not(.wpcf7-list-item-label) {
    font-size: 1.6rem;
    padding: 1.2rem 1.6rem;
    border-radius: 0.6rem;
  }
}
.rl-form--cf7 textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.rl-form--cf7 .wpcf7-checkbox,
.rl-form--cf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.rl-form--cf7 .wpcf7-checkbox .wpcf7-list-item,
.rl-form--cf7 .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.rl-form--cf7 .wpcf7-checkbox .wpcf7-list-item-label,
.rl-form--cf7 .wpcf7-radio .wpcf7-list-item-label {
  padding-left: 2.4rem;
}
.rl-form--cf7 .wpcf7-submit {
  cursor: pointer;
}
.rl-form--cf7 .wpcf7-not-valid-tip {
  color: #d32953;
  font-size: 13px;
  margin-top: 4px;
}
.rl-form--cf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
}
.rl-form .co-form__privacy p {
  display: flex;
  justify-content: center;
}
.rl-form .co-form__privacy label:not(:root)::before {
  top: 1.4rem;
}
.rl-form .co-form__privacy label:not(:root)::after {
  top: 1.2rem;
}
.rl-form .co-form__privacy a {
  display: inline-block;
  text-decoration: underline;
}
.rl-form .co-form__privacy .wpcf7-list-item-label {
  padding-left: 1.2rem;
}
.rl-form .co-form__privacy .wpcf7-form-control-wrap > span {
  padding-right: 0;
}
.rl-form .co-form__privacy .wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
}

.rl-footer {
  background: linear-gradient(0deg, #2F8CC5 0%, #123577 100%);
  color: #fff;
  padding: 48px 24px 30px;
}
@media screen and (max-width: 768px) {
  .rl-footer {
    padding: 4rem 2rem 4rem;
  }
}
.rl-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .rl-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
}
.rl-footer__brand {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .rl-footer__brand {
    flex-direction: column;
    gap: 2.4rem;
    text-align: center;
  }
}
.rl-footer__logo {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .rl-footer__logo {
    width: 12rem;
  }
}
.rl-footer .rl-footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .rl-footer .rl-footer__content {
    align-items: center;
    gap: 0.6rem;
  }
}
.rl-footer__company {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .rl-footer__company {
    font-size: 2rem;
  }
}
.rl-footer__tag {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .rl-footer__tag {
    font-size: 1.4rem;
    line-height: 1.7;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.rl-footer__copy {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .rl-footer__copy {
    font-size: 1.2rem;
    opacity: 0.85;
  }
}

.rl-usecase-card__plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tag-color, #d32953);
  background: #fff;
  border: 1.5px solid var(--tag-color, #d32953);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.rl-usecase-card__plan-btn:hover {
  background: var(--tag-color, #d32953);
  color: #fff;
}

.rl-usecase-card__plan-icon {
  font-size: 14px;
  line-height: 1;
}

.rl-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.rl-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.rl-modal__box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.25s ease;
}
.rl-modal.is-open .rl-modal__box {
  transform: translateY(0);
}
.rl-modal__header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid #dedede;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .rl-modal__header {
    padding: 2rem 1.6rem 1.4rem;
  }
}
.rl-modal__scene {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.rl-modal__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: #191311;
  margin: 0;
  padding-right: 36px;
}
@media screen and (max-width: 768px) {
  .rl-modal__title {
    font-size: 1.6rem;
    padding-right: 3.2rem;
  }
}
.rl-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dedede;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #707070;
  transition: background 0.15s ease;
}
.rl-modal__close:hover {
  background: #f0f0f0;
}
.rl-modal__body {
  padding: 24px 32px 32px;
}
@media screen and (max-width: 768px) {
  .rl-modal__body {
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
.rl-modal__concept {
  font-size: 14px;
  line-height: 1.85;
  color: #707070;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dedede;
}
.rl-modal__section-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 12px;
}
.rl-modal__flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dedede;
  list-style: none;
}
.rl-modal__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rl-modal__flow-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.rl-modal__flow-text {
  font-size: 14px;
  line-height: 1.6;
  color: #191311;
}
.rl-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.rl-modal__tags + .rl-modal__section-title {
  padding-top: 24px;
  border-top: 1px solid #dedede;
}
.rl-modal__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: #f0f0f0;
  color: #191311;
  border: 1px solid #dedede;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}
.rl-modal__cta-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dedede;
  text-align: center;
}
.rl-modal__cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #d32953 0%, #ff60b8 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rl-modal__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(211, 41, 83, 0.32);
}

body.is-modal-open {
  overflow: hidden;
}