@charset "utf-8";
/*=================================
style.css　レイアウト、パーツCSS
1: root
2: parts (title,list,table,etc)
3: icon
4: layout
5: contents
=================================*/

:root {
  --primary: #182053;
  --blue: #007cdb;
  --primary-rgb: rgb(24, 32, 83);
  --text: #333;
  --text-gray: #616161;
  --text-red: #E6001D;
  --bg-gray: #eceff1;
  --bg-darkgray: #353535;
  --bg-right-gray: #fafafa;
  --bg-right-blue: #0963a1;
  --bg-white-rgba: rgba(255, 255, 255, 0.8);
  --link: #0A75B8;
  --link-hover: #009fe8;
  --border-gray: #DAE4EF;
  --border-darkgray: #aeb7c2;
  --accent01: #da6a07;
  --filter-drop-shadow: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.7));
  --box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
  --box-shadow-hover: 0px 8px 16px rgba(0, 0, 0, 0.4);
  --txt-shadow: 2px 3px 5px rgba(0, 0, 0, 0.8);
}

:root{
  --font-base: 'Noto Sans JP', sans-serif, 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;

  /* Font Size */
  --font-size-2xs: clamp(0.625rem, 0.6rem + 0.1vw, 0.688rem);
  /* 10px → 11px */
  --font-size-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.813rem);
  /* 12px → 13px */
  --font-size-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.938rem);
  /* 14px → 15px */
  --font-size-md: clamp(1rem, 0.96rem + 0.2vw, 1.063rem);
  /* 16px → 17px */
  --font-size-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  /* 18px → 20px */
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  /* 20px → 24px */
  --font-size-2xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  /* 24px → 32px */
  --font-size-3xl: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
  /* 28px → 40px */
  --font-size-4xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  /* 32px → 48px */
  --font-size-5xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  /* 40px → 64px */
  --font-size-6xl: clamp(3rem, 2rem + 4vw, 5rem);
  /* 48px → 80px */
  --font-size-7xl: clamp(4rem, 2.5rem + 6vw, 7rem);
  /* 64px → 112px */

  /* 余白 */
  --space-section: clamp(40px, 8vw, 80px);
  --space-section-mini: clamp(24px, 4vw, 60px);
}

/* 2: parts (title,list,table,etc)
================================== */
/* ------margin classes------ */
.mb8 {
  margin-bottom: 8px!important;
}
.mb16 {
  margin-bottom: 16px!important;
}
.mb24 {
  margin-bottom: 24px!important;
}
.mb32 {
  margin-bottom: 32px!important;
}
.mb40 {
  margin-bottom: 40px!important;
}
.mb56 {
  margin-bottom: 56px!important;
}
.mt16 {
  margin-top: 16px!important;
}
.mt32 {
  margin-top: 32px!important;
}
.mr1em {
  margin-right: 1em!important;
}
.mb1em,
.boxmb1em p {
  margin-bottom: 1em;
}
.mb1em:last-child,
.boxmb1em p:last-child {
  margin-bottom: 0;
}
.txtIndent p,
.txtIndent {
  text-indent: 1em;
}

/* ------title classes------ */
.ttlDesign1 {
  font-size: var(--font-size-3xl);
  margin-bottom: 24px;
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 768px) {
  .ttlDesign1 {
    margin-bottom: 40px;
  }
}
.ttl_en {
  color: var(--primary);
  font-size: var(--font-size-2xl);
  line-height:1;
  font-weight: bold;
}
.ttlDesign2 {
  margin-bottom: 16px;
  font-weight: bold;
  color: var(--primary);
  font-size: var(--font-size-2xl);
}

/* ------text classes------ */
.red {/*赤文字*/
  color: var(--text-red);
}
.wht {/*白文字*/
  color: #FFF;
}
.fB {/*太文字*/
  font-weight: bold;
}
.fS {/*小さいフォント*/
  font-size: 90%;
}
.fSS {/*さらに小さいフォント*/
  font-size: 70%;
}
.fBig {/*大きいフォント*/
  font-size: 120%;
}
.fI {/*イタリック*/
  font-style: italic;
}
.tU {/*アンダーライン*/
  text-decoration: underline double;
}
.vM {
  vertical-align: middle;
}
.tC {
  text-align: center;
}
@media (min-width: 768px) {
  .tC_pc {
    text-align: center;
  }
}
.tR {
  text-align: right;
}
.tL {
  text-align: left;
}
.tel,.tel:hover {
  color: var(--text);
  text-decoration: none;
}

