@charset "UTF-8";

:root {
  --green-dark: #38aa37;
  --green-light: #56b755;
  --pale-yellow: #FFFEE2;
  --orange: #ea5539;
  --text-dark: #2d2d2b;
  --divider: #dbdbdb;
}

.font-type2 {
  font-family: "Hiragino Kaku Gothic std";
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

.lp {
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 100px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

/* ---------- とは box ---------- */
.hero__toha {
  position: relative;
  z-index: 2;
  margin-top: -2%;
}

.hero__toha-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__toha-inner {
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: -12px;
}

.hero__toha-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__toha-label img {
  height: 21px;
}

.hero__toha-label span {
  font-weight: 900;
  font-size: 16px;
  color: #2d2d2b;
  letter-spacing: 0.05em;
}

.hero__toha-text {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #2d2d2b;
  letter-spacing: 0.03em;
  margin: 0;
}

/* ---------- Download link row (shared pattern) ---------- */
.dl-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dl-link__group {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  padding:  0;
}

.dl-link__group::before {
  content: "";
  width: 14px;
  height: 40px;
  background-image: url(assets/slash-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-top: 10px;
}

.dl-link__group::after {
  content: "";
  width: 14px;
  height: 40px;
  background-image: url(assets/slash-left.svg);
  transform: scaleX(-1); 
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-top: 10px;
}


.dl-link__icon {
  width: 51px;
  height: 51px;
  flex-shrink: 0;
}

.dl-link__text {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.dl-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.dl-badges img {
  height: 50px;
  width: auto;
}

.store-badge-img {
  height: 44px;
  width: auto;
}

/* ---------- Coins + step banner ---------- */
.coins-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.join-pill-wrap {
  display: block;
  background: var(--orange);
}
.join-pill {
  display: block;
  border: 2px solid #fff;
  border-radius: 15px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 2px 24px;
  white-space: nowrap;
  margin: 0 auto;
  max-width: 120px;
}

/* ---------- STEP section ---------- */
.step-section {
  background: var(--orange);
  padding: 20px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  column-gap: 10px;
  position: relative;
}

.step-card__badge {
  position: absolute;
  top: 0;
  left: 88px;
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1px 12px;
  border-radius: 0 0 11.5px 0;
}

.step-card__image {
  width: 100%;
  height: auto;
  margin-top: -12px;
  overflow: hidden;
}

.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.step-card__body {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 14px;
}

.step-card__note {
  font-size: 10px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  margin-top: 8px;
}

/* ---------- CTA banner (download link, repeated) ---------- */
.cta-section {
  background: var(--pale-yellow);
  padding: 20px;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 420px;
  z-index: 100;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.floating-cta .cta-section {
  padding: 16px 20px;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--green-light);
  padding: 24px 0 40px;
}

.faq-heading {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}

.faq-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 0 rgba(30, 113, 30, 0.6);
  padding: 16px 20px 20px;
}

.faq-card__q {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-card__q-badge {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-card__q-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.faq-card__divider {
  border: none;
  border-top: 1px dashed var(--divider);
  margin: 16px 0;
}

.faq-card__a {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
  white-space: pre-line;
}
/* ---------- Campaign-section ---------- */
.campaign-section {
  background: #2B8C2A;
  padding: 22px 20px 23px;
}

.info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px;
}


/* ---------- Footer ---------- */
.footer {
  background: var(--green-light);
  padding: 22px 20px 23px;
}

.footer-note {
  color: #fff;
  font-size: 9px;
}