/* ============================================================
   LAWYER ROBOT PAGE
   ============================================================ */
.subpage-main.lr-subpage {
  padding: 0;
  background: transparent;
}

/* ── ラベル共通 ── */
.lr-label { margin-bottom: 24px; }
/* ============================================================
   LEAD
   ============================================================ */
.lr-lead {
  background: #fff;
  padding: 100px 0 80px;
}
.lr-lead__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.lr-lead__catch {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: 1.5px;
  color: #111;
  margin-bottom: 32px;
}
.lr-lead__catch em {
  color: #ea9801;
  font-style: normal;
}
.lr-lead__txt {
  font-size: 0.95rem;
  line-height: 2.2;
  color: #555;
  letter-spacing: 0.5px;
  max-width: 820px;
}
/* ============================================================
   FEATURES（ステップ）
   ============================================================ */
.lr-features {
  background: #111;
  padding: 100px 0;
}
.lr-features__inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.lr-features__head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 72px;
}
.lr-step {
  display: flex;
  align-items: center;
  gap: 0 80px;
  margin-bottom: 80px;
}
.lr-step:last-child { margin-bottom: 0; }
.lr-step--rev { flex-direction: row-reverse; }
.lr-step__body { flex: 1 1 auto; }
.lr-step__num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: rgba(234,152,1,0.18);
  margin-bottom: 8px;
}
.lr-step__ttl {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}
.lr-step__txt {
  font-size: 0.92rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.6);
}

/* 写真エリア */
.lr-step__visual { flex: 0 0 480px; }
.lr-step__photo-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.lr-step__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lr-step:hover .lr-step__photo-wrap img { transform: scale(1.04); }
.lr-step__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  border-left: 3px solid #ea9801;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 0 10px;
  border-radius: 0 4px 4px 0;
}
.lr-step__badge i {
  color: #ea9801;
  font-size: 0.9rem;
}
.lr-step__badge span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px;
}
/* ============================================================
   FUNCTIONS（機能紹介）
   ============================================================ */
.lr-func {
  background: #f7f7f7;
  padding: 100px 0;
}
.lr-func__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.lr-func__head {
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 56px;
}
.lr-func__lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: #555;
  margin-bottom: 48px;
  max-width: 780px;
}
.lr-func__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lr-func__card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #ea9801;
  padding: 32px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lr-func__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.lr-func__card-icon {
  font-size: 1.6rem;
  color: #ea9801;
  margin-bottom: 16px;
}
.lr-func__card-ttl {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.lr-func__card-txt {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #666;
}
/* ============================================================
   SUPERVISOR（特別監修者）
   ============================================================ */
.lr-supervisor {
  background: linear-gradient(135deg, #0a0a0a 0%, #181818 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.lr-supervisor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.lr-supervisor__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lr-supervisor__head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 72px;
}
.lr-supervisor__layout {
  display: flex;
  gap: 0 80px;
  align-items: flex-start;
}
.lr-supervisor__photo-col { flex: 0 0 240px; }
.lr-supervisor__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}
.lr-supervisor__namecard {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  padding: 16px 20px;
  border-radius: 0 0 4px 4px;
  margin-top: -4px;
}
.lr-supervisor__role {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  color: #ea9801;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.lr-supervisor__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  display: block;
}
.lr-supervisor__org {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.lr-supervisor__content { flex: 1 1 auto; }
.lr-supervisor__intro {
  font-size: 0.92rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}
/* タイムライン */
.lr-timeline {
  position: relative;
  padding-left: 24px;
  margin-bottom: 48px;
}
.lr-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(234,152,1,0.3);
}
.lr-timeline__item {
  position: relative;
  margin-bottom: 18px;
}
.lr-timeline__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #ea9801;
  border-radius: 50%;
}
.lr-timeline__year {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #ea9801;
  margin-bottom: 3px;
}
.lr-timeline__txt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
/* 著書 */
.lr-books__ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.lr-books__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.lr-books__list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.lr-books__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: #ea9801;
}

/* ============================================================
   LAWYER ROBOT — モバイル（max-width: 767px）
   ============================================================ */
