/* ==========================================================
   Bakery Chappie オンラインショップ
   カンプ基準: コンテンツ幅1280px中央揃え / 背景フルブリード
   色: 背景 #F6EBD6 / 濃茶 #3E2C23 / オレンジ #F06723
   ========================================================== */

:root {
  --beige: #F6EBD6;
  --cream-bg: #FBF6EC;
  --brown: #3E2C23;
  --orange: #F06723;
  --line-beige: #E8D9BF;
  --panel-beige: #F6E8CF;
  --font-body: "Noto Sans JP", sans-serif;
  --font-heading: "Yusei Magic", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--brown);
  background-color: #F0DEC1;
  line-height: 1.8;
}

/* 麦柄はこの3セクションのみ */
.section-products,
.section-order,
.section-faq {
  background-image: url("../image/bg/wheat_pattern_light.webp");
  background-size: 720px auto;
}

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

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 60px;
}

section { scroll-margin-top: 130px; }

/* ---------- お知らせバー ---------- */
.notice-bar {
  background: var(--brown);
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  padding: 9px 16px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 1px 6px rgba(62, 44, 35, 0.08);
}
.header-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 0 240px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
/* ロゴはページ先頭に固定配置（スクロールに追従しない） */
.header-logo {
  position: absolute;
  top: 50px;
  left: max(16px, calc((100% - var(--content-width)) / 2 + 16px));
  width: 200px;
  aspect-ratio: 1 / 1;
  background: var(--beige);
  border: 3px solid var(--brown);
  border-radius: 50%;
  padding: 20px;
  z-index: 101;
}
.header-logo img { width: 100%; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
}
.nav-list a:hover { color: var(--orange); }
.nav-toggle { display: none; }
.cart-button {
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  color: var(--brown);
  padding: 6px;
}
.cart-button svg { width: 100%; height: 100%; }
.cart-button:hover { color: var(--orange); }

/* ---------- ヒーロー ---------- */
.hero {
  background-image: url("../image/hero/hero_bread_tray.webp");
  background-size: cover;
  background-position: center;
}
.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 150px 60px 120px;
}
.hero-copy { max-width: 650px; }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.hero-lead {
  margin-top: 28px;
  font-size: 16px;
  line-height: 2.2;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  min-width: 256px;
  height: 70px;
  padding: 0 44px;
  border-radius: 39px;
  background: var(--orange);
  color: #FFFFFF;
  font-size: 20px;
  transition: filter 0.2s ease;
}
.hero-cta:hover { filter: brightness(1.08); }

/* ---------- セクション共通 ---------- */
.section { padding: 80px 0; }
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.05em;
}
.heading-chappy { width: 96px; }
.section-lead {
  text-align: center;
  font-size: 15px;
  margin-top: 22px;
  margin-bottom: 50px;
}

/* ---------- 商品を選ぶ ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.product-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(62, 44, 35, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-photo {
  position: relative;
  aspect-ratio: 59 / 44;
  overflow: hidden;
}
.product-photo.is-tall { aspect-ratio: 59 / 56; }
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ship-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
}
.ship-free { background: var(--orange); color: #FFFFFF; }
.ship-paid { background: #FFFFFF; color: var(--brown); border: 1px solid var(--brown); }

.thumb-list {
  display: flex;
  gap: 8px;
  padding: 14px 20px 0;
  overflow-x: auto;
}
.thumb-list button {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: none;
}
.thumb-list button.is-active { border-color: var(--orange); }
.thumb-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 28px 28px;
}
.purpose-label {
  align-self: flex-start;
  background: var(--brown);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
}
.product-name {
  font-size: 21px;
  font-weight: 700;
  margin-top: 14px;
}
.product-desc {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 10px;
}
.img-note {
  font-size: 12px;
  color: rgba(62, 44, 35, 0.7);
}
.product-contents {
  display: flex;
  justify-content: space-between;
  align-items: center; /* リストの行数が変わってもチャッピーは常に縦中央 */
  gap: 20px;
  margin-top: 18px;
}
.contents-title { font-weight: 700; font-size: 15px; }
.contents-list ul { font-size: 15px; line-height: 1.95; margin-top: 2px; }
.chappy-guide {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  padding: 0 12px;
}
.speech-bubble {
  position: relative;
  background: #FFFFFF;
  border: 2px solid var(--brown);
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  padding: 8px 14px;
}
.speech-bubble::after,
.speech-bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
}
.speech-bubble::before {
  bottom: -12px;
  border-width: 12px 8px 0 8px;
  border-color: var(--brown) transparent transparent transparent;
}
.speech-bubble::after {
  bottom: -8px;
  border-width: 9px 6px 0 6px;
  border-color: #FFFFFF transparent transparent transparent;
}
.chappy-pose { height: 116px; width: auto; }
.chappy-pose.is-flipped { transform: scaleX(-1); }

