﻿@charset "UTF-8";
/* ==========================================
  IP変更用：カラー・変数定義
  ★最上部のここの値を書き換えるだけで全体が変わります
=========================================== */ :root {
  /* --- メインカラー・テーマ色 --- */
  --primary-color: #b08e2c; /* サイトの主役になるカラー */
  --primary-hover: #b08e2c; /* ボタンなどのホバー時の色 */
  /* --- 強調色（価格や限定要素など） --- */
  --accent-color: #b08e2c; /* メニュー価格やドリンク価格などの強調カラー */
  /* --- 見出しの装飾（左縦線など） --- */
  --border-heading: #b08e2c; /* メニューやグッズ内のサブ見出しの左縦線のカラー */
  /* --- 予約ボタン・CTA関係 --- */
  --cta-color: #c9461a; /* 予約ボタン */
  --cta-hover: #bd3d11; /* 予約ボタンのホバー時の色 */
  
  /* --- ★オリジナルグッズ「購入はこちら」ボタンカラー設定 --- */
  --goods-btn-bg: #b08e2c;    /* グッズ購入ボタンの背景色 */
  --goods-btn-hover: #8e7120; /* グッズ購入ボタンのホバー時の色 */

  /* --- ★テキスト強調用の赤字カラー --- */
  --color-red: #ff3b30; /* 文言を目立たせたい時の赤色 */
  /* --- サイト全体の背景設定 --- */
  --bg-base: #f5ebc7; /* ① 通常：サイト全体の背景色（単色） */
  /* 【背景アレンジ用コメントアウト設定】
       もし背景を「グラデーション」や「画像」にしたい場合は、body要素側の設定を切り替えます。
       
       ▼ グラデーションにしたい場合のサンプルコード
       --bg-gradient: linear-gradient(135deg, #fff6f9 0%, #f4f6f8 100%);
       
       ▼ 背景画像（総柄など）にしたい場合のサンプルコード
       --bg-image: url('../img/bg_pattern.png');
    */
  /* --- コンテンツカード・文字色 --- */
  --bg-card: #ffffff; /* 各コーナー（角丸カード）の背景色 */
  --text-main: #333333; /* メインの濃い文字色 */
  --text-muted: #666666; /* 補足や注記などの薄い文字色 */
  --border-color: #e2e8f0; /* 枠線や区切り線の色 */
  --font-family: 'Inter', 'Noto Sans JP', Arial, sans-serif;
}
/* ==========================================
  全体・共通設定
=========================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-main);
  /* -----------------------------------------------------------------
       【背景の切り替えエリア】
       背景のスタイルを変えたいときは、以下の3つの中から使いたい設定の「/*」を外してください。
    ----------------------------------------------------------------- */
  /* ▼ パターンA：通常の単色背景（初期状態） */
  background-color: var(--bg-base);
  /* ▼ パターンB：グラデーション背景にしたい場合 */
  /* background-image: linear-gradient(135deg, #fff3f8 0%, #f4f6f8 100%); */
  /* background-attachment: fixed; */
  /* ▼ パターンC：背景画像（リピートする総柄など）にしたい場合 */
  /* background-image: url('../img/bg_pattern.png'); */
  /* background-repeat: repeat; */
  /* ----------------------------------------------------------------- */
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  padding: 50px 30px;
  margin-bottom: 40px;
  box-sizing: border-box;
}
/* 大見出し（両サイド罫線デザイン） */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 40px;
  color: var(--text-main);
}
.section-title::before, .section-title::after {
  content: "";
  flex-grow: 1;
  max-width: 180px;
  height: 1px;
  background-color: #333333;
}
.section-title::before {
  margin-right: 25px;
}
.section-title::after {
  margin-left: 25px;
}
.sub-title-center {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.card-box {
  background-color: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
/* --- PC表示時：SP用改行タグを非表示 --- */
.sp-br {
  display: none;
}

/* ==========================================
  ① 固定ヘッダー
=========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 10000;
  box-sizing: border-box;
}
.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo-img {
  height: 45px;
  width: auto;
}
.pc-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-item {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-item:hover {
  color: var(--primary-color);
}
.nav-item.nav-reserve {
  background-color: var(--cta-color);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
}
.nav-item.nav-reserve:hover {
  background-color: var(--cta-hover);
}
/* ==========================================
  1stビュー（ヒーローエリア：スライダー設定）
=========================================== */
.hero-section {
  position: relative;
  width: 100%;
  margin-top: 70px;
  overflow: hidden;
  background-color: #e2e8f0;
  padding-bottom: 0;
}
.hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 1;
  transition: background-image 0.5s ease;
}
.hero-slider-outer {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 600;
  overflow: hidden;
}

/* スライダー構造 */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide-item {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.hero-kv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------
  バナー下（ぼかし外の隙間上部）に配置するドット
------------------------------------------- */
.slider-dots-container {
  width: 100%;
  padding-top: 15px;
  margin-bottom: -35px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.slider-dots .dot.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.25);
}

/* ABOUT枠の上部マージン */
.concept-section {
  margin-top: 60px;
}

@media (max-width: 768px) {
  /* ==========================================
     1stビュー（ヒーローエリア）SP完全対応
  =========================================== */
  .hero-section {
    margin-top: 0;
    height: auto !important;
  }
  .hero-slider-outer {
    height: auto !important;
  }
  .hero-main-wrap {
    aspect-ratio: auto !important;
    height: auto !important;
  }
  .slider-container {
    height: auto !important;
  }
  .slider-track {
    height: auto !important;
    align-items: flex-start;
  }
  .slide-item {
    height: auto !important;
    min-width: 100%;
    width: 100%;
  }
  .hero-kv-img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
  }

  /* ドット（●）エリアの位置調整 */
  .slider-dots-container {
    padding-top: 10px;
    margin-bottom: -20px;
  }
  .concept-section {
    margin-top: 40px;
  }
}
/* ==========================================
  ④ CAFE MENU / GOODS（アコーディオン・注記の共通定義）
=========================================== */
.menu-notice-area {
  text-align: center;
  margin-bottom: 40px;
}
.menu-caption-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.menu-limit-accordion {
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: left;
  background-color: #ffffff;
  overflow: hidden;
}
.menu-limit-summary {
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  background-color: #fafbfc;
  position: relative;
}
.menu-limit-summary::-webkit-details-marker {
  display: none;
}
.menu-limit-summary::after {
  content: "▲";
  position: absolute;
  right: 20px;
  font-size: 0.75rem;
  color: var(--text-main);
  transition: transform 0.2s;
}
.menu-limit-accordion[open] .menu-limit-summary::after {
  transform: rotate(180deg);
}
.limit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-main);
  border-radius: 50%;
  font-size: 0.75rem;
  margin-right: 10px;
}
.menu-limit-content {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
  background-color: #ffffff;
}
/* アコーディオン内のテキスト・見出し・リスト装飾 */
.accordion-title {
  margin: 25px 0 8px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}
