@charset "UTF-8";

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Only animates opacity — keeps transform free for hover */
@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer-sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   KEYVISUAL - Dark Cinematic Hero
   ========================================================================== */
#keyvisual {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background initialized in index.php critical CSS to support responsive selection */
  padding: 120px 0 200px;
  overflow: hidden;
}

/* Dark cinematic overlay */
#keyvisual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 59%) 0%, rgb(255 255 255 / 0%) 40%, rgb(255 255 255 / 0%) 100%);
  z-index: 1;
}

/* Diagonal bottom cut → reveals next section */
#keyvisual::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--c-silk-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 5;
}

#keyvisual .content {
  position: relative;
  width: 92%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  margin: 0 auto;
}

.cp {
  width: 100%;
}




#keyvisual .btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(188, 108, 37, 0.45);
}

/* ==========================================================================
   SECTION HEADER - Bold Overline + Animated Underline
   ========================================================================== */
section h2 {
  padding-bottom: 20px;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-gold-rose));
  border-radius: 2px;
}

/* Section label pill */
.section-label {
  display: inline-block;
  font-family: var(--f-eng);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(188, 108, 37, 0.08);
  border: 1px solid rgba(188, 108, 37, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.sub {
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .sub {
    text-align: left;
  }
}

/* ==========================================================================
   WHY Section - Floating Cards on White
   ========================================================================== */
#why {
  background: var(--c-silk-white);
  position: relative;
  overflow: visible;
  padding-top: 80px;
  padding-bottom: 100px;
}

#why .content {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

#target .box,
#why .box,
#beginner .why-grid .box,
#safety .why-grid .box {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  margin-bottom: 0;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

#why .why-grid--media .box {
  padding: 0;
  display: flex;
  flex-direction: column;
}

#why .why-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #f3ebd9, #e8d8be);
  overflow: hidden;
}

#why .why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#why .why-card-body {
  padding: 28px 28px 32px;
}

#why .why-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--c-charcoal-soft);
}

#why .why-card-body p {
  margin: 0;
  color: var(--c-text-muted);
  line-height: 1.8;
}

/* Shimmer sweep animation on hover */
.why-grid .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  pointer-events: none;
}

.why-grid .box:hover::after {
  animation: shimmer-sweep 0.7s ease forwards;
}

/* Animated gradient top stripe */
.why-grid .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-gold-rose), var(--c-accent));
  background-size: 200% auto;
  animation: gradient-shift 4s linear infinite;
}

.why-grid .box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(188, 108, 37, 0.08);
}

/* Keep old #why .box rule for backward compat */
#why .box {
  background: #fff;
}

.box-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  margin-bottom: 18px;
}

#why h3 {
  color: var(--c-charcoal-soft);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 14px 0 0;
  letter-spacing: -0.01em;
}

.icon-why {
  font-size: 1.7rem;
  color: var(--c-accent);
  background: linear-gradient(135deg, rgba(188, 108, 37, 0.1) 0%, rgba(212, 163, 115, 0.06) 100%);
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 1px solid rgba(188, 108, 37, 0.12);
}

#why .box p {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-top: 12px;
}

#why ul {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 12px auto 0;
}

#why li {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-text-main);
  padding-left: 20px;
  position: relative;
}

#why li::before {
  content: "\2726";
  color: var(--c-accent);
  position: absolute;
  left: 0;
  font-size: 0.65rem;
  top: 5px;
}

/* ==========================================================================
   BEGINNER Section - Bold Dark Slab
   ========================================================================== */
#beginner {
  background: var(--c-charcoal-soft);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin: -40px 0;
  z-index: 2;
}

#beginner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(188, 108, 37, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(212, 163, 115, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Large decorative text */
#beginner::after {
  content: 'SAFE';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-eng);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

#beginner h2 {
  color: #fff;
}

#beginner h2::before,
#beginner h2::after {
  color: var(--c-gold-rose);
}