.product-price {
  margin-top: auto;
  padding-top: 18px;
  text-align: right;
}
.product-price strong {
  color: var(--orange);
  font-size: 26px;
  font-weight: 700;
}
.product-price .tax {
  color: var(--orange);
  font-size: 13px;
  margin-left: 6px;
}
.shipping-note {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.cart-cta {
  margin-top: 14px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: #FFFFFF;
  font-size: 16px;
  transition: filter 0.2s ease;
}
.cart-cta:hover { filter: brightness(1.08); }
.cart-cta.is-disabled {
  background: #B9B0A7;
  cursor: default;
}

/* ---------- ご注文について ---------- */
.assurance-list {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 64px;
}
.assurance-item { text-align: center; }
.assurance-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.assurance-icon img { width: 60px; height: 60px; }
.assurance-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  margin-top: 20px;
}
.assurance-note {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(62, 44, 35, 0.7);
  margin-top: 12px;
}

.order-table-card {
  position: relative;
  max-width: 930px;
  margin: 72px auto 0;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(62, 44, 35, 0.07);
}
.order-table-bar {
  position: relative;
  background: var(--brown);
  border-radius: 20px 20px 0 0;
  padding: 22px 36px;
}
.order-table-bar h3 {
  color: var(--beige);
  font-size: 17px;
  font-weight: 700;
}
.bar-toast {
  position: absolute;
  right: 34px;
  top: -16px;
  height: 82px;
  width: auto;
}
.order-table { padding: 6px 40px 26px; }
.order-row {
  display: flex;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-beige);
}
.order-row:last-child { border-bottom: none; }
.order-row dt {
  flex: 0 0 200px;
  font-weight: 700;
  font-size: 16px;
}
.order-row dd { flex: 1; font-size: 16px; }
.deco-campagne {
  position: absolute;
  left: -58px;
  bottom: -26px;
  width: 118px;
  transform: rotate(-8deg);
}

.order-steps-wrap {
  position: relative;
  max-width: 1160px;
  margin: 60px auto 0;
}
.order-steps {
  background: var(--panel-beige);
  border-radius: 20px;
  padding: 48px 30px 44px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
}
.order-step { text-align: center; width: 118px; }
.step-no {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.step-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
}
.step-circle img { width: 42px; height: 42px; }
.step-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 12px;
}
.step-arrow {
  align-self: center;
  font-size: 20px;
  margin-top: 26px;
}
.deco-baguette {
  position: absolute;
  right: -30px;
  bottom: -52px;
  width: 150px;
  transform: rotate(12deg);
}
.demo-note {
  text-align: center;
  font-size: 14px;
  color: rgba(62, 44, 35, 0.68);
  margin-top: 34px;
}

/* ---------- おいしいお召し上がり方 ---------- */
.howto-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.howto-step { flex: 1; max-width: 288px; }
.howto-photo {
  position: relative;
  aspect-ratio: 1 / 0.93;
}
.howto-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.howto-no {
  position: absolute;
  top: -16px;
  left: -14px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howto-arrow {
  align-self: flex-start;
  color: var(--orange);
  font-size: 15px;
  margin-top: 122px;
}
.howto-caption { margin-top: 4px; }
.howto-label-row {
  display: flex;
  justify-content: center;
}
/* チャッピーは写真の左下に重ねる（.howto-photo img の指定より優先させる） */
.howto-photo img.howto-chappy {
  position: absolute;
  left: 8px;
  bottom: -30px;
  width: auto;
  height: 100px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(62, 44, 35, 0.2));
}
.howto-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 19px;
  margin-top: 40px;
}
.howto-text {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-top: 10px;
  padding: 0 12px;
}