.accordion-title:first-child {
  margin-top: 0;
}
.accordion-lead {
  margin: 0 0 14px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.accordion-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.accordion-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.accordion-list li:last-child {
  margin-bottom: 0;
}
.accordion-list li::before {
  position: absolute;
  left: 0;
  top: 0;
}
/* ------------------------------------------
  ★ HTML内で自由に使い回せるテキスト強調用汎用クラス
------------------------------------------- */
.text-red {
  color: var(--color-red) !important;
}
.text-bold {
  font-weight: 700 !important;
}
/* ------------------------------------------
  ② NOVELTYコーナー用装飾スタイル
------------------------------------------- */
.novelty-img-wrap {
  max-width: 750px;
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.novelty-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
/* ------------------------------------------ */
.menu-sub-section {
  margin-bottom: 50px;
}
.menu-sub-section:last-child {
  margin-bottom: 0;
}
/* 見出しの左縦線のカラーを変数に同期 */
.menu-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  border-left: 4px solid var(--border-heading);
  padding-left: 10px;
  margin-top: 0;
  margin-bottom: 20px;
}
.takeout-container, .allergy-container {
  background-color: #fafbfc;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.takeout-container p, .allergy-container p {
  margin: 0;
}
.takeout-list {
  margin: 10px 0 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}
.takeout-list li {
  margin-bottom: 5px;
}
/* カードレイアウト（グリッド） */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.item-card {
  background-color: #fafbfc;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* 画像全体表示設定 */
.item-img {
  width: 100%;
  height: auto;
  display: block;
}
.item-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 15px 15px 5px 15px;
}
/* メニューやグッズカードの価格カラーを変数に同期 */
.item-price {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 700;
  margin: 0 15px 10px 15px;
}
.item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 15px 15px 15px;
  flex-grow: 1;
  line-height: 1.5;
}

/* 🛍️ グッズカード用「購入はこちら」ボタン */
.goods-buy-btn {
  display: block;
  text-align: center;
  background-color: var(--goods-btn-bg);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 0;
  margin: 15px auto 25px auto;
  width: 240px;
  max-width: calc(100% - 30px);
  border-radius: 30px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.2s, opacity 0.2s;
}
.goods-buy-btn:hover {
  background-color: var(--goods-btn-hover);
  opacity: 0.9;
}