#beginner>.content {
  position: relative;
  z-index: 1;
}

/* Beginner why-grid boxes */
#beginner .why-grid .box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#beginner .why-grid .box h3 {
  color: #fff;
}

#beginner .why-grid .box p {
  background: none;
  backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: none;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  position: static;
  transition: none;
}

#beginner .why-grid .box p:hover {
  border-color: transparent;
}

#beginner .why-grid .box p::before {
  display: none;
}

/* ==========================================================================
   WORK Section - Full-bleed Image Cards with Caption
   ========================================================================== */
#work {
  background: var(--c-silk-white);
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

#work h2 {
  margin-bottom: 40px;
}

#work .sub {
  margin-top: 40px;
}

.work-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

.work-list li {
  flex: 0 1 calc(50% - 10px);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.work-list li:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .work-list li {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

.work-img-container {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.work-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.work-list li:hover .work-img-container img {
  transform: scale(1.1);
}

.icon-work {
  color: var(--c-accent);
  font-size: 1.1rem;
  margin: 18px 0 4px;
  display: block;
  text-align: center;
}

.work-list li {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-charcoal-soft);
  text-align: center;
  padding-bottom: 22px;
}

/* ==========================================================================
   MONEY Section - Bold Dark Luxury
   ========================================================================== */
#money {
  background: var(--c-charcoal-soft);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-top: -40px;
  margin-bottom: -40px;
  z-index: 2;
}

#money::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 163, 115, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(188, 108, 37, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Ghost watermark */
#money::after {
  content: '¥';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-eng);
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

#money h2 {
  color: #fff;
}

#money h2::before,
#money h2::after {
  color: var(--c-gold-rose);
}

#money .sub,
#beginner .sub {
  color: rgba(255, 255, 255, 0.82);
}

#money .content {
  position: relative;
  z-index: 1;
}

#money .pay-example {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url('../img/main/pay.webp') no-repeat center center / cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 70px 40px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#money .pay-example::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-gold-rose), var(--c-accent));
  background-size: 200% auto;
  animation: gradient-shift 3s linear infinite;
}

#money .pay-example h3 {
  font-size: 2rem;
  color: var(--c-gold-rose);
}

#money .pay-example p:first-of-type {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
}

/* Explicitly only target the OLD big-price paragraph if it exists */
#money .pay-example>p:last-of-type:not(.money-note) {
  font-family: var(--f-eng);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, var(--c-gold-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(212, 163, 115, 0.3));
}

#money .money-illustration-box {
  margin-top: 24px;
  opacity: 0.3;
  color: var(--c-gold-rose);
}

/* ---- ギャラの目安テーブル ---- */
.money-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.money-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.money-job-name {
  color: #fff;
  font-size: 0.9rem;
}

.money-price {
  font-family: var(--f-eng);
  font-weight: 900;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #fff, var(--c-gold-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.money-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.money-continue-heading {
  margin-top: 36px;
  font-size: 1.5rem;
  color: var(--c-gold-rose);
}

.money-continue-desc {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
}



#money .btn {
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold-rose));
  color: #fff;
  border: none;
}

/* ==========================================================================
   FLOW Section - Oversized Number Steps
   ========================================================================== */
#flow {
  background: var(--c-silk-white);
  padding-top: 160px;
  position: relative;
  z-index: 1;
}

.steps {
  counter-reset: step;
  margin-top: 30px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps li {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 36px 30px 36px 100px;
  position: relative;
  list-style: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

/* Oversized ghost number watermark */
.steps li::after {
  content: counter(step);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-eng);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Gradient circle number badge */
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold-rose));
  color: #fff;
  border-radius: 16px;
  font-family: var(--f-eng);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(188, 108, 37, 0.35);
}

.steps li:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(188, 108, 37, 0.15);
}

.steps li h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-charcoal-soft);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.steps li p {
  color: var(--c-text-muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================================
   FAQ Section - Modern Accordion Cards
   ========================================================================== */
#qa {
  background: var(--c-silk-ivory);
  position: relative;
}

.qa {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 45px;
  transition: all 0.3s ease;
}

.qa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(188, 108, 37, 0.15);
}