/* ---------- よくあるご質問 ---------- */
.faq-list { max-width: 930px; margin: 50px auto 0; }
.faq-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(62, 44, 35, 0.07);
  padding: 32px 40px;
  margin-bottom: 34px;
}
.faq-q, .faq-a {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.faq-q { align-items: center; }
.faq-a { margin-top: 18px; }
.faq-badge {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-badge.q { background: var(--orange); }
.faq-badge.a { background: var(--brown); }
.faq-q h3 { font-size: 17px; font-weight: 700; }
.faq-a p { font-size: 15px; line-height: 2.1; padding-top: 2px; }
.faq-contact {
  text-align: center;
  font-size: 15px;
  margin-top: 46px;
}
.faq-contact a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--brown);
  color: var(--beige);
  padding: 60px 0 42px;
  margin-top: 20px;
}
.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 60px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
.footer-logo { width: 170px; flex: 0 0 auto; }
.footer-nav {
  display: flex;
  gap: 90px;
  margin-left: 60px;
  padding-top: 8px;
}
.footer-nav ul { font-size: 16px; }
.footer-nav li { margin-bottom: 18px; }
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-sns {
  display: flex;
  gap: 16px;
  margin-left: 70px;
  padding-top: 10px;
}
.footer-sns img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1); /* アイコンを白色に */
}
.footer-assurance {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 44px;
}
.footer-assurance li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.fa-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fa-icon img { width: 18px; height: 18px; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(246, 235, 214, 0.45);
  margin: 34px 0 26px;
}
.footer-links {
  text-align: center;
  font-size: 12px;
  color: rgba(246, 235, 214, 0.85);
}
.footer-links span { margin: 0 10px; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-copy {
  text-align: center;
  font-size: 16px;
  margin-top: 18px;
}

/* ---------- トップへ戻るボタン ---------- */
#backToTop {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 90;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#backToTop.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
#backToTop:hover { transform: translateY(-3px); }
.btt-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  text-shadow: 0 1px 4px rgba(246, 235, 214, 0.9);
}
.chappie-stage {
  position: relative;
  width: 98px;
  height: 157px;
}
.chappie-sprite {
  position: absolute;
  inset: 0;
  width: 98px;
  height: 157px;
  filter: drop-shadow(0 3px 6px rgba(62, 44, 35, 0.25));
  background-image: url("../image/backtotop/jump_sprite.webp");
  background-repeat: no-repeat;
  background-size: 392px auto;
  background-position: 0 0; /* 待機時＝しゃがみ姿勢（1コマ目） */
}
.chappie-sprite.is-playing {
  /* forwardsを付けないので、終了後は自動でしゃがみ姿勢（0 0）に戻る */
  animation: chappie-jump 0.56s steps(3) 1;
}
@keyframes chappie-jump {
  from { background-position: 0 0; }
  to   { background-position: -294px 0; }
}

