@charset "UTF-8";

/* ============================================================
   MoriPay — ご利用ガイド (guide.css)
   ============================================================ */
      /* ---------- 0. Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* palette */
  --color-bg: #ffffff;
  --color-bg-alt: #f7faf9;
  --color-bg-deep: #f0f6f5;
  --color-ink: #0a1a1c;
  --color-ink-2: #2a3a3c;
  --color-muted: #6a7a7c;
  --color-line: #e6ebea;

  --color-primary: #00a0ab;
  --color-primary-dark: #007a82;
  --color-primary-soft: #e6faf7;

  --grad-splash: linear-gradient(
    135deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.87) 88%
  );
  --grad-splash-deep: linear-gradient(
    135deg,
    #00cbd4 0%,
    #00a0ab 50%,
    #007a82 100%
  );

  --shadow-xs: 0 1px 2px rgba(10, 26, 28, 0.04);
  --shadow-sm: 0 4px 14px rgba(10, 26, 28, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 26, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 26, 28, 0.12);
  --shadow-glow: 0 20px 60px -10px rgba(0, 160, 171, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container-max: 1280px;
  --container-pad: 24px;

  --font-jp:
    "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Aclonica", sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 28px;
  appearance: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg {
  height: 56px;
  padding: 0 28px;
  font-size: 15px;
}

.btn--primary {
  color: var(--grad-splash);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(
    120deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.954) 88%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.btn--primary:is(:hover, :active) {
  background: rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    120deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.954) 88%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  color: rgba(56, 178, 215, 0.495);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn--ghost:is(:hover, :active) {
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.btn--on-banner {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--on-banner:is(:hover, :active) {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
}

.btn--dark {
  background: var(--color-ink);
  color: #fff;
  padding: 0 22px;
  gap: 12px;
}
.btn--dark:is(:hover, :active) {
  background: #1c2c2e;
  transform: translateY(-2px);
}
.btn-app__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.btn-app__text small {
  font-size: 10px;
  opacity: 0.75;
  font-weight: 500;
}
.btn-app__text strong {
  font-size: 14px;
  font-weight: 700;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(230, 235, 234, 0);
  transition:
    border-bottom-color 0.3s,
    background 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-line);
  background: rgba(255, 255, 255, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.header__logo img {
  height: 28px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 12px;
}
.header__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.2s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.header__nav a:hover {
  color: var(--color-primary);
}
.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  padding: 0 28px;
  height: 44px;
  font-size: 13px;
  background: var(--grad-splash);
  color: #fff;
}
.header__cta:is(:hover, :active, :focus-visible) {
  background: var(--grad-splash);
  box-shadow: 0 12px 28px rgba(0, 160, 171, 0.35);
}
.header__cta-full {
  display: inline;
}
.header__cta-short {
  display: none;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.2s;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 24px 40px -12px rgba(10, 26, 28, 0.12);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.25s ease;
  pointer-events: none;
}
.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer__inner {
  padding: 8px var(--container-pad) 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__nav a {
  display: block;
  padding: 18px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
  transition:
    color 0.2s,
    padding-left 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer__nav a:is(:hover, :active) {
  color: var(--color-primary);
  padding-left: 8px;
}
.drawer__cta {
  margin: 12px auto 4px;
  align-self: center;
  padding: 0 24px;
  height: 44px;
  border-radius: 999px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--color-primary) border-box;
}

.drawer__cta:is(:hover, :active) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.guide {
  --c-brand: #00a0ab;
  --c-ink: #0a1a1c;
  --c-sub: #5f6e70;
  --c-line: #e6ecec;

  /* STEP 컬러 */
  --c-s1: #00a0ab;
  --c-s2: #3182f6;
  --c-s3: #f0992a;

  font-family: 'Noto Sans JP', sans-serif;
  color: var(--c-ink);
  line-height: 1.6;
}

.guide section { width: 100%; }
.step[id] { scroll-margin-top: 70px; }

.guide .step__inner,
.guide-hero__inner,
.about__inner,
.trouble__inner,
.guide-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.guide-hero {
  background: linear-gradient(160deg, rgba(0,203,212,1) 12%, rgba(95,223,156,0.96) 60%, rgba(190,242,100,0.9) 96%);
  padding: 40px 0 0;
  text-align: center;
  overflow: hidden;
}
.guide-hero__chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  backdrop-filter: blur(2px);
}
.guide-hero__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}
.guide-hero__visual {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.guide-hero__img {
  width: 260px;
  max-width: 260px;
  display: block;
}

/* ============================================================
   STEP 공통
   ============================================================ */
.step { --c-step: var(--c-brand); }
.step--1 { --c-step: var(--c-s1); }
.step--2 { --c-step: var(--c-s2); background: #f3f6fb; }
.step--3 { --c-step: var(--c-s3); }

.step .step__inner {
  padding-top: 44px;
  padding-bottom: 44px;
}

.step__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}
.step__badge {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-step);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.step__badge-label { font-size: 9px; font-weight: 500; opacity: 0.85; }
.step__badge-num { font-size: 18px; font-weight: 700; margin-top: 2px; }
.step__headtext { padding-top: 4px; }
.step__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-step);
  margin-bottom: 4px;
}
.step__title {
  font-size: 23px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.step__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
  padding-left: 66px;
}
.step__metabadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-step);
  background: color-mix(in srgb, var(--c-step) 10%, #fff);
  padding: 4px 10px;
  border-radius: 999px;
}
.step__lead {
  font-size: 14px;
  color: var(--c-sub);
  line-height: 1.8;
  margin: 0 0 22px;
}

/* ---------- STEP1 : 카드 비주얼 ---------- */
.card-visual {
  background: #eafafa;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.card-visual__img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
}

/* ---------- STEP1 : DELIVERY 카드 ---------- */
.delivery {
  background: var(--c-s1);
  border-radius: 18px;
  padding: 26px 24px;
  color: #fff;
}
.delivery__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: 10px;
}
.delivery__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 18px;
}
.delivery__note {
  font-size: 13px;
  opacity: 0.9;
  margin: -10px 0 16px;
}
.delivery__list { margin: 0; }
.delivery__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.delivery__row dt { margin: 0; font-weight: 500; }
.delivery__row dd { margin: 0; opacity: 0.88; font-weight: 500; }

