/* Guide LP — /guide/ */
/* 写真差し替え: assets/img/guide/guide01.webp 〜 guide05.webp */
/* ============================================================
   GUIDE PAGE
   ============================================================ */

.guide-header {
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 7vw, 88px);
}

.guide-header__kicker {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin: 0 0 16px;
}

.guide-header__title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-ink-main);
  margin: 0 0 clamp(16px, 2.5vw, 28px);
}

.guide-header__lead {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  line-height: 1.95;
  color: var(--color-text-soft);
  margin: 0;
  max-width: min(72ch, 100%);
}

.guide-step {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
}

.guide-step--dark {
  background-color: var(--owner-dark-bg);
}

.guide-step--white {
  background-color: var(--color-bg);
}

.guide-step--surface {
  background-color: var(--color-surface-2);
}

.guide-step__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.guide-step--flip .guide-step__img-col {
  order: -1;
}

.guide-step__label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* 暗背景: 本文は十分な明度（--owner-dark-text-soft 単体だと背景に負ける） */
.guide-step--dark .guide-step__content {
  color: var(--owner-dark-text);
}

.guide-step--dark .guide-step__label {
  color: rgba(255, 255, 255, 0.72);
}

.guide-step--white .guide-step__label,
.guide-step--surface .guide-step__label {
  color: var(--color-text-soft);
}

.guide-step__en {
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  letter-spacing: 0.12em;
  margin: 0 0 20px;
}

.guide-step--dark .guide-step__en {
  color: rgba(255, 255, 255, 0.72);
}

.guide-step--white .guide-step__en,
.guide-step--surface .guide-step__en {
  color: var(--color-text-soft);
}

.guide-step__h2 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(18px, 2.5vw, 32px);
}

.guide-step--dark .guide-step__h2 {
  color: var(--owner-dark-text);
}

.guide-step--white .guide-step__h2,
.guide-step--surface .guide-step__h2 {
  color: var(--color-ink-main);
}

.guide-step__body {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  line-height: 2.1;
  margin: 0 0 24px;
}

.guide-step--dark .guide-step__body {
  color: rgba(255, 255, 255, 0.9);
}

.guide-step--white .guide-step__body,
.guide-step--surface .guide-step__body {
  color: var(--color-text-soft);
}

.guide-step__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-step__bullets li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.guide-step__bullets li::before {
  content: "—";
  font-family: var(--font-en);
  font-size: 0.65rem;
  flex: 0 0 auto;
}

.guide-step--dark .guide-step__bullets li {
  color: rgba(255, 255, 255, 0.86);
}

.guide-step--dark .guide-step__bullets li::before {
  color: rgba(255, 255, 255, 0.55);
}

.guide-step--white .guide-step__bullets li,
.guide-step--white .guide-step__bullets li::before,
.guide-step--surface .guide-step__bullets li,
.guide-step--surface .guide-step__bullets li::before {
  color: var(--color-text-soft);
}

.guide-step__img-col {
  display: flex;
  align-items: stretch;
}

.guide-step__img-slot {
  margin: 0;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--owner-img-slot-bg);
}

.guide-step__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.guide-step--dark .guide-step__img-slot {
  background-color: var(--owner-img-slot-dark-bg);
  border: 1px solid var(--owner-img-slot-dark-border);
}

.guide-step--white .guide-step__img-slot,
.guide-step--surface .guide-step__img-slot {
  background-color: var(--owner-img-slot-bg);
}

.guide-step__ghost {
  position: absolute;
  /* 見切れ防止: 下にはみ出さずセクション内に収める */
  bottom: clamp(28px, 5vh, 72px);
  right: clamp(12px, 2vw, 40px);
  font-family: var(--font-en);
  font-size: clamp(108px, 22vw, 260px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.guide-step--dark .guide-step__ghost {
  color: var(--ghost-num-dark);
}

.guide-step--white .guide-step__ghost,
.guide-step--surface .guide-step__ghost {
  color: var(--ghost-num-light);
}

.guide-cta {
  background-color: var(--owner-dark-bg);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}

.guide-cta .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.guide-cta__lead {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: var(--owner-dark-text);
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.guide-cta__link {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--owner-dark-text);
  text-decoration: none;
  border-bottom: 1px solid var(--owner-dark-border);
  padding-bottom: 6px;
  transition: color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}

.guide-cta__link:hover {
  color: var(--color-bg);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .guide-step__inner {
    grid-template-columns: 1fr;
  }

  .guide-step--flip .guide-step__img-col {
    order: 0;
  }

  .guide-step__img-col {
    order: -1;
  }

  .guide-step__img-slot {
    aspect-ratio: 3/2;
  }
}