/* ------table classes------ */
.tableDesign1,
.tableDesign2 {
  width: 100%;
  overflow-wrap: anywhere;
}
.tableDesign1 th,
.tableDesign1 td {
  padding: 16px;
  border: 1px solid var(--border-gray);
  vertical-align: middle;
}
.tableDesign1 th {
  background: var(--bg-right-blue);
  font-weight: bold;
  vertical-align: middle;
  color: #FFF;
}
@media (min-width: 768px) {
  .tableDesign1 th:first-child {
    min-width: 180px;
  }
}
.tableDesign1 th a {
  color: #FFF;
}
.tableDesign2 th,
.tableDesign2 td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-gray);
  text-align: left;
  vertical-align: top;
}
@media (min-width: 768px) {
  .tableDesign2 th,
  .tableDesign2 td {
    padding: 16px;
  }
}
.tableDesign1.sp_tate th,
.tableDesign1.sp_tate td,
.tableDesign2.sp_tate th,
.tableDesign2.sp_tate td {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .tableDesign1.sp_tate th,
  .tableDesign1.sp_tate td,
  .tableDesign2.sp_tate th,
  .tableDesign2.sp_tate td {
    display: table-cell;
    width: auto;
  }
}
.tableDesign2.sp_tate th {
  border-bottom: none;
  padding-bottom: 0;
}
.tableDesign2 th {
  width: 7em;
  font-weight: bold;
  vertical-align: top;
  color: var(--bg-dark-gray);
}
@media (min-width: 768px) {
  .tableDesign2 th {
    width: 16em;
  }
}
.tableScroll {
  overflow: auto;
}
.tableScroll table {
  width: 660px;
}
@media (min-width: 768px) {
  .tableScroll table {
    width: 100%;
  }
}
.tableSprite tr:nth-child(odd) {
  background-color: var(--bg-right-gray);
}
/* ------WP table block reset------ */
.wp-block-table {
  margin: 0;
}
.wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.wp-block-table td,
.wp-block-table th {
  border: none;
  word-break: normal;
}
.wp-block-table figcaption {
  display: none;
}

/* tableDesign2 with wp:table */
.wp-block-table.tableDesign2 th,
.wp-block-table.tableDesign2 td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-gray);
  text-align: left;
  vertical-align: top;
}
@media (min-width: 768px) {
  .wp-block-table.tableDesign2 th,
  .wp-block-table.tableDesign2 td {
    padding: 16px;
  }
}
.wp-block-table.tableDesign2 th {
  width: 7em;
  font-weight: bold;
  color: var(--bg-dark-gray);
}
@media (min-width: 768px) {
  .wp-block-table.tableDesign2 th {
    width: 16em;
  }
}


/* ------list classes------ */
.list_dot > li {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  padding-left: 20px;
}
.list_dot_mb0 > li {
  margin-bottom: 0;
}
.list_dot > li:before {
  position: absolute;
  top: 10px;
  left: 7px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #000;
}
.list_arw > li {
  position: relative;
  background-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
}
.list_arw > li::after {
  position: absolute;
  left: 4px;
  top: 11px;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}
.listDesign_no,
.listDesign_Lroman,
.listDesign_Lalpha {
  margin-bottom: 24px;
  padding-left: 24px;
}
.listDesign_no > li {/*算用数字*/
  list-style-type: decimal;
  margin-bottom: 8px;
}
.listDesign_Lroman li {/*小文字のローマ数字*/
  list-style-type: lower-roman;
  margin-bottom: 4px;
}
.listDesign_Lalpha li {/*小文字のアルファベット*/
  list-style-type: lower-alpha;
  margin-bottom: 4px;
}
.listDesign_Lalpha > li:last-child,
.listDesign_Lroman > li:last-child,
.listDesign_no > li:last-child {
  margin-bottom: 0;
}
.listDesign_no2 > li {
  /*括弧付の数字リスト*/
  position: relative;
  margin-bottom: 4px;
  padding-left: 2em;
  counter-increment: cnt;
}
.listDesign_no2 > li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "（"counter(cnt) "） ";
}
.imgList1 li:not(:last-child) {
  margin-bottom: 32px;
}