/* SIDE DRINK設定 */
.side-drink-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  padding: 10px 15px;
}
.side-drink-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 15px;
}
.side-drink-info {
  flex-grow: 1;
  padding-right: 20px;
}
.side-drink-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.side-drink-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
/* サイドドリンクの価格カラーを変数に同期 */
.side-drink-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  white-space: nowrap;
}
/* ==========================================
  ⑦ CAFE INFO（ABOUTに移植した店舗情報）コーナー
=========================================== */
.info-shop-block {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--border-color);
}
.info-shop-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.shop-name {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
}
.access-container {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
.access-info {
  flex: 1.2;
}
.access-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.map-placeholder {
  width: 100%;
  height: 240px;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #718096;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th, .info-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.info-table th {
  width: 25%;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}
/* ------------------------------------------
  💡 ABOUT内店舗ブロック：複数ボタンの中央寄せ・縦並び・均等幅の完全同期
------------------------------------------- */
.cta-area {
  text-align: center;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cta-button {
  display: inline-block;
  background-color: var(--cta-color);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 0;
  width: 320px;
  max-width: 100%;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.2s;
  box-sizing: border-box;
}
.cta-button:hover {
  background-color: var(--cta-hover);
}
/* ==========================================
  ⑧ HELP ＆ GUIDEコーナー用スタイル（STEPフロー配下）
=========================================== */
.flow-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}
.flow-step {
  width: calc((100% - 60px) / 3);
  background-color: #fafbfc;
  border: 1px solid var(--border-color);
  padding: 25px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.step-text-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.step-bottom-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  background-color: #333333;
  color: #ffffff;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.step-num:first-child {
  margin-top: 0;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text-main);
  text-align: center;
}
.step-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
  width: 100%;
}
.step-img-wrap {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
.step-img {
  width: 100%;
  height: auto;
  display: block;
}
.step-note {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  text-align: left;
}
.step-note p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}
/* ------------------------------------------
  /* ------------------------------------------
  ①③ よくある質問＆お問い合わせ（PC時：左右2カラム横並び設定）
------------------------------------------- */
.help-bottom-grid {
  display: flex;
  gap: 40px;
  box-sizing: border-box;
  width: 100%;
}
.help-bottom-grid .faq-area, .help-bottom-grid .contact-area {
  flex: 1;
  margin: 0;
  padding: 0; 
  border: none;
  text-align: center;
  width: 100%;
}
.help-bottom-grid .sub-title-center {
  font-size: 1.15rem; 
  margin-bottom: 10px; 
}
/* メールアドレス表示用スタイル */
.contact-email {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
  word-break: break-all;
}
@media (min-width: 769px) {
  .contact-email {
    font-size: 1.25rem;
  }
}
.contact-button {
  display: inline-block;
  background-color: var(--text-main);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-button:hover {
  opacity: 0.85;
}
/* PAGE TOPリンク */
.pagetop-wrap {
  text-align: center;
  margin: 20px 0 40px 0;
}
.pagetop-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.pagetop-link:hover {
  color: var(--primary-color);
}
/* メインフッター */
.main-footer {
  background-color: #252525;
  color: #fff;
  text-align: center;
  padding: 35px 20px;
  box-sizing: border-box;
  width: 100%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* フッターロゴのリンク枠設定 */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

/* フッターロゴ（一回り大きく＆レスポンシブサイズ調整） */
.footer-logo {
  width: 45%;
  max-width: 240px;
  min-width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.main-footer p {
  margin: 0;
  letter-spacing: 0.04em;
  font-size: 80%;
}
/* スマホ固定メニューバー */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background-color: #ffffff;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  z-index: 10000;
  padding: 0 10px;
  box-sizing: border-box;
}
.sticky-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  height: 100%;
}
.sticky-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 2px;
}
.sticky-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sticky-item.sticky-cta {
  flex: 2.2;
  background-color: var(--cta-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  height: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  box-shadow: 0 2px 6px rgba(181, 93, 126, 0.3);
}
/* ==========================================
  PC / SP 切り替えレスポンシブ
=========================================== */
@media (min-width: 769px) {
  .sticky-footer-bar {
    display: none;
  }
}
@media (max-width: 768px) {
  /* ① CAFE MENU / GOODS タイトル下の注記をSP時に左寄せ */
  .menu-caption-text {
    text-align: left;
  }

  /* --- SP表示時：改行タグを有効化 --- */
  .sp-br {
    display: inline;
  }

  /* スマホ時のグッズ購入ボタン幅調整 */
  .goods-buy-btn {
    width: calc(100% - 30px);
  }

  .site-header {
    display: none !important;
  }
  .section-title::before, .section-title::after {
    max-width: 60px;
  }
  .section-title::before {
    margin-right: 15px;
  }
  .section-title::after {
    margin-left: 15px;
  }
  .hero-section {
    margin-top: 0;
  }
  .hero-bg-blur {
    display: none;
  }
  .hero-main-wrap {
    aspect-ratio: auto;
  }
  .concept-section {
    margin-top: 30px;
  }
  .concept-content {
    text-align: left;
  }
  .section {
    padding: 30px 15px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .item-img {
    height: auto;
  }
  /* SIDE DRINK スマホ最適化 */
  .side-drink-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .access-container {
    flex-direction: column;
    gap: 20px;
  }
  .info-table th {
    width: 30%;
  }
  /* ご利用の流れ：スマホ時1列 */
  .flow-container {
    flex-direction: column;
    gap: 25px;
  }
  .flow-step {
    width: 100%;
  }
  .step-text-wrap {
    height: auto;
  }
  .step-img-wrap {
    margin-top: 20px !important;
  }
  .step-note {
    margin-top: 15px;
  }
  .help-bottom-grid {
    flex-direction: column;
    gap: 20px;
  }
  .main-footer {
    padding-bottom: 95px;
  }
}