.qa h3 {
  background: var(--c-charcoal-soft);
  color: #fff;
  padding: 20px 20px 20px 68px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  line-height: 1.6;
}

.qa h3::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold-rose));
  color: #fff;
  font-family: var(--f-eng);
  font-weight: 900;
  font-size: 0.85rem;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa p {
  padding: 22px 22px 22px 68px;
  margin: 0;
  color: var(--c-text-main);
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.85;
  position: relative;
}

.qa p::before {
  content: 'A';
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--c-silk-ivory);
  color: var(--c-accent);
  font-family: var(--f-eng);
  font-weight: 900;
  font-size: 0.85rem;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   RULES Section
   ========================================================================== */
#rules {
  background: var(--c-silk-white);
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

#rules .content {
  background: #fff;
  border-radius: 28px;
  padding: 60px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  width: 90%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#rules h2 {
  color: var(--c-accent);
  margin-bottom: 40px;
}

#rules ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 50px;
}

#rules li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-main);
  background: var(--c-silk-white);
  padding: 18px 20px 18px 58px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.25s ease;
}

#rules li:hover {
  transform: translateX(8px);
  border-color: rgba(188, 108, 37, 0.2);
}

#rules li::before {
  content: "\2714";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #06c755;
  font-size: 1.1rem;
  font-weight: 900;
}

/* ==========================================================================
   CTA - Bold Dark Finale
   ========================================================================== */
#cta {
  background: var(--c-charcoal-soft);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  z-index: 3;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 163, 115, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(188, 108, 37, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

#cta .content {
  position: relative;
  z-index: 1;
}

#cta h2 {
  color: #fff;
}

#cta h2::before,
#cta h2::after {
  color: var(--c-gold-rose);
}

#cta p {
  color: rgba(255, 255, 255, 0.6);
}

#cta .btn {
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold-rose));
  color: #fff;
  box-shadow: 0 12px 36px rgba(188, 108, 37, 0.45);
  font-size: 1.05rem;
  padding: 22px 48px;
  border-radius: 14px;
  letter-spacing: 0.05em;
}

#cta .btn:hover {
  box-shadow: 0 20px 50px rgba(188, 108, 37, 0.55);
  transform: translateY(-6px);
}

.cta-banner {
  text-align: center;
  margin-top: 60px;
}

.cta-banner img {
  display: inline-block;
}

/* ==========================================================================
   Desktop Adjustments
   ========================================================================== */
@media (min-width: 768px) {

  #keyvisual {
    padding: 160px 0 220px;
  }


  .lead2 {
    padding: 50px 80px;
  }

  .lead2 ul {
    gap: 18px 40px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  #safety .why-grid,
  #why .why-grid--media {
    grid-template-columns: repeat(2, 1fr);
  }

  #why .box {
    margin-bottom: 0;
    /* grid rows handle spacing */
  }

  .work-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .steps {
    gap: 16px;
  }

  .steps li {
    padding-left: 120px;
    margin-left: 0;
  }
}

/* ==========================================================================
   Decorative Blobs (Ambient)
   ========================================================================== */
.deco-circle {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, rgba(188, 108, 37, 0.08), rgba(212, 163, 115, 0.03));
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: float-up 20s infinite ease-in-out;
}

.deco-1 {
  width: 400px;
  height: 400px;
  top: 5%;
  left: -150px;
}

.deco-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: -100px;
  animation-delay: -5s;
}

.deco-4 {
  width: 350px;
  height: 350px;
  top: 25%;
  left: -100px;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
  animation-delay: -15s;
  animation-direction: reverse;
  animation-duration: 25s;
}

