@charset "UTF-8";

/* 基本設定 — トップLPのみ（body.page-top-lp） */
body.page-top-lp {
  --primary-green: #8ec31e;
  --dark-green: #6baf4c;
  --accent-pink: #fc7575;
  --accent-blue: #03b5e5;
  --accent-yellow: #ffb000;
  --text-main: #333333;
  --bg-light: white;
  --header-height: 64px;
}

body.page-top-lp {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Figtree", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--primary-green);
  background-image:
    url(../top/img/bg_img.svg), linear-gradient(-20deg, #6baf4c, #8ec31e);
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, fixed;
  background-size: 100%, cover;
}

/* 特異度を抑え、.item-card a 等の個別指定が上書きできるようにする */
.top-lp-root a:not(.btn) {
  text-decoration: none;
  color: inherit;
}


/* サイト共通 .main の余白をトップLPでは打ち消し */
body.page-top-lp .main.top-lp-main {
  padding: 0;
  min-height: auto;
}

.top-lp-root {
  padding-top: var(--header-height); /* ヘッダー分のスペースを確保 */
  overflow: hidden;
  width: 100%;
  padding-bottom: 80px;
}

/* ヘッダー・ヒーローセクション */
.hero {
  text-align: center;
  color: white;
  padding: 8em 1.5em 10em;
  background-image: url(../top/img/bg_circle.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: calc(-15vh + 64px); /* ヘッダーの高さを考慮して調整 */
  right: -15vw;
  width: 35vw;
  height: 24vw;
  background-image: url(../top/img/bg_object_blue.svg);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: calc(-15vh + 64px); /* ヘッダーの高さを考慮して調整 */
  left: -8vw;
  width: 30vw;
  height: 25vw;
  background-image: url(../top/img/bg_object_yellow.svg);
  z-index: 1;
}
.hero h1 {
  font-size: 5em;
  font-family: m-plus-rounded-2c, sans-serif;
  font-weight: 900;
  line-height: 1.8em;
  position: relative;
  z-index: 990;
}
.hero h1 span.hero-logo {
  background-color: white;
  padding: 8px 24px;
  border-radius: 8px;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-right: 1.5rem;
}
.hero h1 span.hero-logo img {
  width: 320px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero h1 span.font-small {
  font-size: 0.6em;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2.5em;
  margin-top: 6.5em;
  position: relative;
  z-index: 990;
}
.btn {
  display: inline-block;
  width: 420px;
  padding: 0.875em 0 0.875em;
  border-radius: 1000px;
  font-size: 2em;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-align: center;
  font-family: m-plus-rounded-2c, sans-serif;
  border: solid 1px white;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-white {
  background-color: white;
  color: var(--text-main);
}
.btn-pink {
  background-color: var(--accent-pink);
  background-image: linear-gradient(-20deg, #ea5b59, #fc7575);
  color: white;
}

/* 共通カードスタイル */
.section-card {
  background: white;
  border-radius: 20px;
  padding: 48px 32px 64px;
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.1);
  background-image: url(../top/img/bg_img_green.svg);
  background-size: 120%;
  background-repeat: repeat;
  background-position: center;
  position: relative;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 64px;
}
.section-title {
  text-align: center;
  color: var(--primary-green);
  font-weight: 900;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "m-plus-rounded-2c", sans-serif;
}
.section-title:nth-of-type(2) {
  margin-top: 2.5em;
}
.section-title-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title-icon img {
  width: 24px;
  height: 22px;
  object-fit: contain;
  object-position: center;
}
.section-desc {
  text-align: center;
  font-size: 0.875em;
  color: var(--text-main);
  margin-bottom: 3.5em;
  margin-top: 1em;
}

/* タブエリア設定 */
.top-lp-tab-section {
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  margin-top: 0;
}
.top-lp-tabs {
  display: flex;
  width: 100%;
  gap: 0.5em;
  height: 4.5em;
  /* style.css の汎用 .tabs（flex-wrap: wrap 等）を打ち消し */
  flex-wrap: nowrap;
  align-items: stretch;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  justify-content: stretch;
  box-sizing: border-box;
}
.top-lp-tab {
  width: calc(50% - 0.125em);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75em;
  font-family: "m-plus-rounded-2c", sans-serif;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  border: solid 1px white;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  box-sizing: border-box;
}
#tab-coly.active {
  background: white;
  color: var(--primary-green);
}
#tab-coly.inactive {
  background: var(--primary-green);
  color: white;
}
#tab-supariku.active {
  background: white;
  color: #3cb5e0;
}
#tab-supariku.inactive {
  background: #3cb5e0;
  color: white;
}

