/****************************************
* main.css :ベース
* タグ要素、基本全て適用するデザイン
***************************************/
@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  display: inline;
  color: currentcolor;
  cursor: pointer;
  text-decoration: none;
}

a:hover{
  cursor: pointer;
}

ul, li{
  margin-left: 0 !important;
  list-style: none !important;
}

.p-sub_pc_on {
  display: block;
}

.p-sub_sp_on {
  display: none !important;
}

table .p-sub_sp_on {
  display: none;
}

#page_no_side {
  width: 100%;
  margin: 0;
}

h1, h2, h3, section, [id] {
  scroll-margin-top: 88px; /* ヘッダーの高さ分 */
}

/****************************************
* main.css :コンテンツ
* 役割:ボタン,カード,見出し,フォーム部品
***************************************/
/* コンテンツ */

.lp_content {
  margin: 0;
}

/* トップページ：基本デザイン */
/* コンテンツのカラーを簡易変数化　add tamashiro */
/* projectへ移植したほうがわかりやすいかもしれない。 */
:root {
  /* color */

  /* brand */
  --primary-color : #54361b;
  --secondary-color : #42444C;
  
  /* text */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-white: #ffffff;

  /* background */
  --color-bg: #ffffff;
  --color-bg-gray: #EDF4FD;
  --color-bg-dark: #42444C;

  /* fontsize */
  --top-head     :60px;
  --top-subhead  :36px;
  --top-text     :16px;
  --top-subtext  :16px;
}

.p-top_head{
  font-size: var(--top-head) !important;
  /* color: #E6001F; */
  color: var(--primary-color);
  font-weight: bold;
  position: relative !important;
}

.p-sub_head{
  font-size: var(--top-subhead) !important;
  color: var(--primary-color);
  font-weight: 600;
  position: relative !important;
  margin-bottom: 4rem !important;
  padding-left: 1.6rem !important;
}

.p-sub_head::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 1.2em;
  /* background-color: #E6001F; */
  background-color: var(--primary-color);
}

.p-top_text{
  font-size: var(--top-subtext);
  color: var(--primary-color);
  font-weight: normal;
  line-height: 2.2 !important;
  margin-bottom: 1rem;
}

.p-sub_text{
  font-size: var(--top-subtext);
  color: var(--sub-color);
  font-weight: normal;
  line-height: 2.2 !important;
  margin-bottom: 1rem !important;
}

/*****************************************
 * コンポーネント　再利用パーツ 
 * Coponentのテーマカラー設定 
 * mainとsubの出し分けはデザインを見て判断 add tamashiro
 ****************************************/
/* メニュー */
#c-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 299;
  will-change: transform;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

#c-menu.active {
  display: block;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.c-menu-bg {
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.c-menu_inner {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}

.c-menu_list_wrapper {
  margin-bottom: 1.5rem;
}

.c-menu_list_item {
  border-bottom: 1px solid #ffffff63;
}

.c-menu_list_item_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 1rem 1rem;
  border-bottom: 1px solid #cccc;
}

.c-menu_list_item_head_text {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color);
}

.c-menu_sub_list_text{
  background-color: var(--color-bg-contact);
  padding: 15px;
  font-size: 12px;
  font-weight: 500;
  padding-left: 24px;
  border-bottom: 1px solid #ccc;

}

.c-menu_sub_list_text-title{
  background-color: var(--primary-color);
  padding: 15px;
  font-size: 12px;
  color: var(--color-text-white);
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}

.c-menu_list_item_body_text {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.c-menu_list_item_inner:hover {
  background: #a0cfdf63;
}

.c-menu_contact_wrapper{
    width: 280px;
    margin: 0 auto 24px;
}

.c-menu_contact_contents p{
  width: 280px !important;
}

.c-menu_tel_wrapper{
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
  margin-top: 24px;
}

.c-menu_under_text{
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var( --color-text-light);
}

.c-menu_sub_list_wrapper {
  display: none;
}

.c-menu_list_item_inner {
  position: relative;
}

.c-parent .c-menu_list_item_inner::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.c-parent.active .c-menu_list_item_inner::after {
  transform: rotate(-135deg);
}

/* ── 共通ボタン ── */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 221px;
    height: 59px;
    background: var(--mm-color-brown);
    border: 0.5px solid var(--mm-color-bg-beige);
    color: var(--mm-color-text-white);
    font-family: var(--mm-font-mincho);
    font-size: 16px;
    letter-spacing: .1em;
    position: relative;
    transition: opacity .2s;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 7px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transition: border-color .5s cubic-bezier(0,0,0,1);
}

