	/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #141415;
  --black: #000000;
  --white: #ffffff;
  --red: #9d0000;
  --gold: #9a7c06;
  --gray-bg: #f0f0f0;
  --gray-1: #959595;
  --gray-2: #7b7b7b;
  --gray-3: #cfcfcf;
  --gray-4: #d5d5d5;
  --gray-5: #ebebeb;
  --gray-6: #575757;
  --gray-7: #353535;
  --gray-8: #565656;
  --gray-9: #515151;
  --faq-bg: #e2e2e2;
  --feature-card-bg: #454237;
  --feature-card-stroke: #6f6b5e;
  --faq-btn: #6e6e7b;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
  --font-mincho: 'Zen Old Mincho', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ===== VIDEO BACKGROUND (inside hero) ===== */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* ===== HEADER (1920x130, bg:#000, 2-row layout) ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.header-row-top {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-logo img {
  /*height: 26px;
  width: auto;*/
}
.header-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-group img {
  height: 26px;
  width: auto;
}
.header-group span {
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
}
.header-row-bottom {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 70px;
  gap: 20px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 0.7; }
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-h-contact {
  height: 46px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-h-contact:hover { opacity: 0.7; }
.btn-h-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-h-faq {
  width: 140px;
  height: 46px;
  background: var(--faq-btn);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.btn-h-faq:hover { opacity: 0.85; }
.btn-h-register {
  height: 46px;
  padding: 0 24px;
  background: var(--white);
  color: var(--red);
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-h-register:hover { background: #f5f5f5; }

/* SP Header Actions (hidden on PC) */
.header-sp-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.btn-sp-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.btn-sp-menu {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  cursor: pointer;
  border: none;
}
.btn-sp-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #11161a;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}
.mobile-menu-logo img {
  height: 36px;
  width: auto;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close svg {
  width: 16px;
  height: 16px;
  stroke: #0f1419;
  stroke-width: 2;
}
.mobile-menu-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 0;
}
.mobile-menu-group img {
  height: 22px;
  width: auto;
}
.mobile-menu-group span {
  font-size: 11px;
  color: var(--white);
  line-height: 1.7;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 80px 20px 60px;
}
.mobile-menu-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-align: center;
}
.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
  /*margin-top: auto;*/
}
.mobile-menu-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: var(--white);
  color: #0f1419;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.mobile-menu-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: #262d34;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.mobile-menu-close-text {
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
}

/* ===== HERO (1920x1080) ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 132px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  flex: 1;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-desc {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2;
  color: var(--white);
  margin-bottom: 30px;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-tagline .line {
  width: 130px;
  height: 1px;
  background: var(--gray-1);
  flex-shrink: 0;
}
.hero-tagline span {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-1);
  white-space: nowrap;
}
.hero-title {
  margin: 0 0 40px;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}
.hero-title-line1 {
  display: block;
  font-family: var(--font-mincho);
  font-size: 90px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.hero-title-line2 {
  display: block;
  font-family: var(--font-mincho);
  font-size: 90px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

/* CTA Button with offset shadow */
.btn-cta-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-left: 80px;
}
.btn-cta-shadow {
  position: absolute;
  top: 8px;
  left: 88px;
  width: 300px;
  height: 54px;
  border: 1px solid var(--white);
}
.btn-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 54px;
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  font-weight: 500;
  color: var(--red);
  transition: background 0.2s;
  border: 2px solid #9D0000;
}
.btn-cta:hover { background: #f5f5f5; }

.hero-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-4);
  transition: color 0.2s;
  padding-left: 80px;
}
.hero-login:hover { color: var(--white); }
.hero-login svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero visual - phone with floating coins (single rendered image) */
.hero-visual {
  flex-shrink: 0;
  width: 460px;
  position: relative;
}
.hero-visual img {
  /*width: 100%;
  height: auto;*/
  width: 400px;
  height: 594.137px;
}

/* ===== RATES BAR (inside hero bottom) ===== */
.hero-rates {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 40px 0;*/
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  border: 1px solid transparent;
  background-clip: padding-box;
}
.hero-rates::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  /*background: linear-gradient(135deg, rgba(180,160,100,0.5), rgba(120,100,60,0.15) 40%, rgba(80,70,40,0.05) 60%, rgba(180,160,100,0.3));*/
  pointer-events: none;
}
.hero-rates-inner {
  width: 100%;
  height: 70px;
  /*border-radius: 8px;*/
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-rates-note {
  font-size: 14px;
  color: var(--gray-3);
  text-align: left;
  padding: 10px 24px;
  background: var(--gray-6);
  border-radius: 0 0 8px 8px;
}
.rates-top {
  background: #151515;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px;
  flex-shrink: 1;
  white-space: nowrap;
}
.rates-top-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.rates-top-sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-3);
}
.rates-bottom {
  background: #151515;
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex: 1;
  height: 70px;
  min-width: 0;
  overflow: hidden;
}
.rates-coins {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  min-width: 0;
}
.rates-coin {
  display: inline-flex;
  height: 70px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  position: relative;
  flex: 1;
  min-width: 0;
}
.rates-coin:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: -5px;
  bottom: -5px;
  width: 1px;
  background: var(--gray-7);
}
.rates-coin-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rates-coin-info {
  display: flex;
  flex-direction: column;
}
.rates-coin-symbol {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}
.rates-coin-name {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-2);
  line-height: 1.2;
}
.rates-coin-value {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-left: auto;
  white-space: nowrap;
}
.section-heading {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 8px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 30px;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  letter-spacing: 2.4px;
  line-height: 36px;
  transition: opacity 0.3s;
}
.section-link:hover { opacity: 0.7; }
.section-link-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-link-circle svg { width: 24px; height: 24px; fill: #fff; }
/* ===== BANNER SECTION (670x140, after hero) ===== */
.banner-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}
.banner-link {
  display: block;
  max-width: 670px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  /*border: 1px solid #b3b3b3;*/
  transition: transform 0.2s, box-shadow 0.2s;
}
.banner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ABOUT SECTION (1920x722, gradient bg) ===== */
.about2 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg,
    rgba(80, 70, 40, 0.5) 0%,
    rgba(50, 45, 30, 0.6) 25%,
    rgba(30, 28, 22, 0.8) 50%,
    rgba(20, 20, 21, 0.9) 75%,
    #141415 100%
  );
}
.about-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(154, 124, 6, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(154, 124, 6, 0.1) 0%, transparent 50%);
}
.about-coin-left {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 302px;
  z-index: 1;
  opacity: 0.7;
}
.about-coin-right {
  position: absolute;
  right: -40px;
  bottom: 60px;
  width: 236px;
  z-index: 1;
  opacity: 0.7;
}
.about-inner {
  position: relative;
  z-index: 2;
}
.about-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-header h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.about-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.about-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}
.about-card {
  width: 450px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  min-width: 210px;
}
.about-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.about-arrow-red { color: var(--white); }
.about-arrow-red svg { flex-shrink: 0; }
.about-arrow-gold { color: var(--white); }
.about-arrow-gold svg { flex-shrink: 0; }

/* Section link arrow */
.link-arrow {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.8; }
.link-arrow span {
  font-size: 24px;
  font-weight: 500;
}
.link-arrow-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.link-arrow-circle svg {
  width: 26px;
  height: 26px;
}
.link-arrow:hover .link-arrow-circle {
  background: rgba(255,255,255,0.1);
}

/* Dark variant */
.link-arrow-dark span { color: var(--dark); }
.link-arrow-dark .link-arrow-circle {
  border-color: var(--red);
}
.link-arrow-dark .link-arrow-circle svg path {
  stroke: var(--red);
}
.link-arrow-dark:hover .link-arrow-circle {
  background: rgba(157, 0, 0, 0.05);
}
	
/* ========================================
   SERVICE FEATURES
   ======================================== */
.features {
  padding: 120px 0 60px;
  text-align: center;
}
.features-inner { width: 1200px; margin: 0 auto; }
.features-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
  margin-bottom: 60px;
}
.features-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}
.feature-card {
  width: 380px;
  background: #454237;
  border: 2px solid #6F6B5E;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}
.feature-icon {
  width: 160px; height: 160px;
  background: #7A7668;
  border-radius: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-icon img { width: 100px; height: 100px; object-fit: contain; }
.feature-title {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  letter-spacing: 2.4px;
  line-height: 36px;
  margin-bottom: 20px;
}
.feature-body {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  text-align: left;
}
.features-cta { margin-bottom: 80px; }

/* Features Anima content (prefixed) */
.feat__wrap {
  width: 100%;
}
.feat__header {
  text-align: center;
  margin-bottom: 60px;
}
.feat__title {
	/*font-family: 'Zen Old Mincho', serif;*/
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  letter-spacing: 5.76px;
  line-height: 52px;
  margin-bottom: 20px;
}
.feat__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: #fff;
}
.feat__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}
.feat__card {
  width: 380px;
  background: #454237;
  border: 2px solid #6F6B5E;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}
.feat__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.feat__card-title {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  letter-spacing: 2.4px;
  line-height: 36px;
}
.feat__card-icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.feat__card-body {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  text-align: left;
}
.feat__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 80px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.feat__cta:hover { opacity: 0.7; }
.feat__cta-text {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  line-height: 36px;
}
.feat__cta-arrow {
  width: 52px;
  height: 40px;
}

/* ===== FEATURES + STEPS SECTION (combined dark bg) ===== */
.features-section {
  padding: 100px 0;
  background: rgba(20, 20, 21, 0.85);
}

/* Features header */
.features-header {
  text-align: center;
  margin-bottom: 50px;
}
.features-header h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--white);
}
.features-header p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

/* Features grid - 3 equal cards */
.features-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 80px;
}
.feature-card {
  width: 380px;
  height: 468px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--feature-card-bg);
  border: 1px solid var(--feature-card-stroke);
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-link {
  margin-bottom: 100px;
}