/* タブコンテンツ切り替え設定 */
.top-lp-tab-panel {
  display: none; /* デフォルトは非表示 */
  background-color: white;
  padding: 48px 32px 60px;
  border-radius: 20px; /* temp 20px 20px 0 0; */
  background-image: url(../top/img/bg_img_green.svg);
  background-size: 120%;
  background-repeat: repeat;
  background-position: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.top-lp-tab-panel.active {
  display: flex; /* activeクラス付与で表示 */
}

#content-supariku .section-title {
  color: #3cb5e0;
}
#content-supariku .section-title .section-title-icon {
  background-color: #3cb5e0;
}

/* グリッドレイアウト（ゲーム・グッズ） */
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5em;
  max-width: 960px;
}
.item-card,
a.item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}
a.item-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.item-card:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 4px;
}
.item-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
}
.item-card img.store-img {
  border: solid 1px #a9a9a9;
}
.top-lp-root a.item-card .item-card__title {
  display: block;
  font-weight: 400;
  font-size: 1em;
  margin-top: 1em;
  color: var(--text-main);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.top-lp-root a.item-card:visited .item-card__title {
  color: var(--text-main);
}
.top-lp-root a.item-card:hover .item-card__title {
  color: var(--primary-green);
}
.item-card .badge {
  background: var(--accent-yellow);
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 1em;
  width: 160px;
  height: 32px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* coly IDとは */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 960px;
}
.feature-box {
  border-radius: 20px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.1);
  min-height: 190px;
  padding: 24px 0 32px;
}
.feature-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}
.feature-box h3 {
  font-size: 28px;
  font-weight: 800;
  font-family: "m-plus-rounded-2c", sans-serif;
  margin-top: 20px;
}
.feature-box p {
  margin-top: 12px;
}
.bg-green {
  background-color: var(--primary-green);
}
.bg-pink {
  background-color: var(--accent-pink);
}
.bg-yellow {
  background-color: var(--accent-yellow);
}
.bg-blue {
  background-color: var(--accent-blue);
}

/* ホーム画面追加バナー（スマホ・タブレット向け。PC幅では非表示） */
@media screen and (min-width: 1024px) {
  body.page-top-lp .home-add-banner {
    display: none;
  }
}
.home-add-banner {
  border: 15px solid var(--accent-yellow);
  border-radius: 20px;
  padding: 24px 32px 32px;
  text-align: center;
  width: 100%;
  margin-top: 48px;
  background-color: white;
  max-width: 960px;
}
.home-add-banner h4 {
  color: var(--accent-yellow);
  margin-top: 0;
  font-size: 24px;
  font-weight: 800;
  font-family: "m-plus-rounded-2c", sans-serif;
}
.home-add-desc {
  font-size: 14px;
  color: var(--text-main);
  margin-top: 16px;
}
.os-links {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 40px;
  width: 100%;
}
.os-links .os-links-wrap {
  display: flex;
  gap: 36px;
  line-height: 24px;
}
.os-links .os-links-wrap strong {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-left: 28px;
}
.os-links .os-links-wrap strong::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--accent-blue);
  left: 0;
  top: 6px;
}
.os-links .os-links-wrap .os-links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.top-lp-root .os-links .os-links-wrap .os-links-group a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-size: 16px;
}
.top-lp-root .os-links .os-links-wrap .os-links-group a:visited {
  color: var(--accent-blue);
}
.top-lp-root .os-links .os-links-wrap .os-links-group a:hover {
  opacity: 0.85;
}