@media (max-width: 767px) {
  .lr-lead { padding: 56px 0 48px; }
.lr-lead__catch {
  font-size: clamp(1.2rem, 5.5vw, 1.6rem);
  margin-bottom: 20px;
}
  .lr-lead__txt { font-size: 0.88rem; }
  .lr-features { padding: 56px 0; }
  .lr-features__head { margin-bottom: 40px; }
.lr-step {
  flex-direction: column !important;
  gap: 28px 0;
  margin-bottom: 56px;
}
.lr-step__visual {
  width: 100%;
  flex: none;
}
  .lr-step__num { font-size: 3.5rem; }
  .lr-step__ttl { font-size: clamp(1.05rem, 5vw, 1.3rem); }
  .lr-step__txt { font-size: 0.88rem; }
.lr-step__badge {
  bottom: 12px;
  left: 12px;
  padding: 10px 14px;
}
  .lr-step__badge span { font-size: 0.72rem; }
  .lr-func { padding: 56px 0; }
.lr-func__grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
  .lr-func__card { padding: 24px 20px; }
  .lr-supervisor { padding: 64px 0 80px; }
  .lr-supervisor__head { margin-bottom: 40px; }
.lr-supervisor__layout {
  flex-direction: column;
  gap: 32px 0;
}
.lr-supervisor__photo-col {
  width: 100%;
  max-width: 280px;
}
  .lr-timeline__year { font-size: 0.68rem; }
  .lr-timeline__txt { font-size: 0.82rem; }
}
/* ============================================================
   ROBOT LAWYER ページ固有スタイル
============================================================ */
:root {
  --rl-orange:      #ea9801;
  --rl-orange-lt:   rgba(234,152,1,0.10);
  --rl-orange-line: rgba(234,152,1,0.30);
  --rl-dark:        #111;
  --rl-gray:        #f4f4f4;
  --rl-border:      #e8e8e8;
  --rl-text:        #1a1a1a;
  --rl-sub:         #555;
  --rl-max:         1100px;
}
.subpage-main.rl-page {
  padding: 0;
  background: transparent;
}
/* ============================================================
   INTRO HERO
============================================================ */
.rl-intro {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--rl-dark);
  overflow: hidden;
}
.rl-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234,152,1,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,152,1,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.rl-intro::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,152,1,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.rl-intro__inner {
  position: relative;
  z-index: 2;
  max-width: var(--rl-max);
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0 60px;
  align-items: center;
  padding: 80px 0;
}
.rl-intro__actions {
  display: flex;
  align-items: center;
  gap: 0 24px;
  flex-wrap: wrap;
}
.rl-intro__tag {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--rl-orange);
  text-transform: uppercase;
  border-left: 2px solid var(--rl-orange);
  padding-left: 12px;
  margin-bottom: 18px;
}
.rl-intro__ttl {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.rl-intro__ttl em {
  font-style: normal;
  color: var(--rl-orange);
}
.rl-intro__txt {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}
.rl-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  background: var(--rl-orange);
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.rl-intro__btn:hover {
  background: #d08000;
  transform: translateY(-2px);
}
.rl-intro__video-link {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  padding: 0;
}
.rl-intro__video-link:hover { color: #fff; }
.rl-intro__video-link-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.rl-intro__video-link-play i {
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  margin-left: 2px;
}
.rl-intro__video-link:hover .rl-intro__video-link-play {
  background: var(--rl-orange);
  border-color: var(--rl-orange);
}
.rl-intro__video-link:hover .rl-intro__video-link-play i { color: #fff; }
/* ============================================================
   動画サムネイル（INTRO右側）
============================================================ */
.rl-video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}
.rl-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.82);
}
.rl-video-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(0.65);
}
.rl-video-thumb__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.rl-video-thumb:hover .rl-video-thumb__overlay { background: rgba(0,0,0,0.3); }
.rl-video-thumb__play {
  position: relative;
  width: 68px;
  height: 68px;
  background: rgba(234,152,1,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.rl-video-thumb__play i {
  color: #fff;
  font-size: 1.3rem;
  margin-left: 4px;
}
.rl-video-thumb:hover .rl-video-thumb__play {
  background: var(--rl-orange);
  transform: scale(1.1);
}
.rl-video-thumb__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(234,152,1,0.5);
  animation: rlRing 2.4s ease-out infinite;
}
.rl-video-thumb__ring2 {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(234,152,1,0.22);
  animation: rlRing 2.4s ease-out 0.7s infinite;
}
@keyframes rlRing {
0% {
  transform: scale(0.85);
  opacity: 1;
}
100% {
  transform: scale(1.35);
  opacity: 0;
}
}
.rl-video-thumb__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
/* 下部：タイトルバー */
.rl-video-thumb__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 32px 20px 16px;
}
.rl-video-thumb__bar-ttl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.rl-video-thumb__bar-sub {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  text-transform: uppercase;
}
/* ============================================================
   VIDEO MODAL
============================================================ */
.rl-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.rl-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.rl-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.rl-modal__box {
  position: relative;
  width: 92%;
  max-width: 960px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.rl-modal.is-open .rl-modal__box { transform: scale(1); }
.rl-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.rl-modal__close:hover {
  background: var(--rl-orange);
  border-color: var(--rl-orange);
}
.rl-modal__frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.rl-modal__frame video {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   共通パーツ
============================================================ */
.rl-sec { padding: 100px 0; }
.rl-inner {
  max-width: var(--rl-max);
  width: 90%;
  margin: 0 auto;
}
.rl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  background: rgba(234,152,1,0.09);
  border: 1px solid rgba(234,152,1,0.28);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
}
.rl-pill i {
  color: var(--rl-orange);
  font-size: 0.52rem;
}
.rl-pill-en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 3.5px;
  color: var(--rl-orange);
  text-transform: uppercase;
}
.rl-pill-ja {
  font-size: 0.66rem;
  color: #b87700;
}
.rl-pill--light {
  background: rgba(234,152,1,0.08);
  border-color: rgba(234,152,1,0.22);
}
.rl-pill--light .rl-pill-ja { color: rgba(234,152,1,0.65); }
.rl-h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  font-weight: 900;
  line-height: 1.55;
  color: var(--rl-text);
  margin-top: 12px;
}
.rl-h2--w { color: #fff; }
.rl-h2 em, .rl-h2--w em {
  font-style: normal;
  color: var(--rl-orange);
}
/* ============================================================
   BANNER（RC_HP-Header_jp.png 背景）
============================================================ */
.rl-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(5, 8, 18, 0.82) 0%,
      rgba(10, 15, 30, 0.65) 50%,
      rgba(5, 8, 18, 0.78) 100%
    ),
    url('../../img/RC_HP-Header_jp.png') center 30% / cover no-repeat;
  padding: 110px 0;
}
/* 左端にオレンジのグロー */
.rl-banner::after {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,152,1,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.rl-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--rl-max);
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.rl-banner__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--rl-orange);
  border: 1px solid rgba(234,152,1,0.35);
  display: inline-block;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.rl-banner__ttl {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.rl-banner__ttl em {
  font-style: normal;
  color: var(--rl-orange);
}
.rl-banner__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.rl-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  background: var(--rl-orange);
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 44px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(234,152,1,0.35);
}
.rl-banner__btn:hover {
  background: #d08000;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(234,152,1,0.5);
}

