﻿@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

#main {
  width: 100%;
  margin: 0 0 40px 0;
  overflow: hidden;
}

/* セクション全体 */
.jp-realestate-section {
  width: 100%;
  background-color: #fdf8ff;
  padding: 120px 0;
}

/* 中央ラッパー */
.jp-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.jp-title {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* 説明テキスト */
.jp-description {
  font-size: 20px;
  color: #333;
  margin-bottom: 50px;
}

/* ボタン配置 */
.jp-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* ボタン共通 */
.jp-btn {
  font-size: 20px;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

/* 免费咨询（青色） */
.jp-btn.primary {
  background-color: #217fcd;
  color: #fff;
}

/* 开始您的投资之旅（薄紫） */
.jp-btn.secondary {
  background-color: #e5dff9;
  color: #000;
}

/* hover効果（任意） */
.jp-btn:hover {
  opacity: 0.85;
}

/* セクション背景：画面幅いっぱい */
.cn-service-section {
  width: 100%;
  background: #f3eeff;
  padding: 100px 0;
}

/* 中身は1000pxラッパー */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* タイトル・説明 */
.cn-sec-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 12px;
}
.cn-sec-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 36px;
}

/* カードレイアウト：横一列2個 × 2段（合計4つ） */
.cn-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left; /* 中身は左寄せ */
}

/* 各ボックス */
.service-card {
  background: #f9f4ff;
  border-radius: 12px;
  padding: 28px 28px 28px 28px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* 番号アイコン（CSSで生成） */
.num-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #e5dff9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  position: relative;
}
.num-badge::after {
  content: attr(data-num); /* 1〜4をHTML属性で注入 */
  font-size: 28px;
  font-weight: 700;
  color: #5b5678;
  line-height: 1;
}

/* カード本文 */
.card-body {
  flex: 1;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 4px 0 14px;
  line-height: 1.2;
}

.card-title span{
  font-size: 17px;
  font-weight: 700;
  color: rgba(72, 69, 78, 1);
  margin: 4px 0 14px;
}

/* チェックマーク付きリスト */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
  color: #444;
  font-size: 16px;
}
.card-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 6px;
  background-image: url("../images/service_chin/check.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
}



/* セクション背景（画面幅いっぱい） */
.cn-invest-section {
  width: 100%;
  background: #fdf8ff;
  padding: 90px 0;
}

/* 中身：1000px ラッパー */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 見出し & サブ見出し（左寄せ） */
.invest-title {
  font-size: 36px;
  font-weight: 800;
  color: rgba(97, 86, 144, 1);
  margin: 0 0 16px;
}
.invest-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 28px;
}

/* カード横2枚 */
.invest-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* カード（背景 fdf8ff / R=20px）*/
.invest-card {
  background: #fdf8ff;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04); /* 薄い縁（同色背景でも区別しやすく） */
}

/* 丸いアイコン：核/新 */
.round-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e5dff9;
  color: #3b3568;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* 箇条書き（マーカーを自前で作る） */
.invest-list {
  list-style: none; /* 標準の丸を無効化 */
  margin: 0;
  padding: 0;
}

.invest-list li {
  position: relative;
  padding-left: 18px; /* •と文字の距離を調整 */
  line-height: 1.8;
  font-size: 18px;
  color: #343434;
  margin: 2px 0;
  text-align: left;
}

/* • の生成（横位置を近づける） */
.invest-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #343434;
}

/* 3行目だけ色変更 */
.accent {
  color: #2d8df2;
}

/* セクション背景（全幅） */
.cn-flow-section {
  width: 100%;
  background: #f3eeff;
  padding: 90px 0 110px;
}

/* 1000pxラッパー（共通） */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* タイトル */
.flow-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 34px;
}

/* ====== 7ステップのカード行 ====== */
.flow-cards {
  --gap: 32px; /* 余白はここで一元管理 */
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap); /* 全カードの間隔を均等に */
  justify-content: center; /* 最終行（5〜7）を中央寄せにする肝 */
}

/* カード：上段と下段で同じ幅（4列分） */
.flow-card {
  box-sizing: border-box;
  flex: 0 1 calc((100% - 3 * var(--gap)) / 4); /* 4列分の幅を算出 */
  background: #fdf8ff;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 22px rgba(41, 28, 71, 0.08);
  margin: 0; /* 余白は gap に任せる（重なり防止） */
}