/* 登録方法ステップ */
.step-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "m-plus-rounded-2c", sans-serif;
  font-weight: 800;
  width: 100%;
  gap: 32px;
  margin-top: 40px;
  max-width: 980px;
}
.step-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: space-between;
}
.step-title {
  color: var(--primary-green);
  z-index: 990;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
}
.step-box:nth-child(2) .step-title {
  color: var(--accent-yellow);
}
.step-box:nth-child(3) .step-title {
  color: var(--accent-blue);
}
.step-title img {
  width: 80px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.step-content {
  background: var(--primary-green);
  color: white;
  border-radius: 12px;
  margin-top: -8px;
  z-index: 980;
  font-size: 20px;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 8px 8px;
}
.step-box:nth-child(2) .step-content {
  background: var(--accent-yellow);
} /* STEP2 */
.step-box:nth-child(3) .step-content {
  background: var(--accent-blue);
} /* STEP3 */
.step-arrow {
  color: #ccc;
  font-size: 2em;
  margin: 0 10px;
  transform: translateY(15px);
}

.step-content img {
  width: auto;
  height: 44px;
  object-fit: contain;
  object-position: center;
  background-color: white;
  padding: 0 8px;
  border-radius: 4px;
  margin-right: 12px;
}
.step-content img.en {
  height: 36px;
  margin-left: 12px;
  margin-right: 0;
}
.step-footer {
  position: relative;
  text-align: center;
  color: var(--accent-pink);
  font-weight: 800;
  margin-top: 60px;
  border: 2px solid var(--accent-pink);
  padding: 16px 60px;
  border-radius: 8px;
  font-family: "m-plus-rounded-2c", sans-serif;
  font-size: 24px;
}
.step-footer::before {
  position: absolute;
  content: "";
  background-color: var(--accent-pink);
  background-image: url(../top/img/icon/icon_exclamation_w.svg);
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
}
/* 安心・安全セクション */
.security-section {
  background: #00bbff;
  background-image:
    url(../top/img/bg_img_white.svg), linear-gradient(-20deg, #2e81b8, #00bbff);
  background-repeat: repeat, no-repeat;
  background-size: 120%, cover;
  background-position: center, center;
  color: white;
  border: solid 1px white;
}
.security-section .section-title {
  color: white;
}
.security-section .section-title .section-title-icon {
  background-color: white;
}
.security-logos {
  max-width: 920px;
  display: flex;
  gap: 56px;
  margin-top: 40px;
}
.sec-card {
  color: var(--text-main);
  flex: 1;
  border-radius: 10px;
}
.sec-card img {
  background: white;
  width: 100%;
  height: 125px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  padding: 18px 0;
}
.sec-card p {
  color: white;
  margin-top: 20px;
}
.security-banner {
  max-width: 920px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.security-banner h3 {
  font-size: 32px;
  font-family: "m-plus-rounded-2c", sans-serif;
  font-weight: 800;
  height: auto;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-banner h3 img {
  position: relative;
  height: auto;
  width: 100%;
  object-fit: contain;
}
.security-banner h3 span {
  position: absolute;
  padding-bottom: 30px;
}
.security-banner .security-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.security-banner p {
  text-align: center;
  color: white;
  font-size: 40px;
  font-weight: 800;
  font-family: "m-plus-rounded-2c", sans-serif;
}
.highlight-badge {
  background: var(--accent-yellow);
  padding: 0 10px;
  border-radius: 6px;
}

/* ===== Responsive refinements ===== */
body.page-top-lp .top-lp-root img {
  max-width: 100%;
}

.section-card,
.top-lp-tab-panel,
.home-add-banner,
.security-banner,
.feature-grid,
.step-container,
.security-logos {
  width: 100%;
}

/* =================================================================
   レスポンシブ対応 (Media Queries)
   ================================================================= */

/* --- タブレットサイズ以下 (1100px以下) の微調整 --- */
@media screen and (max-width: 1100px) {
  .hero {
    padding: 110px 5% 140px;
    background-size: 55%;
  }
  .hero::before {
    width: 40vw;
    height: 35vw;
  }
  .hero::after {
    width: 40vw;
    height: 32vw;
  }
  .hero h1 {
    font-size: 4.5em;
  }
  .hero h1 span.hero-logo img {
    width: 280px;
  }
  .hero-buttons {
    gap: 32px;
  }
  .btn {
    width: calc(50% - 16px);
    max-width: 400px;
    font-size: 1.875em;
  }
  .section-card {
    width: 90%;
    max-width: 940px;
    padding: 48px 5% 64px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-title-icon {
    width: 32px;
    height: 32px;
  }
  .section-title-icon img {
    width: 20px;
    height: 18px;
  }
  .item-grid {
    gap: 64px;
  }
  .item-card img {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .top-lp-tab-section {
    padding: 0;
  }
  .top-lp-tab-panel {
    padding: 48px 5% 64px;
  }
  .feature-grid {
    gap: 24px;
  }
  .feature-box {
    border-radius: 18px;
    padding: 24px 24px 32px;
  }
  .feature-box img {
    width: 36px;
    height: 36px;
  }
  .feature-box h3 {
    font-size: 24px;
    margin-top: 16px;
  }
  .feature-box p {
    margin-top: 8px;
  }
  .os-links {
    gap: 48px;
  }
  .os-links .os-links-wrap {
    gap: 24px;
  }
  .step-container {
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .step-box {
    align-items: center;
    width: 100%;
    max-width: 520px;
  }
  .step-content {
    font-size: 28px;
    height: 120px;
  }
  .sec-card img {
    height: 100px;
  }
  .sec-card p {
    margin-top: 16px;
  }
  .security-banner p {
    font-size: 36px;
  }
}

/* --- スマホ・タブレット縦向きサイズ以下 (768px以下) --- */
@media screen and (max-width: 768px) {
  /* Header Language Button Reset */
  .language_button {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
  }

  /* Hero Section */
  .hero {
    padding: 84px 5% 96px;
    background-size: 65%;
  }
  .hero::before {
    width: 42vw;
    height: 35vw;
  }
  .hero h1 {
    font-size: 2.5em;
    line-height: 1.6em;
  }
  .hero h1 span.hero-logo {
    margin-right: 0.5rem;
    padding: 4px 16px;
    border-radius: 6px;
  }
  .hero h1 span.hero-logo img {
    width: 160px;
  }
  .hero-buttons {
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 3em;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 20px;
  }

  /* Section Card 共通 */
  .section-card {
    padding: 32px 5% 40px;
    border-radius: 16px;
    background-size: 150%;
    margin-top: 48px;
  }
  .section-title {
    font-size: 24px;
    flex-wrap: wrap;
    text-align: center;
    gap: 12px;
  }
  .section-title:nth-of-type(2) {
    margin-top: 2em;
  }
  .section-title-icon {
    width: 28px;
    height: 28px;
  }
  .section-desc {
    margin-bottom: 2em;
  }

  /* Tabs */
  .top-lp-tab-section {
    padding: 0;
    margin-top: 0;
  }
  .top-lp-tabs {
    height: 48px;
  }
  .top-lp-tab {
    font-size: 1.25em;
    border-radius: 16px 16px 0 0;
  }
  .top-lp-tab-panel {
    padding: 32px 5% 40px;
    background-size: 150%;
  }

  /* Item Grid (ゲーム・グッズ) */
  .item-grid {
    width: 100%;
    gap: 10%;
    max-width: 520px;
  }
  .item-card {
    width: 100%;
  }
  .item-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    max-width: 128px;
  }
  .top-lp-root a.item-card .item-card__title {
    font-size: 12px;
  }
  .item-card .badge {
    padding: 0 8px;
    font-size: 11px;
    height: 28px;
    width: 100%;
    max-width: 120px;
  }

  /* Feature Grid (coly IDとは) */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
  }
  .feature-box {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 14px;
  }

  /* Home Add Banner */
  .home-add-banner {
    padding: 24px 20px;
    max-width: 520px;
    border-radius: 16px;
  }
  .home-add-banner h4 {
    font-size: 20px;
  }
  .os-links {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .os-links .os-links-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .os-links .os-links-wrap .os-links-group {
    text-align: center;
  }

  /* Steps (登録方法) */
  .step-container {
    flex-direction: column;
    gap: 24px;
  }
  .step-footer {
    width: 100%;
    max-width: 520px;
    padding: 16px 24px;
  }

  /* Security (安心・安全) */
  .security-section {
    background-size: 150%, cover;
  }
  .security-logos {
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
  }
  .security-banner h3 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 8px;
  }
  .security-banner h3 span {
    padding-bottom: 28px;
    font-size: 24px;
  }
  .security-banner p {
    font-size: 28px;
  }
  .security-banner .security-text-wrap {
    gap: 16px;
  }
  .highlight-badge {
    display: inline-block;
    margin-bottom: 4px;
  }
}

/* --- スマホ特化サイズ (480px以下) --- */
@media screen and (max-width: 480px) {
  body.page-top-lp {
    --header-height: 48px;
  }
  .top-lp-root {
    padding-bottom: 48px;
  }
  .hero {
    background-size: 80%;
    padding: 80px 5% 80px;
  }
  .hero h1 {
    font-size: 8.5vw;
  }
  .hero h1 span.font-small {
    font-size: 6vw;
  }
  .hero h1 span.hero-logo {
    margin-right: 2.5vw;
    padding: 4px 16px;
    width: 45vw;
    border-radius: 6px;
  }
  .hero h1 span.hero-logo img {
    width: 100%;
    max-width: 240px;
  }
  .hero::before {
    width: 52vw;
    height: 35vw;
  }
  .hero::after {
    width: 50vw;
    height: 40vw;
  }
  .hero-buttons {
    margin-top: 32px;
  }
  .btn {
    max-width: 320px;
  }

  .section-card {
    padding: 32px 5% 48px;
    border-radius: 16px;
    background-size: 200%;
    margin-top: 32px;
  }
  .section-title {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .section-title-icon {
    width: 28px;
    height: 28px;
  }
  .section-title-icon img {
    width: 18px;
    height: 16px;
  }
  .top-lp-tab-section {
    padding: 0;
    width: 90%;
    margin-top: 0;
  }

  .top-lp-tabs {
    height: 40px;
  }
  .top-lp-tab {
    border-radius: 12px 12px 0 0;
    font-size: 16px;
  }
  .top-lp-tab-panel {
    padding: 32px 5% 48px;
    background-size: 200%;
    border-radius: 0 0 16px 16px;
  }

  .item-grid {
    gap: 48px;
    justify-content: flex-start;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 1.5em;
    display: grid;
  }
  .item-card img {
    width: 85%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .item-card .badge {
    width: auto;
    max-width: 100%;
    font-size: 12px;
    padding: 0 12px;
    height: 28px;
  }
  .feature-grid {
    gap: 24px;
  }
  .feature-box {
    border-radius: 12px;
  }
  .feature-box img {
    width: 32px;
    height: 32px;
  }
  .home-add-banner {
    border: 8px solid var(--accent-yellow);
    border-radius: 16px;
  }
  .os-links {
    margin-top: 32px;
  }

  .step-box {
    width: 100%;
  }
  .step-content {
    font-size: 20px;
    height: 92px;
  }
  .step-content img {
    height: 40px;
  }
        .step-content img.en {
          height: 32px;
        }
  .step-title {
    justify-content: center;
    font-size: 20px;
  }
  .step-title img {
    width: 64px;
  }
  .step-footer {
    padding: 16px;
    font-size: 20px;
  }
  .step-footer::before {
    background-size: 18px 18px;
    width: 36px;
    height: 36px;
    top: -18px;
    left: -18px;
  }

  .security-section {
    background-size: 200%, cover;
  }
  .sec-card img {
    height: 96px;
    border-radius: 8px;
  }
  .sec-card p {
    margin-top: 10px;
  }
  .security-banner {
    margin-top: 32px;
  }
  .security-banner h3 {
    max-width: 240px;
    margin: 0 auto 4px;
  }
  .security-banner h3 span {
    font-size: 22px;
    padding-bottom: 22px;
  }
  .security-banner .security-text-wrap {
    gap: 12px;
  }
  .security-banner p {
    font-size: 24px;
  }
}