.deco-5 {
  width: 600px;
  height: 600px;
  bottom: 25%;
  left: 20%;
  background: radial-gradient(circle, rgba(188, 108, 37, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  animation-duration: 30s;
}

.deco-circle,
.deco-4,
.deco-5 {
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* Shared: remove underline accent on dark-bg h2 */
#beginner h2::after,
#money h2::after,
#cta h2::after {
  background: none;
}

section {
  position: relative;
  z-index: 1;
}

/* Mobile deco adjustments */
@media (max-width: 767px) {
  .deco-1 {
    width: 200px;
    height: 200px;
    left: -50px;
  }

  .deco-2 {
    width: 150px;
    height: 150px;
    right: -30px;
  }

  .deco-3 {
    width: 250px;
    height: 250px;
    right: -50px;
  }

  .deco-4 {
    width: 180px;
    height: 180px;
    left: -40px;
  }

  .deco-5 {
    width: 300px;
    height: 300px;
    left: 10%;
  }
}

/* Icon utilities */
.icon-money {
  font-size: 3rem;
  color: var(--c-gold-rose);
}

.money-illustration-box {
  margin-top: 20px;
  opacity: 0.3;
}

/* ==========================================================================
   TARGET - こんな方に向いています
   ========================================================================== */
#target {
  background: var(--c-silk-ivory);
  position: relative;
}

#target h2 {
  color: var(--c-charcoal-soft);
}

#target .why-grid .box {
  background: #fff;
}

#target .why-grid .box h3 {
  color: var(--c-charcoal-soft);
  font-size: 1.05rem;
}

#target .why-grid .box p {
  color: var(--c-text-muted);
  font-size: 0.88rem;
}

/* 2-col layout on wider screens */
@media (min-width: 640px) {
  #target .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  #target .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   VOICE - 働く女性の声 (top page snippet)
   ========================================================================== */
#voice {
  background: var(--c-silk-white);
}

#voice .why-grid .box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: left;
}

#voice .why-grid .box .box-header {
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

#voice .why-grid .box h3 {
  color: var(--c-charcoal-soft);
  font-size: 0.95rem;
  margin: 0;
  text-align: left;
}

#voice .why-grid .box p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-top: 0;
  font-style: italic;
}

/* Suppress card ::before top stripe on voice (uses left alignment) */
#voice .why-grid .box::before {
  display: none;
}


/* ==========================================================================
   SAFETY - 身バレ対策
   ========================================================================== */
#safety {
  background: var(--c-charcoal-soft);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Aurora overlay — use separate element pseudo to avoid conflict with .why-grid .box::before */
#safety .content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 163, 115, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(188, 108, 37, 0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#safety .content {
  position: relative;
  z-index: 1;
}

#safety h2 {
  color: #fff;
}

#safety h2::before,
#safety h2::after {
  color: var(--c-gold-rose);
}

#safety .why-grid .box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Suppress shimmer on dark cards (invisible against dark bg) */
#safety .why-grid .box::after {
  display: none;
}

/* Suppress top gradient stripe (conflicts with aurora overlay color) */
#safety .why-grid .box::before {
  display: none;
}


#safety .why-grid .box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.8;
  background: none;
  backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
  position: static;
}

#safety .why-grid .box p::before {
  display: none;
}

#safety .icon-why {
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ==========================================================================
   ICON-WHY emoji rendering fix for all dark sections
   ========================================================================== */
#beginner .icon-why {
  color: transparent;
  text-shadow: 0 0 0 #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   VOICE Section - Card with top image
   ========================================================================== */
.voice-card {
  background: #fff;
  padding: 0;
  overflow: hidden;
  text-align: left;
  margin: auto;
  max-width: 378px;
}

.voice-card::before {
  display: none;
}

.voice-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ede8;
}

.voice-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.voice-card:hover .voice-img-wrap img {
  transform: scale(1.05);
}

.voice-meta {
  margin-bottom: 14px;
}

.voice-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-charcoal-soft);
  margin: 0 0 4px;
}

.voice-tag {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin: 0;
}

.voice-quote {
  font-style: italic;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}