/* ============================================================
   VISION
============================================================ */
.rl-vision { background: var(--rl-gray); }
.rl-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
  margin-top: 48px;
}
.rl-vision-txt {
  font-size: 0.93rem;
  color: var(--rl-sub);
  line-height: 2;
  margin: 16px 0 28px;
}
.rl-vision-box {
  background: #fff;
  border: 1px solid var(--rl-border);
  border-left: 3px solid var(--rl-orange);
  padding: 26px 30px;
  border-radius: 0 6px 6px 0;
}
.rl-vision-box__ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 4px;
  color: var(--rl-orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rl-vision-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.rl-vision-box li {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
  font-size: 0.86rem;
  color: var(--rl-sub);
  line-height: 1.65;
}
.rl-vision-box li i {
  color: var(--rl-orange);
  font-size: 0.56rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.rl-vision-box__note {
  font-size: 0.77rem;
  color: #999;
  line-height: 1.7;
  border-top: 1px solid var(--rl-border);
  padding-top: 14px;
  margin-top: 14px;
}
.rl-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rl-stat {
  background: #fff;
  border: 1px solid var(--rl-border);
  border-radius: 10px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 0 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.rl-stat:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.rl-stat__num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rl-orange);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}
.rl-stat__num sup {
  font-size: 0.85rem;
  vertical-align: super;
}
.rl-stat__ttl {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--rl-text);
  margin-bottom: 3px;
}
.rl-stat__sub {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.6;
}