/* Steps box (white rounded container) */
.steps {
  width: 1100px;
  margin: 0 auto 120px;
  background: #676B72;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
}
.step__wrap {
  width: 100%;
}
.step__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
}
.step__badge {
  background: #141415;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
}
.step__badge-text,
.step__heading-sub {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 30px;
}
.step__group {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.step__cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.step__card {
  width: 288px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.step__card-icon {
    display: block;        /* ← 追加 */
    width: 240px;
    height: 240px;
    object-fit: cover;     /* ← contain → cover に変更 */
    flex-shrink: 0;        /* ← 追加 */
}
.step__card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step__card-title {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 30px;
}
.step__card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
}
.step__polygon {
  position: absolute;
  top: 110px;
  width: 30px;
  height: 30px;
}
.step__polygon--1 {
  left: calc(33.333% - 5px);
}
.step__polygon--2 {
  left: calc(66.666% - 25px);
}
.step__cta-wrap {
  display: flex;
  justify-content: center;
}
.step__cta-btn {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  transition: opacity 0.3s;
}
.step__cta-btn:hover { opacity: 0.85; }
.step__cta-label {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 54px;
  background: #fff;
  border: 2px solid #9D0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  color: #9D0000;
  letter-spacing: 2px;
  line-height: 24px;
}
.step__cta-shadow {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 300px;
  height: 54px;
  border: 1px solid #fff;
  z-index: 1;
}
.step__down-arrow {
  display: none;
}

/* ===== NEWS SECTION (1920x910, dark bg) ===== */
/* ========================================
   NEWS
   ======================================== */
/* ========================================
   NEWS
   ======================================== */
.news {
  padding: 120px 0;
  text-align: center;
  background: #333;
}
.news-inner { width: 1000px; margin: 0 auto; }
.news-header {
  margin-bottom: 40px;
}
.news-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  letter-spacing: 8px;
  line-height: 48px;
  margin-bottom: 10px;
}
.news-sub {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  letter-spacing: 3.2px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.news-item {
  display: flex;
  align-items: center;
  padding: 24px 30px;
  gap: 20px;
  background: rgba(255,255,255,0.1);
  transition: opacity 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.news-item:hover { opacity: 0.7; }
.news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.news-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-date {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 20px;
  white-space: nowrap;
}
.news-new {
  background: #9D0000;
  padding: 3px 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 14px;
  flex-shrink: 0;
}
.news-cat {
  border: 1px solid #fff;
  padding: 3px 8px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 14px;
  flex-shrink: 0;
}
.news-body {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news-arrow img { width: 40px; height: 40px; } 
	
/* ===== FAQ SECTION (1920x1473, bg:#e2e2e2 with pattern) ===== */
.faq {
  background: var(--faq-bg);
  background-image: url("<?php echo esc_url(home_url('/')); ?>images/frame-11703.svg");
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.faq-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  /*background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='%23888' stroke-width='0.8'/%3E%3C/svg%3E");*/
  background-image: url("<?php echo esc_url(home_url('/')); ?>images/frame-11703.svg");
  background-size: 80px 80px;
  z-index: 0;
  pointer-events: none;
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.faq-header h2 {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
}
.faq-header p {
  font-size: 16px;
  font-weight: 500;
  color: #0f1419;
}
.faq-list {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 0px;
  position: relative;
  z-index: 1;
}
.faq-item {
  border-bottom: 0.5px dotted var(--dark);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  min-height: 45px;
  user-select: none;
}
.faq-q {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
  width: 36px;
}
.faq-question-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  flex: 1;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  color: var(--dark);
  transition: transform 0.3s;
}
.faq-toggle::before {
  content: '+';
  font-family: var(--font-mincho);
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-toggle::before {
  content: '\2212';
}
.faq-answer {
  display: none;
  padding: 0 0 20px 52px;
  gap: 16px;
}
.faq-item.open .faq-answer {
  display: flex;
}
.faq-a {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
  width: 36px;
}
.faq-answer-text {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
  flex: 1;
}

/* ===== DISCLAIMER (inside FAQ section, corner brackets) ===== */
.disclaimer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.disclaimer-box {
  background: var(--white);
  padding: 40px;
  position: relative;
}
.disclaimer-box::before,
.disclaimer-box::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
}
.disclaimer-box::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
}
.disclaimer-box::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
}
.disclaimer-box h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
}
.disclaimer-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 2;
}
.disclaimer-text p {
    padding-left: 2.5em;
    text-indent: -1em;
    line-height: 1.8;
    margin-bottom: 8px;
}
.disclaimer-text p:last-child {
  margin-bottom: 0;
}
.disclaimer-text strong {
  font-weight: 700;
}

/* ===== FOOTER (1920x420, bg:#000) ===== */
.footer {
  background: rgba(0, 0, 0, 0.7);
  padding: 60px 0 40px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.footer-logo-renkin {
  width: 162px;
  height: auto;
}
.footer-logo-mirai {
  width: 146px;
  height: auto;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.7; }
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.footer-bottom-line {
  width: 100%;
  height: 1px;
  background: var(--gray-8);
  margin-bottom: 28px;
}
.footer-bottom-nav {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-sp-br {
  display: none;
}
.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .header-row-top, .header-row-bottom { padding-left: 30px; padding-right: 30px; }
  .header-nav { gap: 20px; }
  .header-nav a { font-size: 14px; }
  .features-grid { gap: 20px; }
  .feature-card { width: 340px; height: 420px; }
}

@media (max-width: 1200px) {
  .header-group { gap: 8px; }
  .header-group img { height: 22px; }
  .header-group span { font-size: 11px; }
  .header-nav { gap: 16px; }
  .header-nav a { font-size: 13px; }
  .features-grid { flex-wrap: wrap; }
  .feature-card { width: calc(50% - 15px); height: auto; }
  /* Rates bar: 2-row layout */
  .hero-rates-inner {
    flex-direction: column;
    height: auto;
  }
  .rates-top {
    height: 36px;
    width: 100%;
    justify-content: center;
    border-radius: 8px 8px 0 0;
  }
  .rates-bottom {
    height: 70px;
    width: 100%;
  }
  .disclaimer {
	  padding: 0px 10px;
   }
}

@media (max-width: 1200px) {
  .header-row-top { padding-left: 20px; padding-right: 20px; flex-wrap: wrap; }
  .header-row-bottom { display: none; }
  .header-sp-actions { display: flex; }
  .header-group {
    display: flex !important;
    width: 100%;
    order: 3;
    padding: 10px 0 0;
    gap: 10px;
  }
  .header-group span { white-space: normal; font-size: 11px; }
  .hero { padding-top: 120px; min-height: 600px; }
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px 20px;
  }
  .hero-title-line1 { font-size: 52px; line-height: 1.4; }
  .hero-title-line2 { font-size: 52px; line-height: 1.4; margin-top: -28px; }
  .hero-desc { font-size: 16px; }
  .hero-visual { width: 280px; }
  .hero-tagline { justify-content: center; }
  .btn-cta-wrap { margin: 0 auto 20px; display: block; text-align: center; }
  .btn-cta-wrap .btn-cta { margin: 0 auto; }
  .btn-cta-wrap .btn-cta-shadow { margin: 0 auto; left: 50%; transform: translateX(calc(-50% + 8px)); }
  .hero-login { justify-content: center; }
  .hero-rates { padding: 0 20px; }
  .hero-rates-inner { flex-direction: column; height: auto; }
  .rates-top { height: 36px; width: 100%; justify-content: center; border-radius: 8px 8px 0 0; }
  .rates-bottom { height: 70px; width: 100%; }
  .rates-coin { padding: 0 10px; }
  .rates-coin-value { font-size: 22px; }
  .banner-section { padding: 40px 20px; }
  .about-flow { flex-direction: column; gap: 20px; }
  .about-arrows { flex-direction: row; min-width: 0; padding: 0; }
  .about-card { width: 100%; max-width: 400px; height: auto; }
  .about-coin-left, .about-coin-right { display: none; }
  .features-grid { flex-direction: column; align-items: center; }
  .feature-card { width: 100%; max-width: 380px; height: auto; }
  .steps-box { margin: 0 20px; padding: 40px 20px; }
  .steps-grid { flex-direction: column; align-items: center; gap: 20px; }
  .step-arrow { padding: 0; transform: rotate(90deg); width: auto; }
  .news-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-top { flex-direction: column; align-items: center; gap: 30px; }
  .footer-links { align-items: flex-end; align-self: stretch; }
  .footer-sp-br { display: block; }
  .footer-nav-sep { display: none; }
  .container, .container-narrow { padding: 0 20px; }
}

@media (max-width: 1200px) {
  .hero-title-line1 { font-size: 36px; line-height: 1.3; }
  .hero-title-line2 { font-size: 36px; line-height: 1.3; margin-top: -14px; }
  .hero-desc { font-size: 15px; }
  .btn-cta { width: 260px; height: 48px; font-size: 18px; }
  .btn-cta-shadow { width: 260px; height: 48px; }
  .about-header h2,
  .features-header h2,
  .news-header h2,
  .faq-header h2 { font-size: 28px; }
  .step-circle { width: 220px; height: 220px; }
  .step-item { width: 220px; }
  .link-arrow span { font-size: 24px; }
  .link-arrow-circle { width: 48px; height: 48px; }
  .link-arrow-circle svg { width: 20px; height: 20px; }
  .about-header p,
  .features-header p { font-size: 15px; }
  .footer-bottom-nav { font-size: 12px; }
  .news-date { font-size: 16px; }
  .disclaimer-box { padding: 30px 20px; }
  .disclaimer-box::before,
  .disclaimer-box::after { width: 40px; height: 40px; }
  .steps-title-box { font-size: 24px; }
  .steps-title > span:last-child { font-size: 24px; }
  /* Rates bar: grid layout for coins */
  .hero-rates-inner { height: auto; }
  .rates-top { height: 32px; }
  .rates-top-title { font-size: 14px; }
  .rates-top-sub { font-size: 14px; }
  .rates-bottom { height: auto; padding: 8px; }
  .rates-coins {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: 100%;
  }
  .rates-coin {
    flex: 0 0 calc(33.3% - 8px);
    height: auto;
    padding: 8px 4px;
    justify-content: center;
  }
  .rates-coin:not(:last-child)::after { display: none; }
  .rates-coin-icon { width: 22px; height: 22px; }
  .rates-coin-value { font-size: 16px; }
  .rates-coin-symbol { font-size: 11px; }
  .rates-coin-name { font-size: 9px; }
  .hero-rates-note { font-size: 12px; }

	.news-arrow img {display:none; }
  
	.faq-list {
     max-width: 1000px;
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto 60px !important; 
    position: relative;
    z-index: 1;
}
}

.PC {
  position: relative;
  width: 1920px;
  height: 6575px;
  background-color: #141415;
}

.BG {
  position: absolute;
  top: 2082px;
  left: 0;
  width: 1920px;
  height: 2600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 21, 1) 0%,
    rgba(182, 182, 191, 1) 100%
  );
}

.bg {
  width: 1920px;
  height: 1120px;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.footer {
  position: absolute;
  top: 6155px;
  left: 0;
  width: 1920px;
  height: 420px;
  background-color: transparent;
  background-image: url(./img/image.png);
  background-size: cover;
  background-position: 50% 50%;
}

.vertical {
  position: absolute;
  top: 84px;
  left: 664px;
  width: 162px;
  height: 146px;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.frame {
  display: flex;
  flex-direction: column;
  width: 434px;
  align-items: flex-end;
  gap: 20px;
  position: absolute;
  top: 87px;
  left: 1026px;
}



.div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  text-align: right;
  letter-spacing: 0;
  line-height: 21px;
  white-space: nowrap;
}

.s {
  position: relative;
  width: 18px;
  height: 15px;
  overflow: hidden;
  aspect-ratio: 1.24;
}

.element {
  position: relative;
  width: 96.77%;
  height: 95.99%;
  top: 4.01%;
}

.vector {
  position: absolute;
  width: 89.54%;
  height: 103.47%;
  top: -3.47%;
  left: 10.46%;
}

.img {
  position: absolute;
  width: 100%;
  height: 83.34%;
  top: 16.66%;
  left: 0;
}

.view {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-2 {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  gap: 28px;
  position: absolute;
  top: 282px;
  left: 460px;
}

.sen {
  position: relative;
  width: 1000px;
  height: 1px;
  margin-top: -0.5px;
  object-fit: cover;
}

.text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 21px;
}

.p {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.FAQ {
  position: absolute;
  top: 4682px;
  left: 0;
  width: 1920px;
  height: 1473px;
  background-color: #e2e2e2;
}

.frame-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1473px;
}

.frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 120px;
  left: calc(50% - 500px);
}

