/* ============================================
   リンパ整体ひまわり - メインスタイルシート
   高齢者向け高視認性設計
   WCAG AA 準拠（コントラスト比 4.5:1 以上）
   ============================================ */

/* ---------- CSS変数 ---------- */
:root {
  /* 背景色：純白ベースに変更（モヤ感排除） */
  --color-bg:         #FFFFFF;
  --color-bg-soft:    #F8F5F0;   /* ごく薄いオフホワイト（差し色に限定使用） */
  --color-white:      #FFFFFF;

  /* 緑系 */
  --color-green:      #2E5A3C;   /* 深緑（より濃く） */
  --color-green-light:#D8EDE0;   /* 薄緑（十分な彩度を保つ） */
  --color-green-mid:  #4A7A5A;

  /* 暖色系 */
  --color-warm:       #D4704A;   /* テラコッタ（より濃く・高コントラスト） */
  --color-warm-light: #FDEEE6;
  --color-warm-mid:   #B85A36;

  /* ゴールド */
  --color-gold:       #A8882A;   /* より濃いゴールド（コントラスト確保） */
  --color-gold-light: #F5EDD4;

  /* テキスト：高齢者向け高コントラスト設計 */
  --color-text:       #1A1A1A;   /* ほぼ黒（最優先視認性） */
  --color-text-mid:   #3D3D3D;   /* 濃いグレー */
  --color-text-light: #666666;   /* 最低限のコントラスト確保 */
  --color-border:     #C8C0B8;   /* より濃いボーダー */

  --font-main:   'Noto Serif JP', 'Georgia', serif;
  --font-sans:   'Noto Sans JP', 'Helvetica Neue', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);

  --transition: 0.3s ease;
  --max-width:  1200px;
  --header-height: 68px;
}

/* ---------- リセット ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* 高齢者向け：ベースフォントサイズを大きく */
  font-size: 17px;
  scroll-behavior: smooth;
  /* Android/Kyocera等でブラウザが自動でフォントを拡大するのを防ぐ */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  /* 横方向のはみ出しを防ぐ */
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- 共通ユーティリティ ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

/* セクション背景：白・淡いトーンのみ使用 */
.section--bg-soft   { background-color: var(--color-bg-soft); }
.section--bg-warm   { background-color: var(--color-warm-light); }
.section--bg-green  { background-color: var(--color-green-light); }
.section--bg-gold   { background-color: var(--color-gold-light); }
.section--bg-white  { background-color: var(--color-white); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-main);
  /* 高齢者向け：見出しを大きく */
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 24px;
}

.section-title--center { text-align: center; }

/* 白テキスト（ダーク背景専用） */
.section-title--white { color: #FFFFFF; }

.section-text {
  /* 高齢者向け：本文を大きく */
  font-size: 1.05rem;
  line-height: 2.0;
  color: var(--color-text-mid);
}

.section-text p + p { margin-top: 1.2em; }

.text-center { text-align: center; }
.text-warm   { color: var(--color-warm); }
.text-green  { color: var(--color-green); }

/* ---------- ボタン：大きめ・高コントラスト ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  /* 高齢者向け：ボタン文字を大きく */
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn--line {
  background-color: #06C755;
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.btn--line:hover {
  background-color: #04A344;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--warm {
  background-color: var(--color-warm);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.btn--warm:hover {
  background-color: var(--color-warm-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--green {
  background-color: var(--color-green);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.btn--green:hover {
  background-color: #22452E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-green);
  border: 2px solid var(--color-green);
}
.btn--outline:hover {
  background-color: var(--color-green);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background-color: #FFFFFF;
  color: var(--color-warm-mid);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background-color: #F5F0EC;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-group--equal {
  align-items: stretch;
}

.btn-group--equal .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

/* ---------- 区切り装飾 ---------- */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-warm), var(--color-gold));
  border-radius: var(--radius-full);
  margin: 0 auto 32px;
}

.divider--left {
  margin: 0 0 32px;
}

/* ---------- カード ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ============================================
   ヘッダー
   高齢者向け：ロゴ・ナビを大きく・濃く
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 2px solid var(--color-green-light);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 8px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-decoration: none;
  flex-shrink: 0;
  gap: 2px;
}

/* ロゴ名：mark + text を横並びに */
.site-logo__name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ひまわりマーク：背景円＋絵文字でロゴっぽく */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #FFF3D0 0%, #FFE082 100%);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(168,136,42,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-logo:hover .logo-mark {
  transform: rotate(15deg) scale(1.08);
  box-shadow: 0 3px 10px rgba(168,136,42,0.35);
}

/* ロゴテキスト部分 */
.logo-text {
  letter-spacing: 0.04em;
}

.logo-text strong {
  color: var(--color-green);
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: 0.06em;
}

/* サブテキスト：視認可能なサイズ・色に */
.site-logo__sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-left: 40px; /* logo-mark幅+gap分だけインデント揃え */
}

/* フッター内ロゴ */
.footer-logo__name .logo-mark {
  width: 30px;
  height: 30px;
  font-size: 1rem;
  vertical-align: middle;
  display: inline-flex;
}

/* グローバルナビ */
.global-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  overflow: hidden;
}