/* 丸アイコン（共通） */
.round-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e5dff9;
  color: #3b3568;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
}

/* テキスト 16px */
.flow-text {
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.6;
  text-align: left;
}

/* 丸アイコン（前回と共通） */
.round-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5dff9;
  color: #3b3568;
  font-size: 14px; /* ← 文字サイズも少し小さく調整するとバランスが良い */
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  margin: 0;
}

/* セクション背景 */
.cn-proptype-section {
  width: 100%;
  background: #fdf8ff;
  padding: 90px 0;
}

/* 1000pxラッパー（既存と揃える） */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* タイトル＆説明 */
.prop-title {
  font-size: 36px;
  font-weight: 800;
  color: rgba(97, 86, 144, 1);
  text-align: center;
  margin: 0 0 10px;
}
.prop-sub {
  font-size: 18px;
  color: rgba(100, 116, 139, 1);
  text-align: center;
  margin: 0 0 28px;
}

/* カード3列 */
.prop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* カード本体（背景 fdf8ff + シャドー + 角丸20） */
.prop-card {
  background: #fdf8ff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(41, 28, 71, 0.1);
  padding: 28px;
  grid-template-columns: 110px 1fr; /* アイコン領域 + テキスト */
  align-items: start;
  column-gap: 22px;
}

/* アイコン背景（#e5dff9 / R=20） */
.icon-box {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #e5dff9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box img {
  width: 44px;
  height: 44px;
  display: block;
}

/* テキスト群 */
.prop-name {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin: 10px 0 14px;
}
.prop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prop-list li {
  position: relative;
  padding-left: 16px; /* • と文字の距離を詰める */
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.9;
  text-align: left;
}
.prop-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #6a6a80;
}

/* セクション背景 */
.cn-rental-section {
  width: 100%;
  background: #f3eeff;
  padding: 90px 0;
}

/* ラッパー（共通） */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 見出し */
.rent-title {
  font-size: 36px;
  font-weight: 800;
  color: rgba(97, 86, 144, 1);
  margin: 0 0 28px;
}

/* サブ見出し／補足 */
.rent-subhead {
  font-size: 22px;
  font-weight: 800;
  color: #36334b;
  margin: 28px 0 14px;
  text-align: left;
}
.rent-note {
  font-size: 16px;
  color: #6d6a7f;
  margin: 0 0 14px;
  text-align: left;
}

/* グリッド */
.rent-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.rent-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* カード（共通） */
.rent-card {
  background: #fdf8ff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(41, 28, 71, 0.1);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rent-card.wide {
  padding: 22px 24px;
  margin-bottom: 10px;
}

/* アイコンボックス */
.rent-iconbox {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.rent-iconbox img {
  width: 22px;
  height: 22px;
  display: block;
}
/* 濃色アイコンボックス */
.rent-iconbox.strong {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #615690;
  padding: 0 5px;
}
.rent-iconbox.strong img {
  width: 26px;
  height: 26px;
}

/* カード文字 */
.rent-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #23232d;
  margin: 2px 0 6px;
  text-align: left;
}
.rent-card-text {
  font-size: 14px;
  color: #5a5966;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* 看房流程（3枚の小カード） */
.rent-process {
  background: #fdf8ff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(41, 28, 71, 0.1);
  padding: 28px 20px;
  text-align: center;
}
.process-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon img {
  width: 20px;
  height: 20px;
  display: block;
}
.process-text {
  font-size: 16px;
  font-weight: 700;
  color: #2b2b36;
  margin: 0;
}

/* セクション背景（#fdf8ff） */
.cn-market-section {
  width: 100%;
  background: #fdf8ff;
  padding: 90px 0;
}

/* 1000px ラッパー（共通） */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* タイトル */
.market-title {
  font-size: 36px;
  font-weight: 800;
  color: rgba(97, 86, 144, 1);
  text-align: center;
  margin: 0 0 28px;
}

/* 3カードのレイアウト（proptypeと同様） */
.market-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* カード本体（背景も #fdf8ff／影あり／角丸20） */
.market-card {
  background: #fdf8ff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(41, 28, 71, 0.1);
  padding: 28px;
  grid-template-columns: 110px 1fr; /* アイコン領域 + テキスト */
  align-items: start;
  column-gap: 22px;
}

/* アイコンボックス（#e5dff9／R=20） */
.market-card .icon-box {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background: #e5dff9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market-card .icon-box img {
  width: 44px;
  height: 44px;
  display: block;
}

/* テキスト */
.market-name {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin: 10px 0 14px;
  text-align: left;
}
.market-text {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

/* レスポンシブ */
@media (max-width: 980px) {
  .market-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .market-cards {
    grid-template-columns: 1fr;
  }
  .market-title {
    font-size: 30px;
  }
  .market-name {
    font-size: 22px;
  }
}

/* セクション背景 */
.cn-bilingual-section {
  width: 100%;
  background: #f3eeff;
  padding: 90px 0;
}

/* 共通ラッパー */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 2カラム */
.bilingual-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* 左イラスト/右テキスト */
  align-items: center;
  gap: 40px;
}

.bilingual-illust {
  margin: 120px 0 0 0;
}

.bilingual-content {
  margin: -120px 0 0 0;
}

/* イラスト */
.bilingual-illust img {
  width: 60%;
  height: auto;
  display: block;
}

/* 見出し行 */
.bilingual-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

/* アイコン：背景 #615690 / 中身はSVG */
.bilingual-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #615690;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
}
.bilingual-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