.frame-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-5 {
  display: flex;
  flex-direction: column;
  width: 132px;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 30px;
}

.text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--bk);
  font-size: 16px;
  letter-spacing: 3.2px;
  line-height: normal;
}

.frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.text-wrapper-5 {
  position: relative;
  width: 27px;
  margin-top: -1px;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: #141415;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0;
  line-height: 45px;
}

.text-wrapper-6 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  white-space: nowrap;
}

.open {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.vertical-2 {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 24px;
  background-color: #141415;
}

.horizontal {
  position: absolute;
  top: calc(50% - 12px);
  left: 11px;
  width: 2px;
  height: 24px;
  background-color: #141415;
  transform: rotate(-90deg);
}

.vector-2 {
  position: relative;
  width: 1000px;
  height: 1px;
  margin-bottom: -0.5px;
  object-fit: cover;
}

.horizontal-2 {
  position: relative;
  width: 2px;
  height: 24px;
  background-color: #141415;
  transform: rotate(-90deg);
}

.frame-8 {
  display: flex;
  flex-direction: column;
  width: 956px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.div-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.text-wrapper-7 {
  position: relative;
  width: 956px;
  margin-top: -1px;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: #141415;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 27.2px;
}

.vector-3 {
  position: relative;
  width: 1000px;
  height: 1px;
  margin-bottom: -0.5px;
  margin-right: -44px;
  object-fit: cover;
}

.view-2 {
  position: absolute;
  top: 972px;
  left: 460px;
  width: 1000px;
  height: 381px;
}

.frame-9 {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  position: absolute;
  top: 0;
  left: calc(50% - 500px);
  background-color: #ffffff;
  box-shadow: 0px 0px 30px #00000014;
}

.frame-10 {
  display: flex;
  flex-direction: column;
  width: 880px;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.div-2 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 400;
  color: #141415;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 28px;
}

.span {
  font-weight: 700;
}

.text-wrapper-9 {
  font-family: "Noto Sans JP-Regular", Helvetica;
}

.rectangle {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 61px;
  height: 61px;
}

.rectangle-2 {
  position: absolute;
  top: 321px;
  right: 0;
  width: 61px;
  height: 61px;
}

.news {
  position: absolute;
  top: 3772px;
  left: 0;
  width: 1920px;
  height: 910px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-11 {
  display: flex;
  margin-top: 60px;
  height: 610px;
  width: 1000px;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.frame-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 30px;
}

.text-wrapper-11 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 3.2px;
  line-height: normal;
}

.frame-13 {
  display: flex;
  flex-direction: column;
  height: 119px;
  align-items: flex-start;
  gap: 10px;
  padding: 29px 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff1a;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.frame-14 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.frame-15 {
  display: flex;
  flex-direction: column;
  width: 840px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.text-wrapper-12 {
  position: relative;
  width: fit-content;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: var(--w);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 14px;
  white-space: nowrap;
}

.frame-16 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--red);
}

.text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Inter-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 12px;
  white-space: nowrap;
}

.frame-17 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid;
  border-color: var(--w);
}

.text-wrapper-14 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 12px;
  white-space: nowrap;
}

.text-wrapper-15 {
  position: relative;
  width: fit-content;
  margin-right: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 14px;
  white-space: nowrap;
}

.arrow-forward {
  border: 3px solid;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  border-color: var(--w);
  aspect-ratio: 1;
}

.vector-4 {
  position: relative;
  width: 26px;
  height: 26px;
  aspect-ratio: 1;
}

.frame-18 {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-16 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 24px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 36px;
  white-space: nowrap;
}

.arrow-forward-dp {
  border: 4px solid;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  border-color: #ffffff;
  aspect-ratio: 1;
}

.view-3 {
  position: absolute;
  top: 2082px;
  left: 0;
  width: 1920px;
  height: 1690px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.frame-19 {
  display: flex;
  margin-left: 360px;
  width: 1200px;
  height: 786px;
  position: relative;
  margin-top: 120px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.frame-20 {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-17 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 40px;
}

.text-wrapper-18 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--w);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

.frame-21 {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-22 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 40px 30px;
  position: relative;
  flex: 0 0 auto;
  background-color: #454237;
  border-radius: 20px;
  border: 2px solid;
  border-color: #6f6b5e;
}

.frame-23 {
  display: flex;
  flex-direction: column;
  width: 320px;
  align-items: center;
  gap: 30px;
  position: relative;
}

.text-wrapper-19 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 24px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 36px;
}

.frame-24 {
  position: relative;
  width: 160px;
  height: 160px;
  aspect-ratio: 1;
}

.text-wrapper-20 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--w);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
}

.element-wrapper {
  background-color: #7a7668;
  border-radius: 80px;
  position: relative;
  width: 160px;
  height: 160px;
}

.element-ff {
  position: relative;
  width: 46.25%;
  height: 52.98%;
  top: 23.75%;
  left: 26.88%;
  display: flex;
  aspect-ratio: 0.87;
  background-image: url(./img/vector-18.svg);
  background-size: 100% 100%;
}

.vector-5 {
  flex: 1;
  width: 50.14px;
}

.frame-25 {
  position: relative;
  width: 160px;
  height: 160px;
}

.vector-wrapper {
  border: 4px solid;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  border-color: var(--w);
  aspect-ratio: 1;
}

.frame-26 {
  display: flex;
  height: 624px;
  width: 1100px;
  align-self: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 30px;
  background-color: var(--sub-dark-gray);
  border-radius: 20px;
}

.frame-27 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 0 0 auto;
}

.frame-28 {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 6px 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: #141415;
}

.text-wrapper-21 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 30px;
  white-space: nowrap;
}

.text-wrapper-22 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 30px;
  white-space: nowrap;
}

.group {
  position: relative;
  width: 1000px;
  height: 360px;
}

.frame-29 {
  display: flex;
  width: 1000px;
  align-items: flex-start;
  gap: 68px;
  position: absolute;
  top: 0;
  left: 0;
}

.frame-30 {
  display: flex;
  flex-direction: column;
  width: 288px;
  align-items: center;
  gap: 20px;
  position: relative;
}

.frame-31 {
  position: relative;
  width: 300px;
  height: 300px;
  margin-top: -30px;
  margin-left: -6px;
  margin-right: -6px;
  aspect-ratio: 1;
}

.frame-32 {
  display: flex;
  flex-direction: column;
  width: 196px;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-23 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 30px;
}

.text-wrapper-24 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 30px;
}

.frame-33 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-34 {
  display: flex;
  flex-direction: column;
  width: 224px;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.polygon {
  left: 312px;
  position: absolute;
  top: 106px;
  width: 22px;
  height: 43px;
}

.polygon-2 {
  left: 670px;
  position: absolute;
  top: 106px;
  width: 22px;
  height: 43px;
}

.CTA {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 307px;
  height: 62px;
}

.rectangle-3 {
  position: absolute;
  top: 8px;
  left: 7px;
  width: 300px;
  height: 54px;
  border: 1px solid;
  border-color: var(--w);
}

.frame-35 {
  display: flex;
  width: 300px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--light-slides-color-2);
  border: 2px solid;
  border-color: var(--red);
}

.text-wrapper-25 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--red);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 24px;
  white-space: nowrap;
}

.RENKIN {
  position: absolute;
  top: 1360px;
  left: calc(50% - 960px);
  width: 1920px;
  height: 722px;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 21, 0) 0%,
    rgba(61, 55, 30, 1) 100%
  );
}

.image {
  top: 277px;
  left: 226px;
  width: 302px;
  height: 300px;
  aspect-ratio: 1;
  position: absolute;
  object-fit: cover;
}

.image-2 {
  top: 88px;
  left: 1428px;
  width: 236px;
  height: 236px;
  aspect-ratio: 1;
  position: absolute;
  object-fit: cover;
}

.frame-36 {
  display: flex;
  flex-direction: column;
  width: 1200px;
  align-items: center;
  gap: 60px;
  position: absolute;
  top: 0;
  left: 360px;
}

.text-wrapper-26 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 40px;
}

.RENKIN-2 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 36px;
}

.frame-37 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 280px;
}

.overlap-group {
  position: absolute;
  width: 209px;
  height: 200px;
  top: 49px;
  left: 495px;
}

.group-2 {
  position: absolute;
  width: 209px;
  height: 200px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34.4px;
}

.group-3 {
  margin-left: -8px;
  height: 82.64px;
  width: 201px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-wrapper-27 {
  margin-left: 12px;
  height: 36px;
  width: 137px;
  align-self: center;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--light-slides-color-2);
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.8px;
  line-height: 36px;
  white-space: nowrap;
}

.union {
  width: 199px;
  height: 34.64px;
}

.group-4 {
  margin-left: 12px;
  height: 82.64px;
  width: 201px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

text-wrapper-28 {
  margin-left: -8px;
  height: 36px;
  width: 137px;
  align-self: center;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--light-slides-color-2);
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.8px;
  line-height: 36px;
  white-space: nowrap;
}

.group-5 {
  position: absolute;
  width: 50px;
  height: 53px;
  top: 107px;
  left: 81px;
}

.frame-38 {
  position: absolute;
  top: 0;
  left: 50px;
  width: 450px;
  height: 280px;
  background-color: #7a7668;
  border-radius: 20px;
  overflow: hidden;
}

.rectangle-4 {
  position: absolute;
  top: 230px;
  left: 0;
  width: 450px;
  height: 50px;
  background-color: #454237;
}

.frame-39 {
  display: flex;
  width: 170px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 14px;
  left: calc(50% - 85px);
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0px 0px 10px #0000001a;
}

.text-wrapper-29 {
  position: relative;
  width: fit-content;
  margin-top: -9px;
  margin-bottom: -7px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #141415;
  font-size: 18px;
  text-align: center;
  letter-spacing: 3.6px;
  line-height: 36px;
  white-space: nowrap;
}

.text-wrapper-30 {
  position: absolute;
  top: 236px;
  left: calc(50% - 62px);
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 36px;
  white-space: nowrap;
}

.illust {
  position: absolute;
  top: 81px;
  left: calc(50% - 181px);
  width: 363px;
  height: 123px;
}

.frame-40 {
  position: absolute;
  top: 0;
  left: 700px;
  width: 450px;
  height: 280px;
  background-color: #7a7668;
  border-radius: 20px;
  overflow: hidden;
}

.clip-path-group {
  position: absolute;
  width: 272px;
  height: 175px;
  top: 42px;
  left: 89px;
}

.rectangle-5 {
  position: absolute;
  top: 230px;
  left: calc(50% - 225px);
  width: 450px;
  height: 50px;
  background-color: #454237;
}

.text-wrapper-31 {
  position: absolute;
  top: 236px;
  left: calc(50% - 72px);
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 36px;
  white-space: nowrap;
}

.r-b-wrapper {
  display: flex;
  flex-direction: column;
  width: 170px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 14px;
  left: 140px;
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0px 0px 10px #0000001a;
}

.r-b {
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-top: -8px;
  margin-bottom: -8px;
  aspect-ratio: 4.13;
  object-fit: cover;
}