/* 3: icon
================================== */
.blank {
  background: url(../img/cmn/icn_blank.svg) right center no-repeat;
  background-size: 14px;
  padding-right: 18px;
}
.blankWht {
  background: url(../img/cmn/icn_blankWht.svg) right center no-repeat;
  background-size: 14px;
  padding-right: 18px;
}
.pdf {
  background: url(../img/cmn/icn_pdf.svg) right center no-repeat;
  background-size: 14px;
  margin-right: 8px;
  padding-right: 24px;
}
.xls {
  background: url(../img/cmn/icn_xls.svg) right center no-repeat;
  background-size: 14px;
  margin-right: 8px;
  padding-right: 24px;
}
.doc {
  background: url(../img/cmn/icn_doc.svg) right center no-repeat;
  background-size: 14px;
  margin-right: 8px;
  padding-right: 24px;
}

/* 4: layout
================================== */
main > .inr:last-child {
  padding-bottom: 100px;
}
.inr {
  width:min(1280px,100%);
  margin:auto;
  padding-inline: 16px;
  padding-block: var(--space-section);
}
.bgGray {
  background-color: var(--bg-gray);
}

/* 5: contents
================================== */
/* 下層メインビジュアル */
.mainVisual_sec {
  position: relative;
  padding-inline: 16px;
  padding-block: var(--space-section-mini);
  background: url(../img/cmn/mv.jpg) center / cover no-repeat;
  &::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(1, 27, 54, 0.6);
  }
  & h2 {
    position: relative;
    color: #FFF;
    font-weight: bold;
    font-size: var(--font-size-4xl);
    text-align: center;
    text-shadow:0 0 10px rgba(0,0,0,.4);
    line-height: 1.4;
  }
  & h2 span {
    display: block;
    font-size: var(--font-size-2xl);
  }
}
/* パンくず */
.pankuzu {
  background: #F0F3F5;
}
.pankuzu_inr {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: var(--font-size-sm);
  padding-block: 8px;
  list-style: none;
}
@media (min-width: 768px) {
  .pankuzu_inr {
    width: min(1280px,100%);
    margin: 0 auto;
    padding-inline: 16px;
  }
}
.pankuzu_inr li {
  position: relative;
  margin-right: 8px;
  padding-right: 14px;
  color: var(--text-gray);
}
.pankuzu_inr li:before {
  position: absolute;
  right: -8px;
  top: 0;
  display: block;
  content: "/";
  margin-left: .5em;
  margin-right: .5em;
}
.pankuzu_inr li a {
  color: var(--link);
}
.pankuzu_inr li:last-child {
  margin-right: 0;
}
.pankuzu_inr li:last-child:before {
  content: none;
  margin-right: 0;
  padding-right: 0;
}
.pankuzu_inr li:last-child a {
  pointer-events: none;
  text-decoration: none;
  color: var(--text-gray);
}