/* タイトル & 本文 */
.bilingual-title {
  font-size: 24px;
  font-weight: 800;
  color: #232033;
  margin: 0;
}
.bilingual-text {
  font-size: 16px;
  color: #5a5769;
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

/* セクション背景：#fdf8ff */
.cn-contact-section {
  width: 100%;
  background: #fdf8ff;
  padding: 90px 0;
}

/* ラッパー */
.cn-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* タイトル */
.contact-title {
  font-size: 32px;
  font-weight: 800;
  color: #222132;
  text-align: center;
  margin: 0 0 26px;
}

/* 2カラム */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

/* カード共通：背景も #fdf8ff */
.qr-card,
.form-card {
  background: #fdf8ff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(41, 28, 71, 0.1);
  padding: 26px;
}

/* 左：QRカード */
.qr-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin: 4px 0 2px;
  color: #2b2b36;
}
.qr-sub {
  text-align: center;
  color: #6b6a7f;
  font-size: 14px;
  margin: 0 0 16px;
}
.qr-image {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}
.qr-image img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}
.qr-button {
  display: block;
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: #2d8df2;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* フォームヘッダ */
.form-head {
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
/* ★ 丸背景 #2d8df2 */
.form-icon.circle-blue {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2d8df2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  margin: 0 auto;
}
.form-icon.circle-blue img {
  width: 26px;
  height: 26px;
  display: block;
}
.form-head-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: #2b2b36;
}
.form-head-sub {
  font-size: 12px;
  color: #7a788a;
  margin: 2px 0 0;
}

/* フォーム：ラベル左寄せ＆入力UI */
.contact_list {
  margin: 0;
  padding: 0;
}
.contact_list dt {
  margin: 14px 0 6px;
  font-weight: 700;
  color: #3a3950;
  text-align: left; /* ★ 左寄せ */
}
.contact_list dt span {
  color: #b44;
  margin-left: 4px;
}
.contact_list dd {
  margin: 0;
}

#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #2d8cf1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #2b2b36;
  outline: none;
}
#mailformpro textarea {
  min-height: 120px;
  resize: vertical;
}
#mailformpro input:focus,
#mailformpro textarea:focus {
  border-color: #9bb6ff;
  box-shadow: 0 0 0 3px rgba(155, 182, 255, 0.25);
}

.contact_text {
  margin: 12px 0 0;
  text-align: left;
}
.agree {
  font-size: 13px;
  color: #5f5d6f;
}
.agree input {
  margin-right: 8px;
}
.agree a {
  color: #2d8df2;
  text-decoration: underline;
}

/* 送信ボタン（send.svg を左に） */
.contact_btn {
  margin-top: 14px;
  padding: 0 20px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #615690;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact_btn .send-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.contact_btn:hover {
  opacity: 0.92;
}