.group-6 {
  position: absolute;
  top: 81px;
  left: 552px;
  width: 99px;
  height: 63px;
}

.view-4 {
  position: absolute;
  top: 1100px;
  left: calc(50% - 335px);
  width: 670px;
  height: 140px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid;
  border-color: #b3b3b3;
}

.frame-41 {
  display: flex;
  flex-direction: column;
  width: 363px;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: absolute;
  top: 14px;
  left: 154px;
}

.text-wrapper-32 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #141415;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.08px;
  line-height: 18px;
}

.text-wrapper-33 {
  position: relative;
  align-self: stretch;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: #141415;
  font-size: 40px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 40px;
}

.text-wrapper-34 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 13px;
  text-align: center;
  letter-spacing: 1.82px;
  line-height: 13px;
}

.group-wrapper {
  position: absolute;
  left: -10px;
  bottom: 1px;
  width: 680px;
  height: 34px;
  display: flex;
  background-color: var(--b-7a-763);
}

.group-7 {
  margin-top: 3px;
  width: 130px;
  margin-left: 284px;
  display: flex;
  gap: 14px;
}

.text-wrapper-35 {
  width: 107px;
  height: 24px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 24px;
  white-space: nowrap;
}

.vector-6 {
  margin-top: 7px;
  width: 7px;
  height: 12px;
  aspect-ratio: 0.59;
}

.frame-42 {
  position: absolute;
  top: 2px;
  left: 512px;
  width: 138px;
  height: 138px;
  background-image: url(./img/adobestock-1724552836-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.FV {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
}

.FV-BG {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  display: flex;
}

.view-5 {
  margin-top: 840px;
  width: 1920px;
  height: 240px;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 21, 0) 0%,
    rgba(20, 20, 21, 1) 100%
  );
}

.group-8 {
  position: absolute;
  top: 212px;
  left: 360px;
  width: 1202px;
  height: 594px;
}

.frame-43 {
  display: flex;
  flex-direction: column;
  width: 612px;
  align-items: flex-start;
  position: absolute;
  top: 158px;
  left: 0;
}

.text-wrapper-36 {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-top: -1px;
  filter: blur(2px);
  font-family: "Zen Old Mincho-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 90px;
  letter-spacing: 14.4px;
  line-height: 165px;
}

.text-wrapper-37 {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-top: -50px;
  filter: blur(2px);
  font-family: "Zen Old Mincho-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 90px;
  letter-spacing: 14.4px;
  line-height: 165px;
}

.RENKIN-3 {
  position: absolute;
  top: 3px;
  left: calc(50% - 601px);
  font-family: "Zen Old Mincho-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 18px;
  letter-spacing: 2.16px;
  line-height: 40px;
}

.group-9 {
  position: absolute;
  top: 122px;
  left: calc(50% - 601px);
  width: 287px;
  height: 36px;
}

.text-wrapper-38 {
  position: absolute;
  top: 0;
  left: calc(50% - 4px);
  font-family: "Inter-Italic", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #959595;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 36px;
  white-space: nowrap;
}

.vector-7 {
  position: absolute;
  top: 18px;
  left: 0;
  width: 130px;
  height: 1px;
  object-fit: cover;
}

.visual {
  position: absolute;
  top: 0;
  left: 800px;
  width: 400px;
  height: 594px;
  aspect-ratio: 0.67;
}

.element-2 {
  position: absolute;
  top: 326px;
  left: 212px;
  width: 56px;
  height: 104px;
  aspect-ratio: 0.54;
  object-fit: cover;
}

.element-3 {
  position: absolute;
  top: 456px;
  left: 210px;
  width: 107px;
  height: 90px;
  aspect-ratio: 1.66;
  object-fit: cover;
}

.element-4 {
  position: absolute;
  top: 542px;
  left: 268px;
  width: 104px;
  height: 52px;
  aspect-ratio: 2.01;
  object-fit: cover;
}

.element-5 {
  position: absolute;
  top: 422px;
  left: 130px;
  width: 105px;
  height: 80px;
  aspect-ratio: 2.4;
  object-fit: cover;
}

.image-3 {
  top: 60px;
  left: 0;
  width: 400px;
  height: 441px;
  aspect-ratio: 0.91;
  position: absolute;
  object-fit: cover;
}

.element-6 {
  position: absolute;
  top: 0;
  left: 40px;
  width: 108px;
  height: 114px;
  aspect-ratio: 1.97;
  object-fit: cover;
}

.element-7 {
  position: absolute;
  top: 302px;
  left: 82px;
  width: 111px;
  height: 91px;
  aspect-ratio: 0.68;
  object-fit: cover;
}

.element-8 {
  position: absolute;
  top: 117px;
  left: 117px;
  width: 93px;
  height: 78px;
  aspect-ratio: 1.19;
  object-fit: cover;
}

.element-9 {
  position: absolute;
  top: 199px;
  left: 48px;
  width: 115px;
  height: 100px;
  aspect-ratio: 0.63;
  object-fit: cover;
}

.div-3 {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 5575px;
  width: 1200px;
  height: 106px;
  box-shadow: 0px 0px 20px #ffffff33;
}

.view-6 {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 0;
  width: 1200px;
  height: 36px;
  background-color: #57575799;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.view-7 {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 36px;
  width: 1200px;
  height: 70px;
  background-color: #1515154c;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.frame-44 {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  top: 26px;
  left: 27px;
}

.text-wrapper-39 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
}

.text-wrapper-40 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #cfcfcf;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.text-wrapper-41 {
  position: absolute;
  top: 78px;
  left: 17px;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: #ebebeb;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.frame-45 {
  display: inline-flex;
  height: 70px;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 235px;
  overflow: hidden;
}

.rectangle-6 {
  position: relative;
  width: 1px;
  height: 80px;
  margin-top: -5px;
  margin-bottom: -5px;
  background-color: #353535;
}

.group-10 {
  position: relative;
  width: 173px;
  height: 32px;
}

.img-2 {
  position: absolute;
  top: 2px;
  left: calc(50% - 86px);
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
  object-fit: cover;
}