/* サブナビゲーション */
.subnav {
  overflow-x: scroll;
  margin-bottom: 40px;
  & ul {
    display: flex;
    width: 560px;
    margin: 0 auto;
    padding: 16px 0;
    border-bottom: 1px solid #eaeaea;
    background: rgba(255, 255, 255, 0.5);
    list-style: none;
  }
  & a {
    position: relative;
    display: inline-block;
    padding: 0 32px 0 16px;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: bold;
  }
  & a::after {
    position: absolute;
    bottom: -19px;
    left: 0;
    content: '';
    display: inline-block;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  & a:hover::after {
    transform: scale(1, 1);
  }
  & a::before {
    position: absolute;
    right: 8px;
    top: 36%;
    display: block;
    content:"";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--text-gray);
    border-right: 2px solid var(--text-gray);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  & a:hover::before {
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
  }
}
@media (min-width: 768px) {
  .subnav {
    position: relative;
    overflow-x: inherit;
    z-index: 10;
    & ul {
      width: 100%;
      flex-wrap: wrap;
      padding: 0;
    }
    & ul li {
      padding: 16px 0;
    }
    & a {
      position: relative;
      margin-right: 24px;
      transition: all .3s;
    }
    & a:hover {
      color: var(--primary);
    }
  }
}

/* button */
.btn {
  display: inline-block;
  padding: 16px 64px;
  border-radius: 40px;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, opacity .2s ease;
  text-align: center;
  &:hover {
    background: #fff;
    color: var(--primary);
  }
  &:hover .blankWht {
    background: url(../img/cmn/icn_blank.svg) right center no-repeat;
    background-size: 14px;
    padding-right: 18px;
  }
}
.btn02 {
  display: inline-block;
  width: 100%;;
  max-width: 300px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid  var(--primary);
  border-radius: 40px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  background-color: #FFF;
  &:hover {
    background: var(--primary);
    color: #fff;
  }
}

/* --------------------------------------------------
  トップページ
-------------------------------------------------- */
/* ------メインビジュアル------ */
.mv {
  position: relative;
  min-height: 500px;
  height: 70svh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:url('../img/cmn/mv.jpg') center/cover no-repeat;
  &::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(1, 27, 54, 0.6);
  }
}
.mv-copy {
  position: relative;
  width: min(800px,90%);
  margin: 0 auto;
  text-align:center;
  color:#fff;
  & h1 {
    font-size: var(--font-size-5xl);
    line-height:1.4;
    margin-bottom:20px;
    text-shadow:0 0 10px rgba(0,0,0,.4);
  }
  & p{
    font-size: var(--font-size-xl);
    font-weight:700;
    text-shadow: 0 0 10px rgba(0, 0, 0, .4);
    text-wrap: balance;
  }
}

/* ------ABOUT------ */
.about_wrap {
  container-type: inline-size;
  container-name: about;
}
.about.wp-block-columns {
  display: grid !important;
  gap: 32px;
  align-items: center !important;
  margin-bottom: 0;
}
.about > .wp-block-column {
  margin: 0 !important;
}
@container about (min-width: 700px) {
  .about.wp-block-columns {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center !important;
  }
}
.about.wp-block-columns {
  display: grid !important;
}
.about > .wp-block-column {
  margin: 0 !important;
}

/* ------SERVICE------ */
.service_wrap {
  container-type: inline-size;
  container-name: card;
  background: var(--bg-gray);
  padding-block: clamp(32px, 4vw, 56px);
}
.service_grid {
  display:grid;
  grid-template-columns: 1fr;
  gap:40px;
}
.service_item {
  display: grid;
  gap: 10px;
  text-align:center;
  padding:0 16px 40px;
  border-bottom:1px solid var(--border-gray);
  & img {
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;
    margin:auto;
  }
  & h3 {
    min-height: 120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-size: var(--font-size-2xl);
    line-height: 1.4;
    & span {
      display: block;
      color:var(--text-gray);
      font-size: var(--font-size-lg);
      font-weight: bold;
    }
  }
  & p {
    text-align: left;
    margin-bottom: 16px;
  }
  &:last-child {
    border-bottom: none;
  }
  & .btn02 {
    justify-self: center;
    align-self: end;
  }
}
@container card (min-width: 700px) {
  .service_grid {
    grid-template-columns: repeat(3,1fr);
    gap: 0;
  }
  .service_item {
    display: grid;
    grid-template-rows: auto 120px 1fr auto;
    padding: 0 40px;
    border-bottom: none;
    border-right: 1px solid var(--border-gray);
    &:last-child {
      border-right: none;
    }
  }
}

/* ------お知らせ------ */
.news_wrap {
  display: grid;
  gap: 32px;
}
.news_left {
  display: grid;
  gap: 32px;
  & > div:first-child {
    text-align: center;
  }
}
.home .newsList {
  padding-inline: clamp(16px, 4vw, 40px);
  border-inline-start: 1px solid var(--border-gray);
}
.newsList {
  overflow-y: auto;
  display: grid;
  gap: 24px;
  padding-left: 0;
  &::-webkit-scrollbar {
    width: 10px;
    background: #ccc;
  }
  &::-webkit-scrollbar-thumb {
    background: var(--primary);
  }
  & li {
    display: grid;
    gap: 8px;
  }
  & .date {
    color: var(--text-gray);
    font-weight: bold;
    font-size: var(--font-size-sm);
  }
  & .newsTxt {
    line-height: 1.8;
  }
}
.news .btn {
  width: min(240px, 100%);
  justify-self: center;
  text-align: center;
}
.note {
  width:min(calc(100% - 32px),1280px);
  margin: -40px auto 40px;
  padding: clamp(16px, 3vw, 24px);
  border: 4px double var(--text-red);
  color: var(--text-red);
  font-size: var(--font-size-sm);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .news_wrap {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
  }
  .news_left {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }
  .home .newsList {
    max-height: 200px;
  }
  .newsList li {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }
}