/* ---------- STEP1 : 5つのサービス ---------- */
.bundle { margin-top: 32px; }
.bundle__title {
  font-size: 18px;
  font-weight: 700;
  border-left: 4px solid var(--c-s1);
  padding-left: 11px;
  margin: 0 0 8px;
}
.bundle__lead {
  font-size: 13px;
  color: var(--c-sub);
  line-height: 1.7;
  margin: 0 0 16px;
}
.bundle__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.bundle__item {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 18px;
}
.bundle__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bundle__icon img { width: 28px; height: 28px; object-fit: contain; }
.bundle__icon--esim { background: #eeedfe; }
.bundle__icon--taxi { background: #faeeda; }
.bundle__icon--ins  { background: #fbeaf0; }
.bundle__name { font-size: 16px; font-weight: 700; margin: 2px 0 6px; }
.bundle__tag-no1 {
  font-size: 10px;
  font-weight: 700;
  color: #d4537e;
  margin-left: 4px;
}
.bundle__desc {
  font-size: 13px;
  color: var(--c-sub);
  line-height: 1.7;
  margin: 0 0 10px;
}
.bundle__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bundle__tags span {
  font-size: 11px;
  color: var(--c-sub);
  background: #f1f3f3;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   Moripayとは
   ============================================================ */
.about { padding: 8px 0; }
.about .about__inner { padding-top: 40px; padding-bottom: 40px; text-align: center; }
.about__title { font-size: 22px; font-weight: 700; margin: 0 0 12px; }
.about__lead {
  font-size: 13px;
  color: var(--c-sub);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 28px;
}
.about__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about__feat {
  background: #f7f9f9;
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
}
.about__feat-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(0, 160, 171, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about__feat-icon img { width: 24px; height: 24px; object-fit: contain; }
.about__feat-title { font-size: 14px; font-weight: 700; margin: 0 0 7px; }
.about__feat-desc { font-size: 12px; color: var(--c-sub); line-height: 1.7; margin: 0; }

/* ============================================================
   이미 보유 / 신규 신청
   ============================================================ */
.cardtab {
  margin: 16px 0;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.cardtab__nav { display: flex; }
.cardtab__btn {
  flex: 1;
  background: #f4f6f6;
  border: none;
  padding: 15px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-sub);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.cardtab__btn.is-active {
  background: #fff;
  color: var(--c-s1);
  border-bottom-color: var(--c-s1);
}
.cardtab__panel { display: none; padding: 22px 20px; }
.cardtab__panel.is-active { display: block; }
.cardtab__heading { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.cardtab__lead { font-size: 13px; color: var(--c-sub); line-height: 1.7; margin: 0 0 16px; }
.cardtab__steps {
  list-style: none;
  counter-reset: ct;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cardtab__steps li {
  counter-increment: ct;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.cardtab__steps li::before {
  content: counter(ct);
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0, 160, 171, 0.12);
  color: var(--c-s1);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cardtab__steps li span { font-size: 13px; color: var(--c-ink); line-height: 1.6; padding-top: 1px; }
.cardtab__cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  background: var(--c-s1);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.cardtab__cta:hover { transform: translateY(-1px); opacity: 0.94; }

/* ============================================================
   앱 다운로드 (STEP02)
   ============================================================ */
.appdl { margin-top: 28px; }
.appdl__title {
  font-size: 16px;
  font-weight: 700;
  border-left: 4px solid var(--c-s2);
  padding-left: 11px;
  margin: 0 0 8px;
}
.appdl__lead { font-size: 13px; color: var(--c-sub); line-height: 1.7; margin: 0 0 16px; }
.appdl__steps {
  list-style: none;
  counter-reset: ad;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.appdl__steps li {
  counter-increment: ad;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
}
.appdl__steps li::before {
  content: counter(ad);
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #e6f1fb;
  color: var(--c-s2);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appdl__step-name { font-size: 14px; font-weight: 700; margin: 0 0 3px; }
.appdl__step-desc { font-size: 12px; color: var(--c-sub); line-height: 1.6; margin: 0; }
.appdl__badges { display: flex; gap: 12px; justify-content: center; }
.appdl__badge { display: block; }
.appdl__badge img { height: 44px; width: auto; }

/* ============================================================
   STEP 연결 화살표
   ============================================================ */
.step-connector {
  text-align: center;
  color: #cdd6d7;
  padding: 16px 0;
}
.step-connector svg { display: inline-block; }

/* ---------- STEP2 : 폰 목업 ---------- */
.phones { margin-bottom: 24px; }
.phones__img { width: 100%; display: block; }

/* ---------- STEP2 : 3つのチャージ方法 ---------- */
.charge__title {
  font-size: 16px;
  font-weight: 700;
  border-left: 4px solid var(--c-s2);
  padding-left: 11px;
  margin: 0 0 12px;
}
.charge__list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.charge__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
}
.charge__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #eef2f8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.charge__icon img { width: 24px; height: 24px; object-fit: contain; }
.charge__body { flex: 1; min-width: 0; }
.charge__name { font-size: 14px; font-weight: 700; margin: 0 0 2px; }
.charge__desc { font-size: 11px; color: var(--c-sub); margin: 0; line-height: 1.5; }
.charge__speed {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-s2);
  background: #e6f1fb;
  padding: 4px 9px;
  border-radius: 8px;
  flex-shrink: 0;
}
.charge__note {
  display: flex;
  gap: 10px;
  background: #faeeda;
  border-radius: 12px;
  padding: 15px 17px;
}
.charge__note-icon { font-size: 16px; line-height: 1.4; }
.charge__note-title { font-size: 13px; font-weight: 700; color: #854f0b; margin: 0 0 3px; }
.charge__note-desc { font-size: 12px; color: #9a7430; line-height: 1.6; margin: 0; }

/* ---------- 利用シーン ---------- */
.usegrid {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.usegrid__item {
  background: #f4f6f7;
  border-radius: 16px;
  padding: 18px;
}
.usegrid__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.usegrid__icon img { width: 26px; height: 26px; object-fit: contain; }
.usegrid__name { font-size: 16px; font-weight: 700; margin: 0 0 5px; }
.usegrid__desc { font-size: 12px; color: var(--c-sub); line-height: 1.6; margin: 0; }

/* ---------- STEP3 : AFTER RETURN ---------- */
.afterreturn {
  background: #fcecdf;
  border-radius: 18px;
  padding: 24px;
}
.afterreturn__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--c-s3);
  margin-bottom: 7px;
}
.afterreturn__title { font-size: 18px; font-weight: 700; margin: 0 0 9px; }
.afterreturn__desc { font-size: 13px; color: #7a5a3a; line-height: 1.7; margin: 0 0 14px; }
.afterreturn__checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.afterreturn__checks li {
  position: relative;
  font-size: 13px;
  color: var(--c-ink);
  padding-left: 22px;
}
.afterreturn__checks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--c-s3);
  font-weight: 700;
}

/* ============================================================
   困ったときは
   ============================================================ */
.trouble { padding: 8px 0 8px; }
.trouble .trouble__inner { padding-top: 28px; padding-bottom: 28px; }
.trouble__title { font-size: 18px; font-weight: 700; margin: 0 0 14px; }
.trouble__list { list-style: none; margin: 0 0 12px; padding: 0; }

.trouble__item {
  border-bottom: 1px solid var(--c-line);
}

.trouble__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.trouble__qm {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-brand);
  line-height: 1.5;
  width: 22px;
}

.trouble__qt {
  flex: 1;
}

.trouble__chev {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8b0b1;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s;
  margin-top: 4px;
}
.trouble__chev svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trouble__item.is-open .trouble__q {
  color: var(--c-brand);
}

.trouble__item.is-open .trouble__chev {
  transform: rotate(180deg);
  color: var(--c-brand);
}

.trouble__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trouble__a-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 8px 24px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s;
}

.trouble__item.is-open .trouble__a-inner {
  opacity: 1;
  transform: translateY(0);
}

.trouble__am {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2a3a3c;
  line-height: 1.7;
  width: 22px;
}

.trouble__text {
  margin: 0;
  color: var(--c-sub);
  font-size: 14px;
  line-height: 1.85;
}
.trouble__text + .trouble__text {
  margin-top: 12px;
}

.trouble__more {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-brand);
  text-decoration: none;
}
.trouble__more:hover { text-decoration: underline; }

/* ============================================================
   CTA
   ============================================================ */
.guide-cta {
  padding: 8px 16px 28px;
}
.guide-cta__inner {
  background: linear-gradient(135deg, rgba(0,203,212,1) 17%, rgba(95,223,156,0.94) 63%, rgba(190,242,100,0.87) 88%);
  border-radius: 20px;
  padding: 34px 24px 0;
  text-align: center;
  overflow: hidden;
}
.guide-cta__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 22px;
}
.guide-cta__actions { display: flex; flex-direction: column; gap: 11px; max-width: 320px; margin: 0 auto; }
.guide-cta__btn {
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.guide-cta__btn:hover { transform: translateY(-1px); }
.guide-cta__btn--primary { background: #ffd84d; color: #5a4a00; }
.guide-cta__btn--ghost { border: 1.5px solid rgba(255, 255, 255, 0.65); color: #fff; }
.guide-cta__img {
  width: 100%;
  max-width: 240px;
  margin: 24px auto 0;
  display: block;
}

/* ============================================================
   DESKTOP
   ============================================================ */
@media (min-width: 1100px) {
  .guide-hero { padding: 56px 0 48px; }
  .guide-hero__title { font-size: 32px; }
  .about .about__inner { padding-top: 56px; padding-bottom: 56px; }
  .step .step__inner { padding-top: 64px; padding-bottom: 64px; }
  .step__title { font-size: 26px; }
  .guide-cta { padding: 8px 0 48px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .guide-cta__btn,
  .cardtab__cta,
  .trouble__arrow,
  .trouble__a { transition: none; }
}