.group-11 {
  position: absolute;
  top: 2px;
  left: calc(50% - 50px);
  width: 37px;
  height: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.text-wrapper-42 {
  margin-left: -12px;
  height: 13px;
  width: 25px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-43 {
  margin-left: -4px;
  height: 12px;
  width: 33px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.element-10 {
  position: absolute;
  top: 0;
  left: 89px;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 26px;
  text-align: right;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.text-wrapper-44 {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 32px;
}

.text-wrapper-45 {
  font-size: 20px;
}

.group-12 {
  position: relative;
  width: 83px;
  height: 28px;
}

.group-13 {
  position: absolute;
  top: 1px;
  left: calc(50% - 6px);
  width: 51px;
  height: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.text-wrapper-46 {
  margin-left: -27px;
  height: 13px;
  width: 24px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-47 {
  margin-left: -4px;
  height: 12px;
  width: 47px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.eth-logo {
  position: absolute;
  top: 0;
  left: calc(50% - 42px);
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
  object-fit: cover;
}

.element-11 {
  position: relative;
  width: fit-content;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 26px;
  text-align: right;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.text-wrapper-48 {
  margin-left: -13px;
  height: 13px;
  width: 24px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.group-14 {
  position: absolute;
  top: 2px;
  left: calc(50% - 50px);
  width: 50px;
  height: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.text-wrapper-49 {
  margin-left: -15px;
  height: 13px;
  width: 35px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-50 {
  margin-left: -4px;
  height: 12px;
  width: 46px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.text-wrapper-51 {
  margin-left: -4px;
  height: 13px;
  width: 33px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-52 {
  margin-left: -5px;
  height: 12px;
  width: 32px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.CTA-2 {
  position: absolute;
  top: 713px;
  left: 496px;
  width: 307px;
  height: 106px;
}

.group-15 {
  position: absolute;
  width: 100%;
  height: 58.49%;
  top: 0;
  left: 0;
}

.rectangle-7 {
  position: absolute;
  width: 97.72%;
  height: 87.1%;
  top: 12.9%;
  left: 2.28%;
  border: 1px solid;
  border-color: #ffffff;
}

.frame-46 {
  display: flex;
  width: 97.72%;
  height: 87.1%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--light-slides-color-2);
  border: 2px solid;
  border-color: var(--red);
}

.frame-47 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  width: 94.46%;
  height: 22.64%;
  top: 77.36%;
  left: 2.61%;
}

.text-wrapper-53 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #d5d5d5;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.arrow-forward-ios {
  position: relative;
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
}

.vector-8 {
  position: absolute;
  width: 73.95%;
  height: 91.67%;
  top: 8.33%;
  left: 26.05%;
}

.element-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 1920px;
  height: 130px;
  background-color: #00000099;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
}

.frame-48 {
  position: absolute;
  top: 12px;
  left: 60px;
  width: 167px;
  height: 46px;
  background-image: url(./img/r-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.text-wrapper-54 {
  position: absolute;
  top: 92px;
  left: calc(50% - 313px);
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 16px;
  white-space: nowrap;
}

.group-16 {
  position: absolute;
  top: calc(50% - 43px);
  left: 1183px;
  width: 679px;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-group {
  height: 26px;
  width: 230px;
  aspect-ratio: 8.79;
  object-fit: cover;
}

.text-wrapper-55 {
  height: 18px;
  width: 431px;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
}

.frame-49 {
  display: flex;
  width: 160px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  position: absolute;
  top: 70px;
  left: 1380px;
}

.div-4 {
  position: relative;
  width: fit-content;
  font-family: "Font Awesome 6 Free-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 14px;
  white-space: nowrap;
}

.text-wrapper-56 {
  letter-spacing: 0.26px;
}

.text-wrapper-57 {
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  letter-spacing: 0.26px;
}

.frame-50 {
  display: flex;
  width: 180px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 70px;
  left: 1680px;
  background-color: #ffffff;
  border: 2px solid;
  border-color: var(--red);
}

.text-wrapper-58 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--red);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 16px;
  white-space: nowrap;
}

.frame-51 {
  display: flex;
  width: 140px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 70px;
  left: 1540px;
  background-color: var(--b-11616);
}

.text-wrapper-59 {
  position: relative;
  width: fit-content;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 14px;
  white-space: nowrap;
}
/* =============================================
   Original style.css content injected below
   ============================================= */

.PC {
  position: relative;
  width: 1920px;
  height: 6575px;
  background-color: #141415;
}

.BG {
  position: absolute;
  top: 2082px;
  left: 0;
  width: 1920px;
  height: 2600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 21, 1) 0%,
    rgba(182, 182, 191, 1) 100%
  );
}

.bg {
  width: 1920px;
  height: 1120px;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.footer {
  position: absolute;
  top: 6155px;
  left: 0;
  width: 1920px;
  height: 420px;
  background-color: transparent;
  background-image: url(./img/image.png);
  background-size: cover;
  background-position: 50% 50%;
}

.vertical {
  position: absolute;
  top: 84px;
  left: 664px;
  width: 162px;
  height: 146px;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.frame {
  display: flex;
  flex-direction: column;
  width: 434px;
  align-items: flex-end;
  gap: 20px;
  position: absolute;
  top: 87px;
  left: 1026px;
}

/* Footer nav links reset */
.frame a.div,
.frame a.view {
  text-decoration: none;
  cursor: pointer;
}

.div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  text-align: right;
  letter-spacing: 0;
  line-height: 21px;
  white-space: nowrap;
}

.s {
  position: relative;
  width: 18px;
  height: 15px;
  overflow: hidden;
  aspect-ratio: 1.24;
}

.element {
  position: relative;
  width: 96.77%;
  height: 95.99%;
  top: 4.01%;
}

.vector {
  position: absolute;
  width: 89.54%;
  height: 103.47%;
  top: -3.47%;
  left: 10.46%;
}

.img {
  position: absolute;
  width: 100%;
  height: 83.34%;
  top: 16.66%;
  left: 0;
}

.view {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-2 {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  gap: 28px;
  position: absolute;
  top: 282px;
  left: 460px;
}

.sen {
  position: relative;
  width: 1000px;
  height: 1px;
  margin-top: -0.5px;
  object-fit: cover;
}

.text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 21px;
}

.p {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.FAQ {
  position: absolute;
  top: 4682px;
  left: 0;
  width: 1920px;
  height: 1473px;
  background-color: #e2e2e2;
}

.frame-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1473px;
}

.frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 120px;
  left: calc(50% - 500px);
}

.frame-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-5 {
  display: flex;
  flex-direction: column;
  width: 132px;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 30px;
}

.text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--bk);
  font-size: 16px;
  letter-spacing: 3.2px;
  line-height: normal;
}

.frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

/* Remove default list styles for news list */
.frame-6.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frame-7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.text-wrapper-5 {
  position: relative;
  width: 27px;
  margin-top: -1px;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: #141415;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0;
  line-height: 45px;
}

.text-wrapper-6 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  white-space: nowrap;
}

.open {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  cursor: pointer;
}

.vertical-2 {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 24px;
  background-color: #141415;
}

.horizontal {
  position: absolute;
  top: calc(50% - 12px);
  left: 11px;
  width: 2px;
  height: 24px;
  background-color: #141415;
  transform: rotate(-90deg);
}

.vector-2 {
  position: relative;
  width: 1000px;
  height: 1px;
  margin-bottom: -0.5px;
  object-fit: cover;
}

.horizontal-2 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 2px;
  height: 24px;
  background-color: #141415;
  transform: rotate(-90deg);
  cursor: pointer;
}

.frame-8 {
  display: flex;
  flex-direction: column;
  width: 956px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.div-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.text-wrapper-7 {
  position: relative;
  width: 956px;
  margin-top: -1px;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: #141415;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 27.2px;
}

.vector-3 {
  position: relative;
  width: 1000px;
  height: 1px;
  margin-bottom: -0.5px;
  margin-right: -44px;
  object-fit: cover;
}

.view-2 {
  position: absolute;
  top: 972px;
  left: 460px;
  width: 1000px;
  height: 381px;
}

.frame-9 {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  position: absolute;
  top: 0;
  left: calc(50% - 500px);
  background-color: #ffffff;
  box-shadow: 0px 0px 30px #00000014;
}

.frame-10 {
  display: flex;
  flex-direction: column;
  width: 880px;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.div-2 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 400;
  color: #141415;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 28px;
}

.span {
  font-weight: 700;
}

.text-wrapper-9 {
  font-family: "Noto Sans JP-Regular", Helvetica;
}

.rectangle {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 61px;
  height: 61px;
}

.rectangle-2 {
  position: absolute;
  top: 321px;
  right: 0;
  width: 61px;
  height: 61px;
}

.news {
  position: absolute;
  top: 3772px;
  left: 0;
  width: 1920px;
  height: 910px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-11 {
  display: flex;
  margin-top: 60px;
  height: 610px;
  width: 1000px;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.frame-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 30px;
}

.text-wrapper-11 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 3.2px;
  line-height: normal;
}

.frame-13 {
  display: flex;
  flex-direction: column;
  height: 119px;
  align-items: flex-start;
  gap: 10px;
  padding: 29px 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff1a;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.frame-14 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.frame-15 {
  display: flex;
  flex-direction: column;
  width: 840px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.text-wrapper-12 {
  position: relative;
  width: fit-content;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: var(--w);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 14px;
  white-space: nowrap;
}

.frame-16 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--red);
}

.text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Inter-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 12px;
  white-space: nowrap;
}

.frame-17 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid;
  border-color: var(--w);
}

.text-wrapper-14 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 12px;
  white-space: nowrap;
}

.text-wrapper-15 {
  position: relative;
  width: fit-content;
  margin-right: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 14px;
  white-space: nowrap;
}

.arrow-forward {
  border: 3px solid;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  border-color: var(--w);
  aspect-ratio: 1;
  text-decoration: none;
}

.vector-4 {
  position: relative;
  width: 26px;
  height: 26px;
  aspect-ratio: 1;
}

.frame-18 {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  position: relative;
  flex: 0 0 auto;
  text-decoration: none;
  cursor: pointer;
}

.text-wrapper-16 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 24px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 36px;
  white-space: nowrap;
}

.arrow-forward-dp {
  border: 4px solid;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  border-color: #ffffff;
  aspect-ratio: 1;
}

.view-3 {
  position: absolute;
  top: 2082px;
  left: 0;
  width: 1920px;
  height: 1690px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.frame-19 {
  display: flex;
  margin-left: 360px;
  width: 1200px;
  height: 786px;
  position: relative;
  margin-top: 120px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.frame-20 {
  display: flex;
  flex-direction: column;
  width: 1000px;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-17 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 40px;
}

.text-wrapper-18 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--w);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

.frame-21 {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-22 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 40px 30px;
  position: relative;
  flex: 0 0 auto;
  background-color: #454237;
  border-radius: 20px;
  border: 2px solid;
  border-color: #6f6b5e;
}

.frame-23 {
  display: flex;
  flex-direction: column;
  width: 320px;
  align-items: center;
  gap: 30px;
  position: relative;
}

.text-wrapper-19 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 24px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 36px;
}

.frame-24 {
  position: relative;
  width: 160px;
  height: 160px;
  aspect-ratio: 1;
}

.text-wrapper-20 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--w);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 32px;
}

.element-wrapper {
  background-color: #7a7668;
  border-radius: 80px;
  position: relative;
  width: 160px;
  height: 160px;
}

.element-ff {
  position: relative;
  width: 46.25%;
  height: 52.98%;
  top: 23.75%;
  left: 26.88%;
  display: flex;
  aspect-ratio: 0.87;
  background-image: url(./img/vector-18.svg);
  background-size: 100% 100%;
}

.vector-5 {
  flex: 1;
  width: 50.14px;
}

.frame-25 {
  position: relative;
  width: 160px;
  height: 160px;
}

.vector-wrapper {
  border: 4px solid;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  border-color: var(--w);
  aspect-ratio: 1;
}

.frame-26 {
  display: flex;
  height: 624px;
  width: 1100px;
  align-self: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 30px;
  background-color: var(--sub-dark-gray);
  border-radius: 20px;
}

.frame-27 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 0 0 auto;
}

.frame-28 {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 6px 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: #141415;
}

.text-wrapper-21 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 30px;
  white-space: nowrap;
}

.text-wrapper-22 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  line-height: 30px;
  white-space: nowrap;
}

.group {
  position: relative;
  width: 1000px;
  height: 360px;
}

.frame-29 {
  display: flex;
  width: 1000px;
  align-items: flex-start;
  gap: 68px;
  position: absolute;
  top: 0;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.frame-30 {
  display: flex;
  flex-direction: column;
  width: 288px;
  align-items: center;
  gap: 20px;
  position: relative;
}

.frame-31 {
  position: relative;
  width: 300px;
  height: 300px;
  margin-top: -30px;
  margin-left: -6px;
  margin-right: -6px;
  aspect-ratio: 1;
}

.frame-32 {
  display: flex;
  flex-direction: column;
  width: 196px;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.text-wrapper-23 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 30px;
}

.text-wrapper-24 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 30px;
}

.frame-33 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame-34 {
  display: flex;
  flex-direction: column;
  width: 224px;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.polygon {
  left: 312px;
  position: absolute;
  top: 106px;
  width: 22px;
  height: 43px;
}

.polygon-2 {
  left: 670px;
  position: absolute;
  top: 106px;
  width: 22px;
  height: 43px;
}

.CTA {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 307px;
  height: 62px;
  cursor: pointer;
}

.rectangle-3 {
  position: absolute;
  top: 8px;
  left: 7px;
  width: 300px;
  height: 54px;
  border: 1px solid;
  border-color: var(--w);
}

.frame-35 {
  display: flex;
  width: 300px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--light-slides-color-2);
  border: 2px solid;
  border-color: var(--red);
}

.text-wrapper-25 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--red);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 24px;
  white-space: nowrap;
}

.RENKIN {
  position: absolute;
  top: 1360px;
  left: calc(50% - 960px);
  width: 1920px;
  height: 722px;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 21, 0) 0%,
    rgba(61, 55, 30, 1) 100%
  );
}

.image {
  top: 380px;
    left: 0x;
    left: 60px;
    width: 233px;
    height: 300px;
    aspect-ratio: 1;
    position: absolute;
    object-fit: cover;
}

.image-2 {
  top: 88px;
  left: 1428px;
  width: 236px;
  height: 236px;
  aspect-ratio: 1;
  position: absolute;
  object-fit: cover;
}

.frame-36 {
  display: flex;
  flex-direction: column;
  width: 1200px;
  align-items: center;
  gap: 60px;
  position: absolute;
  top: 0;
  left: 360px;
}

.text-wrapper-26 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 40px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 40px;
}

.RENKIN-2 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 36px;
}

.frame-37 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 280px;
}

.overlap-group {
  position: absolute;
  width: 209px;
  height: 200px;
  top: 49px;
  left: 495px;
}

.group-2 {
  position: absolute;
  width: 209px;
  height: 200px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34.4px;
}

.group-3 {
  margin-left: -8px;
  height: 82.64px;
  width: 201px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-wrapper-27 {
  margin-left: 12px;
  height: 36px;
  width: 137px;
  align-self: center;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--light-slides-color-2);
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.8px;
  line-height: 36px;
  white-space: nowrap;
}

.union {
  width: 199px;
  height: 34.64px;
}

.group-4 {
  margin-left: 12px;
  height: 82.64px;
  width: 201px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-wrapper-28 {
  margin-left: -8px;
  height: 36px;
  width: 137px;
  align-self: center;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--light-slides-color-2);
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.8px;
  line-height: 36px;
  white-space: nowrap;
}

.group-5 {
  position: absolute;
  width: 50px;
  height: 53px;
  top: 107px;
  left: 81px;
}

.frame-38 {
  position: absolute;
  top: 0;
  left: 50px;
  width: 450px;
  height: 280px;
  background-color: #7a7668;
  border-radius: 20px;
  overflow: hidden;
}

.rectangle-4 {
  position: absolute;
  top: 230px;
  left: 0;
  width: 450px;
  height: 50px;
  background-color: #454237;
}

.frame-39 {
  display: flex;
  width: 170px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 14px;
  left: calc(50% - 85px);
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0px 0px 10px #0000001a;
}