/* ------店舗情報------ */
.info_section {
  overflow: hidden;
}
.info_box {
  display: grid;
  gap: clamp(32px, 5vw, 50px);
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: clamp(4px, 1vw, 8px) solid var(--primary);
  text-align: left;
  & > div {
    display: grid;
    gap: 16px;
    align-content: start;
  }
  & h3 {
    font-size: clamp(1.5rem, 2vw, 2.125rem);
    line-height: 1.4;
  }
  & p {
    line-height: 1.9;
  }
  &.wp-block-columns {
    margin-bottom: 0;
    gap: clamp(32px, 5vw, 50px);
  }
  & .wp-block-column {
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .info_box {
    grid-template-columns: 1fr 1fr;
    & > div {
      text-align: center;
    }
  }
}
/* ------MAP------ */
.map {
  overflow: hidden;
  padding: 0 !important;
  max-width: none !important;
}
.map .wp-block-html {
  height: 100%;
  margin: 0;
}
.map_frame {
  width: 100%;
  height: 100%;
}
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

/* --------------------------------------------------
  下層ページ
-------------------------------------------------- */
/* ------ショップガイド------ */
.storeInfo_sec {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
.storeInfo {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gray);
}
.storeInfo h2 {
  margin-bottom: 0;
}
.storeInfo > .wp-block-group__inner-container {
  display: grid;
  gap: clamp(16px, 4vw, 40px);
  align-items: start;
}
@media (min-width: 768px) {
  .storeInfo > .wp-block-group__inner-container {
    grid-template-columns: 300px 1fr;
  }
}
.storeInfo_img {
  margin: 0;
}
.storeInfo_img img {
  width: 100%;
  display: block;
}
.storeInfo_body > .wp-block-group__inner-container {
  display: grid;
  gap: 16px;
}
.storeInfo_txt {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0 16px;
}
.storeInfo_txt dt {
font-weight: bold;
color: var(--primary);
}
.storeInfo_txt dd {
  margin: 0;
}

/* ------アクセス------ */
.access .about img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ------お知らせ一覧・詳細ページ------ */
.newsArchive_layout {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
}
@media (min-width: 1024px) {
  .newsArchive_layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}
.archive_ttl {
  display: grid;
  place-items: center;
  min-height: 80px;
  background: var(--primary);
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: bold;
  & li {
    border-bottom: 1px solid var(--border-gray);
  }
}
.archiveList {
  list-style: none;
  padding-left: 0;
  & a {
    display: block;
    padding: 24px 20px;
    color: var(--blue);
    text-decoration: underline;
    border-bottom: 1px solid var(--border-gray);
    &:hover {
      opacity: .7;
    }
  }
}
.newsDate {
  margin-bottom: 24px;
  text-align: right;
  color: var(--text-gray);
  font-weight: bold;
}
/* ページネーション */
.news-pagination-wrapper {
  margin-top: clamp(40px, 6vw, 80px);
  & .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  & .page-numbers {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
  }
  & a.page-numbers:hover {
    background: var(--primary);
    color: #fff;
  }
  & .page-numbers.current {
    background: var(--primary);
    color: #fff;
    pointer-events: none;
  }
  & .prev,
  & .next {
    font-size: var(--font-size-xl);
    line-height: 1;
  }
  & .dots {
    border: none;
    background: none;
    min-width: auto;
    padding: 0 8px;
  }
}
.screen-reader-text {
  display: none;
}
@media (min-width: 767px) {
  .news-pagination-wrapper .page-numbers {
    min-width: 48x;
    height: 48x;
  }
}