/* ============================================================
   FEATURES
============================================================ */
.rl-features { background: #fff; }
.rl-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}
.rl-feat-card {
  background: #fafafa;
  border: 1px solid var(--rl-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.rl-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.rl-feat-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.rl-feat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.rl-feat-card:hover .rl-feat-card__img img { transform: scale(1.07); }
.rl-feat-card__body { padding: 26px 26px 30px; }
.rl-feat-card__no {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 4px;
  color: var(--rl-orange);
  display: block;
  margin-bottom: 12px;
}
.rl-feat-card__icon {
  width: 42px;
  height: 42px;
  background: rgba(234,152,1,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.rl-feat-card__icon i {
  color: var(--rl-orange);
  font-size: 0.95rem;
}
.rl-feat-card__ttl {
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--rl-text);
  line-height: 1.5;
  margin-bottom: 10px;
}
.rl-feat-card__txt {
  font-size: 0.83rem;
  color: var(--rl-sub);
  line-height: 1.9;
}
.rl-feat-card__soon {
  display: inline-block;
  margin-top: 14px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: var(--rl-orange);
  padding: 4px 12px;
  border-radius: 100px;
}
/* ============================================================
   PHASE（白背景・高視認性）
============================================================ */
.rl-phase {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rl-phase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rl-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--rl-border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
  pointer-events: none;
}
.rl-phase__inner {
  max-width: var(--rl-max);
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* カードグリッド */
.rl-phase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.rl-phase-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rl-phase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}

/* 上部カラーバー */
.rl-phase-card__bar {
  height: 4px;
}
.rl-phase-card--active .rl-phase-card__bar { background: var(--rl-orange); }
.rl-phase-card--mid   .rl-phase-card__bar { background: rgba(234,152,1,0.45); }
.rl-phase-card--future .rl-phase-card__bar { background: #ddd; }
/* カード本体 */
.rl-phase-card__body {
  padding: 36px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rl-phase-card--active .rl-phase-card__body {
  background: #fff;
  border: 1px solid rgba(234,152,1,0.3);
  border-top: none;
}
.rl-phase-card--mid .rl-phase-card__body {
  background: #fafafa;
  border: 1px solid var(--rl-border);
  border-top: none;
}
.rl-phase-card--future .rl-phase-card__body {
  background: #f5f5f5;
  border: 1px solid var(--rl-border);
  border-top: none;
}
/* アイコン */
.rl-phase-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.rl-phase-card--active .rl-phase-card__icon { background: rgba(234,152,1,0.12); }
.rl-phase-card--mid   .rl-phase-card__icon { background: rgba(234,152,1,0.08); }
.rl-phase-card--future .rl-phase-card__icon { background: #eee; }
.rl-phase-card--active  .rl-phase-card__icon i {
  color: var(--rl-orange);
  font-size: 1.4rem;
}
.rl-phase-card--mid     .rl-phase-card__icon i {
  color: rgba(234,152,1,0.7);
  font-size: 1.4rem;
}
.rl-phase-card--future  .rl-phase-card__icon i {
  color: #aaa;
  font-size: 1.4rem;
}
/* フェーズラベル */
.rl-phase-card__phase {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.rl-phase-card--active  .rl-phase-card__phase { color: var(--rl-orange); }
.rl-phase-card--mid     .rl-phase-card__phase { color: rgba(234,152,1,0.8); }
.rl-phase-card--future  .rl-phase-card__phase { color: #aaa; }
/* タイトル */
.rl-phase-card__ttl {
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
}
.rl-phase-card--active  .rl-phase-card__ttl {
  font-size: 1.2rem;
  color: var(--rl-text);
}
.rl-phase-card--mid     .rl-phase-card__ttl {
  font-size: 1.1rem;
  color: var(--rl-text);
}
.rl-phase-card--future  .rl-phase-card__ttl {
  font-size: 1.05rem;
  color: #999;
}
/* 説明文 */
.rl-phase-card__txt {
  font-size: 0.86rem;
  line-height: 1.9;
  flex: 1;
}
.rl-phase-card--active  .rl-phase-card__txt { color: var(--rl-sub); }
.rl-phase-card--mid     .rl-phase-card__txt { color: #777; }
.rl-phase-card--future  .rl-phase-card__txt { color: #aaa; }
/* ステータスバッジ */
.rl-phase-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0 7px;
  margin-top: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
}
.rl-phase-card--active .rl-phase-card__badge {
  background: var(--rl-orange);
  color: #fff;
}
.rl-phase-card--mid .rl-phase-card__badge {
  background: rgba(234,152,1,0.1);
  color: rgba(234,152,1,0.9);
  border: 1px solid rgba(234,152,1,0.3);
}
.rl-phase-card--future .rl-phase-card__badge {
  background: #eee;
  color: #aaa;
  border: 1px solid #ddd;
}
.rl-phase-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.rl-phase-card--active .rl-phase-card__badge-dot {
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
0%, 100% {
  opacity: 1;
  transform: scale(1);
}
50% {
  opacity: 0.3;
  transform: scale(0.6);
}
}
/* 番号（右上）*/
.rl-phase-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.rl-phase-card--active  .rl-phase-card__num { color: rgba(234,152,1,0.1); }
.rl-phase-card--mid     .rl-phase-card__num { color: rgba(234,152,1,0.06); }
.rl-phase-card--future  .rl-phase-card__num { color: rgba(0,0,0,0.04); }
/* 下部キャプション */
.rl-phase-caption {
  margin-top: 48px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #aaa;
  padding-top: 28px;
  border-top: 1px solid var(--rl-border);
}
/* ============================================================
   HOW TO USE（グレー背景・高視認性）
============================================================ */
.rl-howto {
  background: var(--rl-gray);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rl-howto__inner {
  max-width: var(--rl-max);
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.rl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
/* ステップ間の接続線 */
.rl-steps::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg,
    var(--rl-orange) 0%,
    rgba(234,152,1,0.3) 100%);
  z-index: 0;
}
.rl-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* 番号バッジ */
.rl-step__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  border: 2px solid var(--rl-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.rl-step:nth-child(1) .rl-step__badge {
  background: var(--rl-orange);
  border-color: var(--rl-orange);
  box-shadow: 0 4px 24px rgba(234,152,1,0.35);
}
.rl-step:nth-child(2) .rl-step__badge {
  border-color: rgba(234,152,1,0.5);
}
.rl-step:nth-child(3) .rl-step__badge {
  border-color: rgba(234,152,1,0.3);
}
.rl-step:hover .rl-step__badge { box-shadow: 0 6px 28px rgba(234,152,1,0.3); }
.rl-step__badge-num {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.rl-step:nth-child(1) .rl-step__badge-num { color: #fff; }
.rl-step:nth-child(2) .rl-step__badge-num { color: var(--rl-orange); }
.rl-step:nth-child(3) .rl-step__badge-num { color: rgba(234,152,1,0.7); }
/* カード本体 */
.rl-step__card {
  margin-top: 24px;
  padding: 32px 24px 36px;
  background: #fff;
  border: 1px solid var(--rl-border);
  border-radius: 16px;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.rl-step:hover .rl-step__card {
  border-color: rgba(234,152,1,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.rl-step:nth-child(1) .rl-step__card {
  border-color: rgba(234,152,1,0.25);
}
/* アイコン */
.rl-step__icon {
  width: 48px;
  height: 48px;
  background: rgba(234,152,1,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.rl-step__icon i {
  color: var(--rl-orange);
  font-size: 1rem;
}
.rl-step__no {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 4px;
  color: var(--rl-orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.rl-step__ttl {
  font-weight: 900;
  font-size: 1rem;
  color: var(--rl-text);
  line-height: 1.55;
  margin-bottom: 12px;
}
.rl-step__txt {
  font-size: 0.84rem;
  color: var(--rl-sub);
  line-height: 1.9;
}
.rl-step__txt strong {
  color: var(--rl-orange);
  font-weight: 700;
}
.rl-howto-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--rl-orange);
  font-weight: 700;
}
/* ============================================================
   TRUST（全面リデザイン）
============================================================ */
.rl-trust {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--rl-orange);
}
.rl-trust__inner {
  max-width: var(--rl-max);
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.rl-trust-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.rl-trust-item {
  display: grid;
  grid-template-columns: 220px 1px 1fr;
  gap: 0 40px;
  align-items: center;
  background: var(--rl-gray);
  border: 1px solid var(--rl-border);
  border-radius: 16px;
  padding: 40px 44px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.rl-trust-item:hover {
  background: #fff;
}
.rl-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--rl-orange);
  border-radius: 2px 0 0 2px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.rl-trust-item:hover::before { transform: scaleY(1); }
.rl-trust-item:hover {
  background: #fff;
  transform: translateX(6px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  border-color: rgba(234,152,1,0.3);
}
/* 左：番号＋アイコン */
.rl-trust-item__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.rl-trust-item__no {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--rl-orange);
  text-transform: uppercase;
}
.rl-trust-item__icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(234,152,1,0.08);
  border: 1px solid rgba(234,152,1,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.rl-trust-item:hover .rl-trust-item__icon-wrap {
  background: rgba(234,152,1,0.14);
  transform: scale(1.05);
}
.rl-trust-item__icon-wrap i {
  color: var(--rl-orange);
  font-size: 1.8rem;
}
/* 区切り線 */
.rl-trust-item__divider {
  width: 1px;
  align-self: stretch;
  background: var(--rl-border);
}

/* 右：テキスト */
.rl-trust-item__right {}
.rl-trust-item__ttl {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--rl-text);
  line-height: 1.4;
  margin-bottom: 10px;
}
.rl-trust-item__txt {
  font-size: 0.88rem;
  color: var(--rl-sub);
  line-height: 1.9;
}
.rl-trust-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 0 6px;
  margin-top: 14px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-orange);
  background: rgba(234,152,1,0.08);
  border: 1px solid rgba(234,152,1,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}
.rl-trust-item__tag i { font-size: 0.5rem; }
/* ============================================================
   CTA
============================================================ */
.rl-cta {
  background: #111;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.rl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.rl-cta__inner {
  max-width: 640px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.rl-cta__ttl {
  font-weight: 900;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
}
.rl-cta__txt {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.8;
}
.rl-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  background: #ea9801;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 17px 40px;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid #ea9801;
  transition: background 0.3s, color 0.3s;
}
.rl-cta__btn:hover {
  background: transparent;
  color: #ea9801;
}
/* ============================================================
   REVEAL
============================================================ */
.js-rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-rv.is-v {
  opacity: 1;
  transform: translateY(0);
}
.js-rv.d1 { transition-delay: 0.1s; }
.js-rv.d2 { transition-delay: 0.22s; }
.js-rv.d3 { transition-delay: 0.34s; }

/* ============================================================
   SP
============================================================ */
@media (max-width: 767px) {
.rl-intro__inner {
  grid-template-columns: 1fr;
  padding: 52px 0 60px;
}
.rl-video-thumb {
  display: block;
  margin-top: 32px;
}
  .rl-sec { padding: 64px 0; }
.rl-vision-grid {
  grid-template-columns: 1fr;
  gap: 36px 0;
  margin-top: 32px;
}
.rl-feat-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
/* Phase */
  .rl-phase-cards {
  grid-template-columns: 1fr;
  gap: 16px;
}
  .rl-phase-card__num { font-size: 2.5rem; }
/* Steps */
  .rl-steps {
  grid-template-columns: 1fr;
  gap: 16px;
}
  .rl-steps::after { display: none; }
/* Trust */
  .rl-trust-item {
  grid-template-columns: 1fr;
  padding: 28px 24px;
  gap: 20px 0;
}
  .rl-trust-item__divider { display: none; }
.rl-trust-item__left {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}
  .rl-trust-item:hover { transform: translateY(-3px); }
}