.text-wrapper-29 {
  position: relative;
  width: fit-content;
  margin-top: -9px;
  margin-bottom: -7px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #141415;
  font-size: 18px;
  text-align: center;
  letter-spacing: 3.6px;
  line-height: 36px;
  white-space: nowrap;
}

.text-wrapper-30 {
  position: absolute;
  top: 236px;
  left: calc(50% - 62px);
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 36px;
  white-space: nowrap;
}

.illust {
  position: absolute;
  top: 81px;
  left: calc(50% - 181px);
  width: 363px;
  height: 123px;
}

.frame-40 {
  position: absolute;
  top: 0;
  left: 700px;
  width: 450px;
  height: 280px;
  background-color: #7a7668;
  border-radius: 20px;
  overflow: hidden;
}

.clip-path-group {
  position: absolute;
  width: 272px;
  height: 175px;
  top: 42px;
  left: 89px;
}

.rectangle-5 {
  position: absolute;
  top: 230px;
  left: calc(50% - 225px);
  width: 450px;
  height: 50px;
  background-color: #454237;
}

.text-wrapper-31 {
  position: absolute;
  top: 236px;
  left: calc(50% - 72px);
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: var(--w);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 36px;
  white-space: nowrap;
}

.r-b-wrapper {
  display: flex;
  flex-direction: column;
  width: 170px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 14px;
  left: 140px;
  background-color: #ffffff;
  border-radius: 100px;
  box-shadow: 0px 0px 10px #0000001a;
}

.r-b {
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-top: -8px;
  margin-bottom: -8px;
  aspect-ratio: 4.13;
  object-fit: cover;
}

.group-6 {
  position: absolute;
  top: 81px;
  left: 552px;
  width: 99px;
  height: 63px;
}

.view-4 {
  position: absolute;
  top: 1100px;
  left: calc(50% - 335px);
  width: 670px;
  height: 140px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid;
  border-color: #b3b3b3;
}

.frame-41 {
  display: flex;
  flex-direction: column;
  width: 363px;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: absolute;
  top: 14px;
  left: 154px;
}

.text-wrapper-32 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #141415;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.08px;
  line-height: 18px;
}

.text-wrapper-33 {
  position: relative;
  align-self: stretch;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: #141415;
  font-size: 40px;
  text-align: center;
  letter-spacing: 2.4px;
  line-height: 40px;
}

.text-wrapper-34 {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #141415;
  font-size: 13px;
  text-align: center;
  letter-spacing: 1.82px;
  line-height: 13px;
}

.group-wrapper {
  position: absolute;
  left: -10px;
  bottom: 1px;
  width: 680px;
  height: 34px;
  display: flex;
  background-color: var(--b-7a-763);
}

.group-7 {
  margin-top: 3px;
  width: 130px;
  margin-left: 284px;
  display: flex;
  gap: 14px;
  text-decoration: none;
}

.text-wrapper-35 {
  width: 107px;
  height: 24px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--w);
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 24px;
  white-space: nowrap;
}

.vector-6 {
  margin-top: 7px;
  width: 7px;
  height: 12px;
  aspect-ratio: 0.59;
}

.frame-42 {
  position: absolute;
  top: 2px;
  left: 512px;
  width: 138px;
  height: 138px;
  background-image: url(./img/adobestock-1724552836-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.FV {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
}

.FV-BG {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  display: flex;
}

.view-5 {
  margin-top: 840px;
  width: 1920px;
  height: 240px;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 21, 0) 0%,
    rgba(20, 20, 21, 1) 100%
  );
}

.group-8 {
  position: absolute;
  top: 212px;
  left: 360px;
  width: 1202px;
  height: 594px;
}

.frame-43 {
  display: flex;
  flex-direction: column;
  width: 612px;
  align-items: flex-start;
  position: absolute;
  top: 158px;
  left: 0;
}

.text-wrapper-36 {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-top: -1px;
  filter: blur(2px);
  font-family: "Zen Old Mincho-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 90px;
  letter-spacing: 14.4px;
  line-height: 165px;
}

.text-wrapper-37 {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-top: -50px;
  filter: blur(2px);
  font-family: "Zen Old Mincho-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 90px;
  letter-spacing: 14.4px;
  line-height: 165px;
}

.RENKIN-3 {
  position: absolute;
  top: 3px;
  left: calc(50% - 601px);
  font-family: "Zen Old Mincho-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 18px;
  letter-spacing: 2.16px;
  line-height: 40px;
}

.group-9 {
  position: absolute;
  top: 122px;
  left: calc(50% - 601px);
  width: 287px;
  height: 36px;
}

.text-wrapper-38 {
  position: absolute;
  top: 0;
  left: calc(50% - 4px);
  font-family: "Inter-Italic", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #959595;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 36px;
  white-space: nowrap;
}

.vector-7 {
  position: absolute;
  top: 18px;
  left: 0;
  width: 130px;
  height: 1px;
  object-fit: cover;
}

.visual {
  position: absolute;
  top: 0;
  left: 800px;
  width: 400px;
  height: 594px;
  aspect-ratio: 0.67;
}

.element-2 {
  position: absolute;
  top: 326px;
  left: 212px;
  width: 56px;
  height: 104px;
  aspect-ratio: 0.54;
  object-fit: cover;
}

.element-3 {
  position: absolute;
  top: 456px;
  left: 210px;
  width: 107px;
  height: 90px;
  aspect-ratio: 1.66;
  object-fit: cover;
}

.element-4 {
  position: absolute;
  top: 542px;
  left: 268px;
  width: 104px;
  height: 52px;
  aspect-ratio: 2.01;
  object-fit: cover;
}

.element-5 {
  position: absolute;
  top: 422px;
  left: 130px;
  width: 105px;
  height: 80px;
  aspect-ratio: 2.4;
  object-fit: cover;
}

.image-3 {
  top: 60px;
  left: 0;
  width: 400px;
  height: 441px;
  aspect-ratio: 0.91;
  position: absolute;
  object-fit: cover;
}

.element-6 {
  position: absolute;
  top: 0;
  left: 40px;
  width: 108px;
  height: 114px;
  aspect-ratio: 1.97;
  object-fit: cover;
}

.element-7 {
  position: absolute;
  top: 302px;
  left: 82px;
  width: 111px;
  height: 91px;
  aspect-ratio: 0.68;
  object-fit: cover;
}

.element-8 {
  position: absolute;
  top: 117px;
  left: 117px;
  width: 93px;
  height: 78px;
  aspect-ratio: 1.19;
  object-fit: cover;
}

.element-9 {
  position: absolute;
  top: 199px;
  left: 48px;
  width: 115px;
  height: 100px;
  aspect-ratio: 0.63;
  object-fit: cover;
}

.div-3 {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 5575px;
  width: 1200px;
  height: 106px;
  box-shadow: 0px 0px 20px #ffffff33;
}

.view-6 {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 0;
  width: 1200px;
  height: 36px;
  background-color: #57575799;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.view-7 {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 36px;
  width: 1200px;
  height: 70px;
  background-color: #1515154c;
  backdrop-filter: blur(5px) brightness(100%);
  -webkit-backdrop-filter: blur(5px) brightness(100%);
}

.frame-44 {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  top: 26px;
  left: 27px;
}

.text-wrapper-39 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
}

.text-wrapper-40 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #cfcfcf;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.text-wrapper-41 {
  position: absolute;
  top: 78px;
  left: 17px;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: #ebebeb;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.frame-45 {
  display: inline-flex;
  height: 70px;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 235px;
  overflow: hidden;
}

.rectangle-6 {
  position: relative;
  width: 1px;
  height: 80px;
  margin-top: -5px;
  margin-bottom: -5px;
  background-color: #353535;
}

.group-10 {
  position: relative;
  width: 173px;
  height: 32px;
}

.img-2 {
  position: absolute;
  top: 2px;
  left: calc(50% - 86px);
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
  object-fit: cover;
}