.c-btn:hover {
  background: var(--color-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.c-btn:hover::after {
  border-left-color: currentColor;
}

.c-btn:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.c-btn.-return {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 221px;
    height: 59px;
    background: var(--mm-color-brown);
    border: 0.5px solid var(--mm-color-bg-beige);
    color: var(--mm-color-text-white);
    font-family: var(--mm-font-mincho);
    font-size: 16px;
    letter-spacing: .1em;
    position: relative;
    transition: opacity .2s;
}

.c-btn.-return::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 33px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 7px solid currentColor;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: border-color .5s cubic-bezier(0,0,0,1);
}

.c-btn.-return::after {
    content: none;
}

.c-btn.-return:hover {
    color: var(--primary-color);
    background: #fff;
    border-color: var(--primary-color);
}

.c-btn.-return:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.c-btn.-return:active {
    filter: brightness(0.96);
}

.c-btn-header{
  margin-left: auto;
  display: inline-block;
  background: var(--primary-color);
  color: var(--color-bg);
  padding: 1.8rem 1.4rem;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s;
}

.c-btn-header:hover{
  background: var(--color-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.c-btn-header:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.c-btn-header:active{
  filter: brightness(0.96);
}

.c-btn_return::after {
  top: calc(50% - 6px);
  left: 45px;
  border-top: 7px solid transparent;
  border-right: 7px solid var(--color-bg);
  border-bottom: 7px solid transparent;
  border-left: none;
}

.c-btn_associate{
  background-color: var(--color-bg);
  color: var(--primary-color) !important;
  border: none;
}

.c-btn_associate::after{
  border-left: 7px solid var(--primary-color);
}

.c-btn_associate{
  background-color: var(--color-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.c-btn_associate:hover{
  background-color: var(--primary-color);
  color: var(--color-bg) !important;
  border-color: var(--primary-color);
}

.c-btn_associate:hover::after{
  border-left-color: currentColor !important;
}

/* l-innerのスタイルはlayoutへ移動
   u-はとりあえず据え置きです。tamashiro  */
.u-under_line {
  text-decoration: underline !important;
}

.u-inline{
  display: inline;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* 文字スライダー add tamashiro */
.c-loop_wrapper{
  display: flex;
  align-items: center;
  overflow: hidden;
}

.c-loop_area {
  display: flex;
  animation: loop-slide 55s infinite linear 1s both;
  list-style: none !important;
  margin: 0 !important;
  padding: 0;
  width: calc( 1740px * 2);
}

.c-loop_text {
  width: 1740px;
  flex-shrink: 0;
}

@keyframes loop-slide {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* hover add tamashiro 
 *  <ul class="c-hover-opacity p-top_business-list "> 
 *  カーソルが範囲に入るとフェードがかかる 
 *  適用例：<li class="c-hover-opacity p-top_business-list-item">
 */
.c-hover-opacity:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/* main subの色反転ホバーも先にスタイル組んでおくといいかも 積み残し課題 add tamashiro */

/* セレクトボタン */
.c-category-box-container {
    display: flex;
    justify-content: space-between; 
    gap: 73px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 20px 0;
}

.c-category-box {
    flex: 1;                       /* すべてのボタンを同じ幅にする */
    display: flex;
    align-items: center;
    justify-content: center;       /* テキストを中央寄せ */
    
    background-color: #f0f7ff;     /* 薄い青の背景 */
    border: 1px solid #1e50a2;     /* 紺色の枠線 */
    color: #1e50a2;                /* 文字色 */
    text-decoration: none;
    font-size: 14px;
    height: 50px;                  /* 高さの指定 */
    border-radius: 50px;           /* カプセル型にする */
    
    position: relative;            /* 矢印の位置基準 */
    padding: 0 30px;
}

/* 右側の小さな下矢印（▼） */
.c-category-box::after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* ホバー時の演出（お好みで） */
.c-category-box:hover {
    background-color: #e0eeff;
}

/* slick  */
.c-slick-slider {
  position: relative;
  margin: 0;
  height: 100%;
}

.c-slick-list {
  height: 100%;
}

.c-slick-track {
  height: 100%;
}

.c-slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* table  */
.c-table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 0 0 24px 0;
}

.c-table_th{
  background: #EDF4FD;
  border: 1px solid #E9E5DE;
  padding: 17px 25px;
  line-height: 2.2;
  border-top: 1px solid #E9E5DE;
  border-right: none;
  border-left: none;
  font-weight: bold;
  color: var(--color-text);
  vertical-align: middle;
}

.c-table_td{
  color: var(--color-text);
  border-top: 1px solid #E9E5DE;
  border-right: none;
  border-left: none;
  vertical-align: middle;
  border: 1px solid #E9E5DE;
  padding: 17px 25px;
  line-height: 2.2;
  background: #fff;
}

.c-table_tr {
    height: 98px;
}

.bg_image.pc {
    display: block;
}

.bg_image.mobile {
    display: none;
}

/* ページネーション */
.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 8px;
  width: 100%;
}

.c-pagination-inner {
  max-width: 210px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.page-nation {
  margin-top: 4vw;
}

.page-nation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1vw;
}
/* 数字ボタン */
.c-pagination-inner a.page-numbers,
.c-pagination-inner span.page-numbers {
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  color: #333333;
  background-color: var(--color-bg-gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
/* 現在のページ */
.c-pagination-inner a.page-numbers.current,
.c-pagination-inner span.page-numbers.current {
  color: var(--color-bg);
  background-color: var(--primary-color);
  font-weight: bold;
}
/* 前へ・次へ */
.c-pagination-inner a.page-numbers.prev,
.c-pagination-inner a.page-numbers.next {
  font-size: 16px;
  color: var(--primary-color);
  background: none;
  font-weight: bold;
  width: auto;
  line-height: 40px;
  border-radius: 50%;
}

/* ── LocaWeave: CSS変数 ─────────────────── */
:root {
  --lw-navy:    #2b4e78;
  --lw-black:   #343434;
  --lw-gray:    #606f7f;
  --lw-light:   #ededed;
  --lw-bg:      #f5f5f7;
  --lw-white:   #fefefe;
  --lw-dark:    #222222;
  --font-mincho: 'Shippori Mincho B1', 'Shippori Mincho', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
  --font-en:     'Inter', sans-serif;
  --inner-max: 940px;
  --inner-pad: 63px;
}

/* ── LocaWeave: アニメーション ── */
@keyframes lw-spin { to { transform: rotate(360deg); } }
@keyframes lw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── LocaWeave: ユーティリティ ── */
.lw-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}

.lw-section-title {
  font-family: var(--font-mincho);
  font-size: 60px;
  font-weight: 400;
  color: var(--lw-black);
  line-height: 1;
  letter-spacing: 0;
}

.lw-section-subtitle {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--lw-black);
  margin-top: 10px;
}

/* ── LocaWeave: ボタン ── */
.lw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: .12em;
  background: var(--lw-navy);
  color: #fff;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  transition: opacity .2s;
}
.lw-btn:hover { opacity: .8; }

.lw-btn--outline {
  background: transparent;
  border: 2px solid var(--lw-navy);
  color: var(--lw-navy);
}

.lw-btn--white-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* ── スクロールフェードイン ── */
.js-inview {
  opacity: 0;
  transform:
    translateX(var(--inview-x, 0px))
    translateY(var(--inview-y, 30px))
    scale(var(--inview-scale, 1));
  transition:
    opacity var(--inview-duration, 0.8s) var(--inview-ease, ease),
    transform var(--inview-duration, 0.8s) var(--inview-ease, ease);
}

.js-inview.is-inview {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* ── KVテキスト 1文字アニメーション ── */
.kv-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
}
.kv-char--show {
  animation: kvCharIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards var(--kv-delay, 0ms);
}
.kv-sub-anim {
  opacity: 0;
  transform: translateY(10px);
}
.kv-sub-anim--show {
  animation: kvSubIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards var(--kv-delay, 0ms);
}
@keyframes kvCharIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kvSubIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* サブページタイトル */
.c-heading__en {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 32px;
  letter-spacing: 0.12em;
  color: #1d1d1f;
}

.c-heading__ja {
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  display: block;
  font-size: 16px;
  color: #343434;
  margin-top: 8px;
  margin-bottom: 48px;
}

/* テーブルスタイル */
.c-table {
  width: 100%;
  border-collapse: collapse;
}

.c-table th,
.c-table td {
  padding: 24px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.c-table th {
  width: 220px;
  background: #e3e8ef;
  color: #535353;
  font-weight: 700;
}

.c-table td {
  background: #ffffff;
  color: #42444c;
}

.c-table td a {
  color: #42444c;
  text-decoration: none;
}

/* ── 共通テーブル：メニューリスト表示（鍼灸maman） ──
   1列目=名称（強調背景）／2列目=金額（右寄せ）の2カラム表を
   ページ間で使い回すための .c-table 修飾子。
   例）<table class="c-table c-table--menu"><tbody><tr><td>名称</td><td>金額</td></tr>...
*/
.c-table--menu {
  border-collapse: collapse;
}
.c-table--menu th,
.c-table--menu td {
  border: 0.5px solid var(--mm-color-border);
  background: var(--mm-color-bg-white);
  font-family: var(--mm-font-mincho);
  font-size: 16px;
  line-height: normal;
  letter-spacing: .12em;
  color: var(--mm-color-brown);
  padding: 20px 30px;
  vertical-align: middle;
}
.c-table--menu tr td:first-child {
  width: 55%;
  background: var(--mm-color-bg-beige-light);
}
.c-table--menu tr td:last-child {
  font-size: 18px;
  text-align: right;
}

.c-table--menu tr {
  height: 98px;
}

/* ── LocaWeave: マーキー ── */
.c-marquee {
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
}

.c-marquee-track {
  display: flex;
  gap: 40px;
  animation: lw-marquee 25s linear infinite;
  white-space: nowrap;
}

.c-marquee-item {
  font-family: var(--font-mincho);
  font-size: 94px;
  color: var(--lw-light);
  font-weight: 700;
  flex-shrink: 0;
}


/* ── 共通：回転バッジ ── */
.c-rotate-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-rotate-badge__img {
  display: block;
  width: 240px;
  height: 240px;
}

.c-rotate-badge__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px solid var(--lw-navy);
  pointer-events: none;
}

/* ── 共通：回転アニメーション（他要素にも使い回し可） ── */
.c-rotate {
  animation: c-rotate-spin 20s linear infinite;
}

@keyframes c-rotate-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .c-rotate-badge__img {
    width: 110px;
    height: 110px;
  }

  .c-rotate-badge__dot {
    width: 18px;
    height: 18px;
  }
}

/* ── 鍼灸maman: CSS変数 ─────────────────── */
:root {
  --mm-color-accent:      #fed55a; /* ゴールドアクセント */
  --mm-color-heading:     #54361b; /* 見出し・濃茶 */
  --mm-color-brown:       #5c5248; /* 本文・茶グレー */
  --mm-color-brown-deep:  #593a1f; /* ラベル・濃い茶 */
  --mm-color-text:        #343434; /* 本文黒 */
  --mm-color-text-white:  #ffffff;
  --mm-color-date:        #ddc5a8; /* ブログ日付タン */

  --mm-color-bg:          #ffffff;
  --mm-color-bg-white:    #fffefd; /* カード等のオフホワイト */
  --mm-color-bg-cream:    #f9f5f0;
  --mm-color-bg-beige:    #e3d6cf;
  --mm-color-bg-beige-light: #e8ddd7; /* メニュー行の強調背景 */
  --mm-color-overlay:     rgba(84, 54, 27, 0.4);
  --mm-color-border:      #9d9084;

  --mm-font-mincho:     'Shippori Mincho B1', serif;
  --mm-font-mincho-alt: 'Shippori Mincho', serif;
  --mm-font-hina:       'Hina Mincho', serif;
  --mm-font-sans:       'Noto Sans', sans-serif;
  --mm-font-en:         'Inter', sans-serif;

  --mm-inner-max: 1100px;
  --mm-inner-pad: 63px; /* SP: 24px にオーバーライド */
}

/* ── 鍼灸maman: パンくずリスト ── */
.c-breadcrumb {
  margin: 0 auto;
  padding: 20px 200px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mm-font-mincho);
  font-size: 12px;
  color: var(--mm-color-brown);
  background-color: var(--color-bg-gray);
}
.c-breadcrumb a { display: inline; color: var(--mm-color-brown); }
.c-breadcrumb .c-breadcrumb__current {
  color: var(--mm-color-heading);
  font-weight: 700;
}

@media (max-width: 768px) {

  .c-breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .c-breadcrumb a,
  .c-breadcrumb span {
    flex-shrink: 0;
  }

}

/* ロード画面 */
.c-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--lw-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.c-loader__inner {
  text-align: center;
}

.c-loader__logo {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  opacity: 0;
  animation: c-loader-fade-in 1s ease forwards 0.2s;
}

.c-loader__bar {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 auto;
  overflow: hidden;
}

.c-loader__bar-fill {
  display: block;
  width: 40%;
  height: 100%;
  background: #ffffff;
  animation: c-loader-bar 1.2s ease-in-out infinite;
}

@keyframes c-loader-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes c-loader-bar {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ページネーション */
.c-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-top: 48px;
}

.c-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 0;
    font-size: 13px;
    color: var(--mm-color-heading);
}

.c-pagination .page-numbers.current {
    background: var(--mm-color-heading);
    color: #fff;
}

.c-pagination .page-numbers.dots {
    color: var(--mm-color-text-sub, #999);
}