/* ナビ文字：高齢者向けに十分なサイズ・高コントラスト */
.global-nav__item a {
  display: block;
  padding: 6px 11px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.global-nav__item a:hover,
.global-nav__item a.active {
  color: var(--color-green);
  background-color: var(--color-green-light);
}

.header-line-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background-color: #06C755;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.header-line-btn:hover {
  background-color: #04A344;
  transform: translateY(-1px);
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.mobile-menu.is-open { display: flex; }

/* モバイルメニュー文字：大きく・濃く */
.mobile-menu__item a {
  display: block;
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--color-text);
  text-align: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.mobile-menu__item a:hover {
  color: var(--color-green);
  background-color: var(--color-green-light);
  border-color: var(--color-green-light);
}

.mobile-menu__line {
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
}

.mobile-menu__line .btn { width: 100%; font-size: 1.1rem; }

/* ============================================
   フッター
   ============================================ */
.site-footer {
  background-color: var(--color-green);
  color: #FFFFFF;
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo__name {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.footer-logo__catch {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
}

.footer-nav__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav__list li + li { margin-top: 10px; }

.footer-nav__list a {
  font-size: 0.92rem;
  color: #FFFFFF;
  transition: var(--transition);
}

.footer-nav__list a:hover { color: #FFFFFF; text-decoration: underline; }

.footer-line-area { text-align: left; }

.footer-line-area p {
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
}

.footer-area-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
}

/* ============================================
   浮遊LINEボタン
   ============================================ */
.floating-line {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
  gap: 10px;
  background-color: #06C755;
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(6,199,85,0.5);
  transition: var(--transition);
}

.floating-line:hover {
  background-color: #04A344;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(6,199,85,0.6);
}

.floating-line.is-hidden-by-banner {
  display: none;
}

/* ============================================
   LINEアプリ内ブラウザ案内バナー
   ============================================ */
.line-browser-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 14px 20px;
  background-color: var(--color-green);
  color: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}

.line-browser-banner__text {
  flex: 1 1 220px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
}

.line-browser-banner__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background-color: #FFFFFF;
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.line-browser-banner__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  color: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 480px) {
  .line-browser-banner {
    padding: 12px 16px;
    gap: 8px 12px;
  }
  .line-browser-banner__text {
    flex-basis: 100%;
    font-size: 0.8rem;
  }

  /* 横並びだと文字が折り返してボタンの高さが揃わないため縦積みに */
  .btn-group--equal {
    flex-direction: column;
  }
  .btn-group--equal .btn {
    flex: none;
    width: 100%;
  }
}

/* ============================================
   ページヘッダー（内部ページ共通）
   ============================================ */
.page-header {
  padding: 110px 0 56px;
  background: linear-gradient(160deg, var(--color-green-light) 0%, var(--color-warm-light) 100%);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-header__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 12px;
}

.page-header__title {
  font-family: var(--font-main);
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 16px;
}

.page-header__desc {
  font-size: 1.05rem;
  color: var(--color-text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 2;
}

/* パンくず */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-green);
  font-weight: 600;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   プレースホルダー画像
   ============================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-warm-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--color-border);
}

/* ============================================
   FAQ アコーディオン
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  /* 高齢者向け：FAQ文字を大きく・濃く */
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-sans);
  transition: var(--transition);
}

.faq-question:hover { color: var(--color-green); }

.faq-q-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-warm);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  background-color: var(--color-green);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 0 22px 50px;
  /* 高齢者向け */
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 2;
}

.faq-answer.is-open { display: block; }

/* ============================================
   ステップフロー
   ============================================ */
.flow-list {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.flow-item:last-child { padding-bottom: 0; }

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-warm), transparent);
}

.flow-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-warm);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.flow-content { padding-top: 10px; }

/* 高齢者向け：フロー文字を大きく・濃く */
.flow-content__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.flow-content__desc {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.8;
}

/* ============================================
   価格カード
   ============================================ */
.price-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-warm);
}

.price-card--featured {
  border-color: var(--color-warm);
  border-width: 2px;
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-warm), var(--color-gold));
}

.price-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--color-warm);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.price-card__name {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* 高齢者向け：価格を大きく・濃く */
.price-card__price {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-warm);
  margin-bottom: 4px;
}

.price-card__price span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.price-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.9;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

/* ============================================
   スクロールフェードイン
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 960px) {
  .global-nav,
  .header-line-btn { display: none; }

  .hamburger { display: flex; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-line-area {
    text-align: left;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html { font-size: 16px; }

  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  .section-title { font-size: 1.35rem; }

  .btn {
    padding: 14px 26px;
    /* フォントが大きい端末でテキストが右に切れないよう折り返しを許可 */
    white-space: normal;
    word-break: keep-all;
    max-width: 100%;
  }
  .btn--lg { padding: 17px 36px; font-size: 1rem; }

  .footer-top { grid-template-columns: 1fr; }

  .header-inner { padding: 0 16px; }

  .floating-line {
    bottom: 20px;
    right: 16px;
    padding: 13px 20px;
    font-size: 0.88rem;
  }
}