/* ---------- デモ案内モーダル ---------- */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(62, 44, 35, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal[hidden] { display: none; }
.demo-modal-box {
  background: var(--beige);
  border-radius: 20px;
  padding: 36px 40px 32px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(62, 44, 35, 0.35);
}
.demo-modal-chappy {
  height: 96px;
  width: auto;
  margin: 0 auto 14px;
}
.demo-modal-box p { font-size: 15px; line-height: 2; }
.demo-modal-close {
  margin-top: 22px;
  min-width: 140px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: #FFFFFF;
  font-size: 15px;
}

/* ==========================================================
   レスポンシブ
   ========================================================== */

/* タブレット〜狭いPC */
@media (max-width: 1080px) {
  .header-inner { padding-left: 200px; }
  .header-logo { width: 160px; }
  .nav-list { gap: 20px; font-size: 15px; }
  .product-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .assurance-list { gap: 60px; }
  .howto-steps { flex-wrap: wrap; }
  .howto-step { flex: 0 0 44%; max-width: 44%; margin-bottom: 40px; }
  .howto-arrow { display: none; }
}

/* スマホ */
@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .section { padding: 56px 0; }
  section { scroll-margin-top: 90px; }

  .notice-bar { font-size: 11px; padding: 8px 12px; }

  /* ヘッダー: ハンバーガー化 */
  .header-inner {
    height: 64px;
    padding: 0 16px 0 120px;
    justify-content: flex-end;
    gap: 10px;
  }
  .header-logo { width: 96px; top: 40px; left: 12px; padding: 10px; }
  .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    position: relative;
    order: 2;
  }
  .nav-toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--brown);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle span:nth-child(1) { top: 14px; }
  .nav-toggle span:nth-child(2) { top: 21px; }
  .nav-toggle span:nth-child(3) { top: 28px; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-list {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    box-shadow: 0 8px 16px rgba(62, 44, 35, 0.12);
  }
  .nav-list.is-open { display: flex; }
  .nav-list li { border-top: 1px solid var(--line-beige); }
  .nav-list li:first-child { border-top: none; }
  .nav-list a { display: block; padding: 14px 24px; }
  .cart-button { order: 1; }

  /* ヒーロー: 文字の下にうっすらベージュの幕を敷いて読みやすく */
  .hero {
    position: relative;
    background-position: 66% center;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(251, 246, 236, 0.92) 0%,
      rgba(251, 246, 236, 0.6) 55%,
      rgba(251, 246, 236, 0.12) 100%);
  }
  .hero-inner { position: relative; padding: 96px 24px 72px; }
  .hero-title { font-size: 30px; }
  .hero-lead { font-size: 14px; line-height: 2; }
  .hero-cta {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    height: 60px;
    font-size: 17px;
  }

  .section-heading { font-size: 28px; gap: 8px; }
  .heading-chappy { width: 64px; }
  .section-lead { font-size: 13px; margin-bottom: 36px; }

  /* 商品カード */
  .product-grid { gap: 32px; }
  .product-body { padding: 18px 20px 22px; }
  .product-name { font-size: 19px; }
  .product-desc { font-size: 14px; }
  .contents-list ul { font-size: 14px; }
  .chappy-pose { height: 96px; }
  .product-contents { flex-wrap: wrap; justify-content: flex-start; }
  .contents-list { width: 100%; text-align: left; }
  .contents-list ul,
  .contents-title { text-align: left; }
  .chappy-guide { margin: 12px auto 0; }
  .product-contents.is-reverse { flex-direction: column-reverse; }

  /* ご注文について */
  .assurance-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 44px;
  }
  .assurance-title br, .assurance-note br { display: none; }
  .order-table-card { margin-top: 52px; }
  .order-table { padding: 4px 22px 18px; }
  .order-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0;
  }
  .order-row dt { flex: none; font-size: 15px; }
  .order-row dd { font-size: 15px; }
  .bar-toast { height: 58px; right: 18px; top: -12px; }
  .deco-campagne { width: 72px; left: -12px; bottom: -20px; }
  .order-steps {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 40px 24px;
  }
  .order-step { width: auto; }
  .step-arrow { margin-top: 0; transform: rotate(90deg); }
  .deco-baguette { width: 90px; right: -6px; bottom: -40px; }

  /* 食べ方 */
  .howto-steps { flex-direction: column; align-items: center; }
  .howto-step { flex: none; max-width: 320px; width: 100%; margin-bottom: 36px; }

  /* FAQ */
  .faq-card { padding: 24px 20px; margin-bottom: 24px; }
  .faq-q h3 { font-size: 15px; }
  .faq-a p { font-size: 14px; line-height: 1.9; }
  .faq-badge { flex-basis: 32px; width: 32px; height: 32px; font-size: 15px; }
  .faq-contact { font-size: 13px; }

  /* フッター */
  .footer-inner { padding: 0 24px; }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .footer-logo { width: 120px; }
  .footer-nav { margin-left: 0; gap: 40px; }
  .footer-sns { margin-left: 0; padding-top: 0; }
  .footer-assurance {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
  }
  .footer-links span { display: block; height: 4px; overflow: hidden; margin: 0; }
  .footer-links { line-height: 2.2; }

  #backToTop { right: 14px; bottom: 14px; }
  .btt-label { font-size: 12px; }
  .chappie-stage,
  .chappie-sprite {
    width: 94px;
    height: 150px;
  }
  .chappie-sprite { background-size: 376px auto; }
  @keyframes chappie-jump {
    from { background-position: 0 0; }
    to   { background-position: -282px 0; }
  }
}