.group-11 {
  position: absolute;
  top: 2px;
  left: calc(50% - 50px);
  width: 37px;
  height: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.text-wrapper-42 {
  margin-left: -12px;
  height: 13px;
  width: 25px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-43 {
  margin-left: -4px;
  height: 12px;
  width: 33px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.element-10 {
  position: absolute;
  top: 0;
  left: 89px;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 26px;
  text-align: right;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.text-wrapper-44 {
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 32px;
}

.text-wrapper-45 {
  font-size: 20px;
}

.group-12 {
  position: relative;
  width: 83px;
  height: 28px;
}

.group-13 {
  position: absolute;
  top: 1px;
  left: calc(50% - 6px);
  width: 51px;
  height: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.text-wrapper-46 {
  margin-left: -27px;
  height: 13px;
  width: 24px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-47 {
  margin-left: -4px;
  height: 12px;
  width: 47px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.eth-logo {
  position: absolute;
  top: 0;
  left: calc(50% - 42px);
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
  object-fit: cover;
}

.element-11 {
  position: relative;
  width: fit-content;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: var(--light-slides-color-2);
  font-size: 26px;
  text-align: right;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.text-wrapper-48 {
  margin-left: -13px;
  height: 13px;
  width: 24px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.group-14 {
  position: absolute;
  top: 2px;
  left: calc(50% - 50px);
  width: 50px;
  height: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.text-wrapper-49 {
  margin-left: -15px;
  height: 13px;
  width: 35px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-50 {
  margin-left: -4px;
  height: 12px;
  width: 46px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.text-wrapper-51 {
  margin-left: -4px;
  height: 13px;
  width: 33px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 13px;
  white-space: nowrap;
}

.text-wrapper-52 {
  margin-left: -5px;
  height: 12px;
  width: 32px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #7b7b7b;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
}

.CTA-2 {
  position: absolute;
  top: 713px;
  left: 496px;
  width: 307px;
  height: 106px;
}

.group-15 {
  position: absolute;
  width: 100%;
  height: 58.49%;
  top: 0;
  left: 0;
}

.rectangle-7 {
  position: absolute;
  width: 97.72%;
  height: 87.1%;
  top: 12.9%;
  left: 2.28%;
  border: 1px solid;
  border-color: #ffffff;
}

.frame-46 {
  display: flex;
  width: 97.72%;
  height: 87.1%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--light-slides-color-2);
  border: 2px solid;
  border-color: var(--red);
}

.frame-47 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  width: 94.46%;
  height: 22.64%;
  top: 77.36%;
  left: 2.61%;
}

.text-wrapper-53 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #d5d5d5;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.arrow-forward-ios {
  position: relative;
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
}

.vector-8 {
  position: absolute;
  width: 73.95%;
  height: 91.67%;
  top: 8.33%;
  left: 26.05%;
}

.element-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 1920px;
  height: 130px;
  background-color: #00000099;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
}

.frame-48 {
  position: absolute;
  top: 12px;
  left: 60px;
  width: 167px;
  height: 46px;
  background-image: url(./img/r-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.text-wrapper-54 {
  position: absolute;
  top: 92px;
  left: calc(50% - 313px);
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 16px;
  white-space: nowrap;
}

.group-16 {
  position: absolute;
  top: calc(50% - 43px);
  left: 1183px;
  width: 679px;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-group {
  height: 26px;
  width: 230px;
  aspect-ratio: 8.79;
  object-fit: cover;
}

.text-wrapper-55 {
  height: 18px;
  width: 431px;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  font-family: "Noto Sans JP-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
}

.frame-49 {
  display: flex;
  width: 160px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  position: absolute;
  top: 70px;
  left: 1380px;
}

.div-4 {
  position: relative;
  width: fit-content;
  font-family: "Font Awesome 6 Free-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 14px;
  white-space: nowrap;
}

.text-wrapper-56 {
  letter-spacing: 0.26px;
}

.text-wrapper-57 {
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  letter-spacing: 0.26px;
}

.frame-50 {
  display: flex;
  width: 180px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 70px;
  left: 1680px;
  background-color: #ffffff;
  border: 2px solid;
  border-color: var(--red);
  cursor: pointer;
}

/* ABOUT SP - hidden on PC */
.about-sp { display: none; }

/* LENDING RATE SP - hidden on PC */
.lr-sp { display: none; }

/* HERO SP - hidden on PC */
.hero-sp { display: none; }

/* Features */
section.features {
  position: relative !important;
  width: 100% !important;
}
section.features .features-inner {
  width: 1200px !important;
  margin: 0 auto !important;
}
	
.text-wrapper-58 {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: var(--red);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 16px;
  white-space: nowrap;
}

.frame-51 {
  display: flex;
  width: 140px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 70px;
  left: 1540px;
  background-color: var(--b-11616);
  cursor: pointer;
}

.text-wrapper-59 {
  position: relative;
  width: fit-content;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: var(--light-slides-color-2);
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 14px;
  white-space: nowrap;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
/* @FONTWARNING[{"type": "restricted", "family": "Noto Sans JP-Medium", "weight": "500", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Noto Sans JP-Medium";
  src: local("Noto Sans JP-Medium");
}
/* @FONTWARNING[{"type": "restricted", "family": "Noto Sans JP-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Noto Sans JP-Regular";
  src: local("Noto Sans JP-Regular");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Medium", "weight": "500", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Medium";
  src: local("Inter-Medium");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-SemiBold", "weight": "600", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-SemiBold";
  src: local("Inter-SemiBold");
}
/* @FONTWARNING[{"type": "restricted", "family": "Noto Sans JP-Bold", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Noto Sans JP-Bold";
  src: local("Noto Sans JP-Bold");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Bold", "weight": "700", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Bold";
  src: local("Inter-Bold");
}
/* @FONTWARNING[{"type": "restricted", "family": "Zen Old Mincho-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Zen Old Mincho-Regular";
  src: local("Zen Old Mincho-Regular");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Italic", "weight": "400", "style": "italic", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Italic";
  src: local("Inter-Italic");
}
/* @FONTWARNING[{"type": "restricted", "family": "Inter-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Inter-Regular";
  src: local("Inter-Regular");
}
/* @FONTWARNING[{"type": "restricted", "family": "Font Awesome 6 Free-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Font Awesome 6 Free-Regular";
  src: local("Font Awesome 6 Free-Regular");
}

/* About section */
section.RENKIN {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 722px;
  padding: 80px 0 60px;
}
section.RENKIN .frame-36 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 1200px !important;
  margin: 0 auto;
}
section.RENKIN .frame-37 {
  height: 280px;
}
section.RENKIN .frame-18 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
/* News section */
section.news {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  padding: 120px 0;
  text-align: center;
  display: block !important;
}
section.news .news-inner {
  width: 1000px;
  margin: 0 auto;
}
/* Footer */
footer.footer {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: 420px !important;
  background-image: none !important;
}


/* ========================================
   RESPONSIVE - SP (max-width: 768px)
   ======================================== */
@media (max-width: 1200px) {

	    .header-row-top {
        padding-left: 20px;
        padding-right: 20px;
        flex-wrap: wrap;
        background-color: #141415;
    }

  /* ---------- GENERAL ---------- */
  body { min-width: 0; }

  /* ---------- HAMBURGER & SP MENU ---------- */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }
  .btn-login-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 36px;
    background: #fff;
    color: #9D0000;
    border: 2px solid #9D0000;
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
  }
  .sp-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .sp-menu.open { display: flex; }
  .sp-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .sp-menu-nav a {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1.6px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .sp-menu-cta {
    width: 100%;
    height: 54px;
    background: #fff;
    color: #9D0000;
    border: 2px solid #9D0000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.6px;
    margin-top: 20px;
    cursor: pointer;
  }

  /* ---------- HEADER ---------- */
  .header {
    height: 90px;
  }
  .header-top-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 10px;
    justify-content: center;
    background: rgba(0,0,0,0.3);
  }
  .header-group-logo { height: 16px; }
  .header-group-text { font-size: 10px; line-height: 16px; }
  .header-main {
    padding: 0 10px;
    height: 56px;
  }
  .header-logo { height: 32px; }
  .header-nav { display: none; }
  .header-btns { display: none; }

  /* ---------- HERO ---------- */
  .hero {
    height: auto;
    min-height: 773px;
  }
  .hero-content {
    width: 100%;
    padding: 90px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 30px;
    width: 100%;
    max-width: 350px;
  }
  .hero-tagline-text { font-size: 14px; }
  .hero-tagline-line { width: 80px; }
  .hero-subtitle {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 1px;
  }
  .hero-heading {
    font-size: 48px;
    letter-spacing: 6px;
    line-height: 80px;
  }
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 205px;
    height: 304px;
    margin: 20px auto 0;
  }
  .hero-phone {
    width: 205px;
    height: 225px;
  }
  .hero-coin { display: none; }
  .hero-cta {
    position: relative;
    left: auto;
    top: auto;
    margin: 30px auto 40px;
  }
  .cta-btn {
    width: 100%;
    max-width: 350px;
  }
  .cta-btn-shadow {
    width: 100%;
    max-width: 350px;
  }

  /* ---------- LENDING RATE ---------- */
  .lending-rate {
    width: calc(100% - 40px);
    max-width: 350px;
    margin: -60px auto 0;
	border: 1px solid transparent;
  background-clip: padding-box;
  }
  .lending-rate::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(180,160,100,0.5), rgba(120,100,60,0.15) 40%, rgba(80,70,40,0.05) 60%, rgba(180,160,100,0.3));
  pointer-events: none;
}
  .lending-rate-top {
    height: 46px;
    padding: 0 15px;
  }
  .lr-label { font-size: 16px; }
  .lr-sub { font-size: 16px; }
  .lending-rate-coins {
    flex-wrap: wrap;
  }
  .lr-coin {
    flex: 0 0 33.333%;
    padding: 10px 0;
  }
  .lr-coin:nth-child(3) { border-right: none; }
  .lr-coin:nth-child(4),
  .lr-coin:nth-child(5) {
    flex: 0 0 50%;
    border-top: 1px solid #363636;
  }
  .lr-coin:nth-child(4) { border-right: 1px solid #363636; }
  .lr-coin:nth-child(5) { border-right: none; }
  .lr-coin-rate { font-size: 22px; line-height: 28px; }
  .lr-coin-rate small { font-size: 16px; }
  .lending-rate-bottom {
    height: 36px;
  }
  .lending-rate-bottom span { font-size: 11px; }

  /* ---------- BANNER ---------- */
  .banner {
    width: calc(100% - 20px);
    max-width: 371px;
    height: auto;
    min-height: 140px;
    margin: 15px auto 0;
    border-radius: 15px;
  }
  .banner-text { padding: 12px 15px 45px; }
  .banner-title { font-size: 14px; }
  .banner-subtitle { font-size: 28px; line-height: 32px; }
  .banner-small { font-size: 11px; }
  .banner-img { width: 200px; }
  .banner-bar { height: 30px; }
  .banner-bar span { font-size: 12px; }

  /* ---------- ABOUT (Anima section) ---------- */
  section.RENKIN {
    min-height: auto !important;
    padding: 60px 0 40px !important;
  }
  section.RENKIN .image,
  section.RENKIN .image-2 {
    display: none !important;
  }
  section.RENKIN .frame-36 {
    width: 100% !important;
    max-width: 370px;
    padding: 0 10px;
    gap: 40px !important;
  }
  .text-wrapper-26 {
    font-size: 28px !important;
    letter-spacing: 4px !important;
    line-height: 36px !important;
  }
  .RENKIN-2 {
    font-size: 14px !important;
    line-height: 24px !important;
    text-align: left !important;
  }
  section.RENKIN .frame-37 {
    height: auto !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .overlap-group {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    order: 2;
  }
  .group-2 {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    flex-direction: row !important;
    gap: 10px;
    justify-content: center;
  }
  .group-3,
  .group-4 {
    width: 45% !important;
    margin: 0 !important;
    height: auto !important;
    align-items: center;
  }
  .text-wrapper-27,
  .text-wrapper-28 {
    font-size: 13px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }
  .union { width: 100px; height: auto; }
  .group-5 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 0 auto;
    order: 3;
  }
  .frame-38 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 372px;
    margin: 0 auto;
    order: 1;
  }
  .frame-40 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 372px;
    margin: 0 auto;
    order: 4;
  }
  .rectangle-4,
  .rectangle-5 {
    width: 100% !important;
    left: 0 !important;
  }
  .illust {
    left: 50% !important;
    transform: translateX(-50%);
    width: 280px !important;
    max-width: 90%;
  }
  .clip-path-group {
    left: 50% !important;
    transform: translateX(-50%);
    width: 200px !important;
    max-width: 80%;
  }
  .r-b-wrapper {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .text-wrapper-30,
  .text-wrapper-31 {
    left: 50% !important;
    transform: translateX(-50%);
    white-space: nowrap !important;
  }
  .group-6 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 0 auto;
    order: 3;
  }
  section.RENKIN .frame-18 {
    margin: 0 auto;
  }
  .text-wrapper-16 {
    font-size: 20px !important;
  }
  .arrow-forward-dp {
    width: 48px !important;
    height: 48px !important;
  }
   
  /* ---------- ABOUT: hide PC, show SP ---------- */
  section.RENKIN { display: none !important; }
  .about-sp {
    display: block !important;
    position: relative;
    width: 100%;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(20,20,21,0) 0%, rgba(61,55,30,1) 100%);
    overflow: hidden;
  }
  .about-sp__image {
    position: absolute;
    left: -30px;
    bottom: 60px;
    width: 160px;
    opacity: 0.2;
    pointer-events: none;
  }
  .about-sp__img {
    position: absolute;
    right: -30px;
    top: 30px;
    width: 130px;
    opacity: 0.25;
    pointer-events: none;
  }
  .about-sp__frame-3 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-sp__frame-4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-sp__title {
    font-size: 28px;
    font-weight: 500;
	font-family: "Noto Sans JP-Medium", Helvetica;
    letter-spacing: 4px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    margin: 0;
  }
  .about-sp__span {
    font-family: 'Zen Old Mincho', serif;
  }
  .about-sp__tw4 {
    font-family: 'Noto Sans JP', sans-serif;
  }
  .about-sp__tw5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
  }
  .about-sp__frame-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    width: 100%;
  }
  /* Lender card */
  .about-sp__frame-6 {
    position: relative;
    width: 100%;
    height: 280px;
    background: #7a7668;
    border-radius: 20px;
    overflow: hidden;
  }
  .about-sp__rectangle {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50px;
    background: #454237;
  }
  .about-sp__dw {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 100px;
    padding: 6px 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 2;
  }
  .about-sp__tw6 {
    font-weight: 700;
    font-size: 16px;
    color: #141415;
    letter-spacing: 3.6px;
    line-height: 28px;
    white-space: nowrap;
  }
  .about-sp__tw7 {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1.6px;
    white-space: nowrap;
    z-index: 2;
  }
  .about-sp__illust {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    max-width: 90%;
    z-index: 1;
  }
  /* Arrows row: text + arrow side by side */
  .about-sp__frame-7 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 4px 0;
  }
  .about-sp__arrow-left,
  .about-sp__arrow-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .about-sp__tw8 {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .about-sp__union,
  .about-sp__union2 {
    /*width: 80px;*/
    height: auto;
  }
  /* Borrower card */
  .about-sp__frame-6--borrower {
    background: #7a7668;
  }
  .about-sp__rectangle2 {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50px;
    background: #454237;
  }
  .about-sp__tw9 {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1.6px;
    white-space: nowrap;
    z-index: 2;
  }
  .about-sp__rb-wrap {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 100px;
    padding: 8px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 2;
  }
  .about-sp__rb {
    height: 24px;
    display: block;
  }
  .about-sp__clip {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    max-width: 70%;
    z-index: 1;
  }
  /* CTA link */
  .about-sp__frame-9 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
  }
  .about-sp__frame-9:hover { opacity: 0.7; }
  .about-sp__tw10 {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1.5px;
  }
  .about-sp__arrow-fwd {
    width: 48px;
    height: 48px;
  }

  /* ---------- HERO ---------- */
  .hero { display: none !important; }

  .hero-sp {
    display: block !important;
    position: relative;
    width: 100%;
    min-height: 773px;
    overflow: hidden;
    background: #141415;
  }
  .hero-sp__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-sp__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #141415);
    z-index: 2;
  }
  .hero-sp__txt {
    position: relative;
    z-index: 3;
    padding: 180px 0px 0;
    max-width: 350px !important;
    margin: 0 10px;
  }
  .hero-sp__subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1.68px;
    line-height: 28px;
    margin: 0 0 12px;
  }
  .hero-sp__tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .hero-sp__tagline-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: #959595;
    letter-spacing: 1.4px;
    white-space: nowrap;
  }
  .hero-sp__tagline-line {
    width: 80px;
    height: 1px;
    object-fit: cover;
  }
  .hero-sp__heading {
    margin-bottom: 0;
  }
  .hero-sp__heading-1,
  .hero-sp__heading-2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 7.68px;
    line-height: 80px;
  }
  .hero-sp__visual {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 350px;
    margin: 10px auto 0;
  }
  .hero-sp__phone {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 205px;
    height: 225px;
    object-fit: contain;
    z-index: 3;
  }
  .hero-sp__coin {
    position: absolute;
    opacity: 0.2;
    z-index: 1;
  }
  .hero-sp__coin-1 { top: 20px; left: -10px; width: 50px; }
  .hero-sp__coin-2 { top: 0; left: 80px; width: 42px; }
  .hero-sp__coin-3 { top: 15px; right: -5px; width: 48px; }
  .hero-sp__coin-4 { top: 140px; left: -30px; width: 35px; }
  .hero-sp__coin-5 { top: 120px; right: -20px; width: 40px; }
  .hero-sp__coin-6 { bottom: 80px; left: 10px; width: 45px; }
  .hero-sp__coin-7 { bottom: 50px; right: 5px; width: 38px; }
  .hero-sp__coin-8 { bottom: 15px; left: 90px; width: 32px; }
  .hero-sp__cta {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px 40px;
  }
  .hero-sp__btn-wrap {
    position: relative;
    display: inline-flex;
    width: 100%;
    max-width: 350px;
  }
  .hero-sp__btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    background: #fff;
    border: 2px solid #9D0000;
    font-weight: 500;
    font-size: 20px;
    color: #9D0000;
    letter-spacing: 2px;
    line-height: 24px;
    text-decoration: none;
  }
  .hero-sp__btn-shadow {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 100%;
    height: 54px;
    border: 1px solid #fff;
    z-index: 1;
  }
  .hero-sp__login {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 16px;
    color: #D6D6D6;
    line-height: 24px;
    text-decoration: none;
  }

  /* ---------- LENDING RATE ---------- */
  .lending-rate { display: none !important; }
  .hero-rates  { display: none !important; }
	
  .lr-sp {
    display: block !important;
    width: calc(100% - 40px);
    max-width: 350px;
    margin: 20px auto 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
  }
  .lr-sp__header {
    height: 46px;
    background: rgba(21,21,21,0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
  }
  .lr-sp__label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    line-height: 18px;
  }
  .lr-sp__sub {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #CFCFCF;
    line-height: 20px;
  }
  .lr-sp__coins {
    background: rgba(21,21,21,0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .lr-sp__row {
    display: flex;
  }
  .lr-sp__row--top {
    display: flex;
  }
  .lr-sp__row--bottom {
    border-top: 1px solid #363636;
  }
  .lr-sp__coin {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 4px;
    border-right: 1px solid #363636;
  }
  .lr-sp__row--top .lr-sp__coin:last-child { border-right: none; }
  .lr-sp__row--bottom .lr-sp__coin:last-child { border-right: none; }
  .lr-sp__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
  }
  .lr-sp__rate {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    line-height: 28px;
  }
  .lr-sp__rate small { font-size: 16px; }
  .lr-sp__ticker {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    line-height: 13px;
  }
  .lr-sp__name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #7C7C7C;
    line-height: 12px;
  }
  .lr-sp__disclaimer {
    height: 36px;
    background: rgba(88,88,88,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lr-sp__disclaimer span {
    font-size: 11px;
    font-weight: 400;
    color: #ECECEC;
    line-height: 20px;
  }

  /* ---------- FEATURES ---------- */
  .features { padding: 60px 0 40px; }
  .features-inner {
    width: 100% !important;
    max-width: 370px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .feat__title {
    font-size: 28px !important;
    letter-spacing: 4px !important;
    line-height: 36px !important;
    margin-bottom: 20px !important;
  }
  .feat__subtitle {
    font-size: 14px !important;
    line-height: 24px !important;
  }
  .feat__header {
    margin-bottom: 30px !important;
  }
  .feat__cards {
    flex-direction: column;
    gap: 20px;
  }
  .feat__card {
    width: 100% !important;
    padding: 25px 20px;
  }
  .feat__card-title {
    font-size: 20px !important;
    letter-spacing: 1.5px !important;
    line-height: 30px !important;
  }
  .feat__card-icon {
    width: 120px !important;
    height: 120px !important;
  }
  .feat__card-body {
    font-size: 14px !important;
    line-height: 26px !important;
  }
  .feat__cta {
    margin: 20px 0 40px !important;
  }
  .feat__cta-text {
    font-size: 24px !important;
    letter-spacing: 1.5px !important;
  }

  /* ---------- 3 STEPS ---------- */
  /* ---------- 3 STEPS ---------- */
  .steps {
    width: 100% !important;
    max-width: 370px;
    margin: 0 auto 60px !important;
    padding: 30px 15px !important;
  }
  .step__heading { margin-bottom: 30px; }
  .step__badge-text,
  .step__heading-sub {
    font-size: 22px !important;
    letter-spacing: 2px !important;
  }
  .step__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .step__card {
    width: 100%;
    max-width: 288px;
  }
  .step__card-icon {
    width: 200px !important;
    height: 200px !important;
  }
  .step__card-title { font-size: 18px; }
  .step__card-desc { font-size: 14px; line-height: 24px; }
  .step__polygon {
    display: none;
  }
  .step__down-arrow {
    display: block !important;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
  .step__cta-label {
    /*width: 100% !important;*/
    max-width: 300px;
  }
  .step__cta-shadow {
    width: calc(100% - 0px) !important;
    max-width: 300px;
  }
	
  
 
  /* Features */
/*section.features {
  position: relative !important;
  width: 100% !important;
}
section.features .features-inner {
  width: 1200px !important;
  margin: 0 auto !important;
}*/
/* Steps */
section.features .steps {
  width: 1100px !important;
  margin: 0 auto 120px !important;
}
/* ---------- NEWS ---------- */
  section.news {
    padding: 60px 0 !important;
    height: auto !important;
  }
  section.news .news-inner {
        max-width: 100% !important; /* ← max-widthの制限を解除 */
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto 60px !important; /* ← 左右autoで中央、下だけ余白 */
    }
  .news-title { font-size: 28px !important; letter-spacing: 4px !important; }
  .news-sub { font-size: 14px !important; }
  .news-list { gap: 15px;max-width: 1000px;
margin: 0 auto 40px !important; } 
  .news-item {
    height: auto !important;
    min-height: 80px;
    flex-wrap: wrap;
    padding: 15px !important;
    gap: 8px !important;
    position: relative;
  }
  .news-date { font-size: 14px !important; width: auto; }
  .news-new { font-size: 10px !important; padding: 2px 6px !important; }
  .news-cat { font-size: 10px !important; padding: 2px 6px !important; }
  .news-body {
    width: 100%;
    flex: none !important;
    font-size: 14px !important;
    white-space: normal !important;
    line-height: 22px !important;
    order: 4;
  }
  .news-arrow {
    width: 40px !important;
    height: 40px !important;
    position: absolute;
    right: 10px;
    top: 10px;
  }
	
  /* ---------- FAQ ---------- */
  .faq { padding: 60px 0; }
  .faq-inner {
    width: 100% !important;
    max-width: 370px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .faq-title { font-size: 28px !important; letter-spacing: 4px !important; }
  .faq-sub { font-size: 14px !important; }
  .faq-q-row { padding: 15px 0; }
  .faq-q-letter { font-size: 24px !important; width: 30px !important; }
  .faq-q-text { font-size: 15px !important; }
  .faq-answer { padding: 0 0 15px 40px !important; }
  .faq-a-letter { font-size: 24px !important; }
  .faq-a-text {
    font-size: 14px !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
  }
  .faq-list { margin-bottom: 40px !important; }

  /* ---------- RISK DISCLOSURE ---------- */
  .risk-box {
    width: 100% !important;
    max-width: 370px;
    margin: 0 auto;
    padding: 25px 15px !important;
  }
  .risk-corner { width: 40px; height: 40px; }
  .risk-title { font-size: 16px !important; margin-bottom: 15px !important; }
  .risk-list { padding-left: 15px !important; }
  .risk-list li {
    font-size: 12px !important;
    line-height: 22px !important;
  }

  /* ---------- FOOTER ---------- */
  footer.footer { height: auto !important; min-height: 500px; }
  .footer-content {
    width: 100% !important;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 50px 20px 0;
  }
  .footer-logo { width: 120px; height: auto; }
  .footer-links {
    /*align-items: center !important;*/
    gap: 15px;
  }
  .footer-link { font-size: 13px !important; text-align: center; }
  .footer-bottom {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    padding: 20px 15px 30px;
  }
  .footer-nav {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    line-height: 2 !important;
  }
  .footer-copy { font-size: 10px !important; }
}