/* =========================
   Tablet 〜1024px
   ========================= */
   @media (max-width: 1024px) {
    /* ヒーロー */
    .jp-realestate-section { padding: 80px 0; }
    .jp-title { font-size: 40px; }
    .jp-description { font-size: 18px; }
    .jp-buttons { gap: 16px; }
  
    /* サービス（2列維持、文字少し縮小） */
    .cn-sec-title { font-size: 30px; }
    .cn-sec-desc { font-size: 16px; }
  
    /* 投资策略（2列維持、文字縮小） */
    .invest-title { font-size: 30px; }
    .invest-subtitle { font-size: 20px; }
  
    /* 7ステップ：3列に */
    .flow-cards { --gap: 28px; }
    .flow-card { flex-basis: calc((100% - 2 * var(--gap)) / 3); }
  
    /* 物件タイプ：2列に */
    .prop-cards { grid-template-columns: repeat(2, 1fr); }
    .prop-name { font-size: 22px; }
  
    /* 賃貸：上2→そのまま / 下3→そのまま（余白縮小） */
    .rent-title { font-size: 30px; }
    .rent-grid-2, .rent-grid-3 { gap: 20px; }
  
    /* 市场机会：2列に */
    .market-cards { grid-template-columns: repeat(2, 1fr); }
    .market-title { font-size: 30px; }
  
    /* バイリンガル：1カラムに変更＆余白リセット */
    .bilingual-wrap { grid-template-columns: 1fr; gap: 24px; }
    .bilingual-illust { margin: 0; }
    .bilingual-content { margin: 0; }
    .bilingual-illust img { width: 80%; margin: 0 auto; }
  
    /* お問い合わせ：2カラム→1カラム */
    .contact-grid { grid-template-columns: 1fr; }
    .form-icon.circle-blue { margin: 0; } /* 左寄せ維持 */
  }
  
  /* =========================
     Mobile 〜640px
     ========================= */
  @media (max-width: 640px) {
    /* ヒーロー */
    .jp-realestate-section { padding: 60px 0; }
    .jp-title { font-size: 28px; }
    .jp-description { font-size: 16px; margin-bottom: 24px; }
    .jp-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    .jp-btn { width: 100%; padding: 14px 18px; font-size: 18px; }
  
    /* サービス */
    .cn-sec-title { font-size: 24px; }
    .cn-sec-desc { font-size: 15px; margin-bottom: 24px; }
    .cn-cards { grid-template-columns: 1fr; gap: 20px; }
    .num-badge { width: 44px; height: 44px; flex: 0 0 44px; }
    .num-badge::after { font-size: 22px; }
  
    /* 投资策略：1列に */
    .cn-invest-section { padding: 60px 0; }
    .invest-title { font-size: 24px; }
    .invest-subtitle { font-size: 18px; margin-bottom: 18px; }
    .invest-cards { grid-template-columns: 1fr; gap: 18px; }
    .invest-card { padding: 18px; }
  
    /* 7ステップ：2列→1列に段階変化 */
    .flow-title { font-size: 26px; margin-bottom: 20px; }
    .flow-cards { --gap: 16px; }
    .flow-card { flex-basis: calc((100% - var(--gap)) / 2); }
    @media (max-width: 460px) {
      .flow-card { flex-basis: 100%; }
    }
  
    /* 物件タイプ：1列に */
    .prop-cards { grid-template-columns: 1fr; gap: 18px; }
    .icon-box { width: 80px; height: 80px; }
    .icon-box img { width: 36px; height: 36px; }
    .prop-name { font-size: 20px; }
    .prop-list li { font-size: 15px; }
  
    /* 賃貸：すべて1列に */
    .rent-title { font-size: 26px; }
    .rent-grid-2, .rent-grid-3 { grid-template-columns: 1fr; gap: 18px; }
    .rent-card { padding: 16px; }
    .rent-card-title { font-size: 16px; }
    .rent-card-text { font-size: 14px; }
    .rent-process { padding: 20px; }
  
    /* 市场机会：1列に */
    .market-title { font-size: 26px; }
    .market-cards { grid-template-columns: 1fr; gap: 18px; }
    .market-name { font-size: 20px; }
    .market-card { padding: 20px; }
  
    /* バイリンガル：画像は幅100% */
    .bilingual-illust img { width: 100%; }
  
    /* お問い合わせ：タイトル縮小、フォーム余白調整 */
    .contact-title { font-size: 26px; margin-bottom: 20px; }
    .qr-image img { width: 140px; height: 140px; }
    .qr-button { height: 42px; }
    .contact_btn { width: 100%; justify-content: center; }
  }
  