@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&family=Merriweather&display=swap");
/*
   Break Point

  // Small devices (landscape phones, 576px and up)
  @media (min-width: 576px) { ... }

  // Medium devices (tablets, 768px and up)
  @media (min-width: 768px) { ... }

  // Large devices (desktops, 992px and up)
  @media (min-width: 992px) { ... }

  // X-Large devices (large desktops, 1200px and up)
  @media (min-width: 1200px) { ... }

  // XX-Large devices (larger desktops, 1400px and up)
  @media (min-width: 1400px) { ... }

*/
body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100%;
  overflow-y: auto;
}

/* Lists (enumeration) */
/* ============================================ */
/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "Merriweather", "Times New Roman", serif;
  /*  font-family: 'Noto Sans JP', 'Noto Serif JP','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif, sans-serif; */
  font-optical-sizing: auto;
  font-size: 1em;
  /*  font-weight: <weight>; */
  /*  font-style: normal; */
  /*  font-family: "M PLUS 1", sans-serif;*/
  /*  font-family: 'Noto Serif JP', serif; */
  /*  font-family: 'Noto Sans JP', sans-serif; */
  /*  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif; */
  color: #000000;
  overflow-x: hidden;
  font-size: 1em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}

header {
  width: 100%;
}

main {
  width: 100%;
  top: 160px;
  padding-bottom: 180px;
  position: relative;
}

footer {
  width: 100%;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
}

button {
  letter-spacing: 2px;
}

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

img {
  /*    max-width: 100%; */
  /*    width: 100%; */
  margin: 0;
  display: block;
  max-width: 100%;
  height: auto;
  /*  vertical-align: bottom; */
}

/* Style inputs, select elements and textareas */
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
select,
textarea {
  width: 100%;
  padding: 9px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-size: 0.9rem;
}

select {
  background-color: #fff;
}

/* Style the label to display next to the inputs */
label {
  padding: 6px 12px 9px 0;
  display: inline-block;
}

.checkbox input[type=checkbox].checkbox__item {
  display: none;
}

.checkbox label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.checkbox .checkbox__item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.checkbox .checkbox__item + span::after,
.checkbox .checkbox__item + span::before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.checkbox .checkbox__item + span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid #f18800;
  border-bottom: 3px solid #f18800;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.checkbox .checkbox__item:checked + span {
  color: #f18800;
}

.checkbox .checkbox__item:checked + span::after {
  opacity: 1;
}

/*-- local style common --*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.error {
  color: #ff0000;
  font-size: 0.8rem;
}

.cation {
  color: #ff0000;
  font-size: 0.8rem;
}

.asterisk {
  color: #ff0000;
  margin-left: 0.3rem;
}

.align-left {
  text-align: left;
}

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

.align-right {
  text-align: right;
}

/* 表示位置調整 */
section::before {
  content: none;
  scroll-margin-top: 300px;
}

/*-- dexktop or mobile --*/
.desktop {
  display: initial;
}

.mobile {
  display: none;
}

@media screen and (max-width: 576px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: initial;
  }
}
/* タブレット用のブレイクポイントを指定 */
/* タブレットサイズ以下でPC用のバナーを非表示に */
/* }
*/
@media screen and (max-width: 560px) {
  /* スマホ用のブレイクポイントを指定 */
}
/* Call us */
.head-catch {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  color: #ffffff;
  opacity: 1;
  /*  background-color: rgb(233, 51, 51); プライマリーカラー */
  padding: 3px 0;
  text-align: center;
  z-index: 1;
}

.head-catch a {
  color: #ffffff;
}

/*-- header --*/
#head-wrap {
  top: 0px;
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  line-height: 1;
  z-index: 999;
  height: 0px;
  text-decoration: none;
}
#head-wrap a {
  text-decoration: none;
}
#head-wrap .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#head-wrap:after {
  content: "";
  clear: both;
  display: block;
}
#head-wrap .logo {
  float: left;
  font-size: 1.4rem;
  /*    font-size: 36px; */
}

#global-nav {
  /*  position: absolute;
    left: 0;
    top: 300;
  */
  clear: both;
  text-align: center;
  background-color: #fff;
  top: 100px;
  z-index: 9999;
  /*  background-color: #f00; */
}
#global-nav ul {
  list-style: none;
  font-size: 1.1rem;
  /*    margin-right: 10px; */
  /*    display: inline-flex; */
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media (max-width: 576px) {
  #global-nav ul {
    display: block;
    margin-right: 0px;
  }
}
#global-nav ul li {
  border-right: 1px solid #fff;
  /*  line-height: 100vh; */
  padding: 3px 3px 0 9px;
  line-height: 2.4rem;
  display: inline-block;
  vertical-align: middle;
  /*  padding: 5px 9px 0 9px; */
  /*  height: 1.9rem; */
}

#global-nav ul li:last-child {
  border-right: none;
}

#mobile-head,
#global-nav {
  display: none;
}

.desktop-catch {
  font-size: 1.1rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  color: #222;
  line-height: 2.4rem;
  text-align: center;
  /*  background: linear-gradient(135deg, #d9d9d9, #bfbfbf, #a6a6a6, #f2f2f2); */
  /*  background: linear-gradient(90deg, #ace4ff, #4cabff 49%, #004994); */
  /*background: radial-gradient(circle, #75afdb, #4387ba 50%, #004994); */
  /*  background-color: rgb(231, 233, 234); */
  background: linear-gradient(to bottom, #f7f6f4 0%, #f2f1ee 40%, #eceae6 100%);
  border-bottom: 1px solid #d6d3ce;
  z-index: 9999;
}

.global-logo {
  width: 72px;
}

.mobile-catch {
  display: none;
}

/* Tablet (iPad) 768px */
@media (min-width: 577px) and (max-width: 991px) {
  .desktop-site-title h1 {
    font-size: 1.5rem;
  }
  .desktop-site-title h1 .sub {
    font-size: 1rem;
  }
  #desktop-nav ul li {
    padding: 0 5px;
    line-height: 1.8rem;
  }
  .desktop-logo img {
    width: 60px;
  }
}
@media (max-width: 576px) {
  #global-nav {
    display: block;
  }
  .desktop-catch {
    display: none;
  }
  .global-logo {
    width: 12vw;
  }
  .mobile-catch {
    display: inline;
    width: 88%;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    line-height: 42px;
    color: #222;
    background: linear-gradient(to bottom, #f7f6f4 0%, #f2f1ee 40%, #eceae6 100%);
    border-top: 1px solid #d6d3ce;
    /*    background: linear-gradient(90deg, #1a7edb, #d0e0f0 52%, #257fcf); */
  }
  .mobile-site {
    width: 100%;
    top: 42px;
    padding: 6px;
    position: fixed;
    display: flex;
    align-items: center;
    vertical-align: middle;
    background-color: rgb(255, 255, 255);
  }
  .mobile-site-title {
    width: 100%;
    text-align: center;
  }
  .mobile-site-title h1 {
    /*        font-family: "Zen Maru Gothic", serif; */
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    line-height: 0.6rem;
  }
  .mobile-site-title h1 .sub {
    font-weight: normal;
    font-size: 1.2rem;
    /*          font-family: 'Noto Sans JP', serif; */
  }
  .mobile-site-title h1 .sub::before {
    content: "\a";
    margin-top: 0;
    white-space: pre;
    display: block;
  }
  .nav-toggle-background {
    width: 12%;
    text-align: center;
    height: 42px;
    align-items: center;
    vertical-align: middle;
    background: rgb(243, 245, 248);
  }
}
.desktop-head {
  width: 100%;
  height: 84px;
  top: 36px;
  left: 0;
  position: fixed;
  z-index: 9999;
  /*  background-color: rgba(129, 57, 57, 0.9); */
  display: flex;
  justify-content: center;
  background-color: rgb(255, 255, 255);
}

.desktop-head .inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*  background-color: rgba(104, 22, 227, 0.9); */
  position: relative;
}

.desktop-logo-title {
  display: flex;
  align-items: center;
  vertical-align: middle;
  height: 100%;
}

.desktop-logo {
  padding: 9px;
}

.desktop-site {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  margin: 0 auto;
}

.desktop-menu {
  top: 120px;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: transparent;
  text-align: center;
  /*  background: linear-gradient(135deg, #d9d9d9, #bfbfbf, #a6a6a6, #f2f2f2); */
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  align-items: center;
}

.desktop-site-title {
  text-align: center;
}
.desktop-site-title h1 {
  font-weight: 900;
  font-style: normal;
  font-size: 2rem;
  color: #000;
  line-height: 0.8;
}
.desktop-site-title h1 .sub {
  font-weight: normal;
  font-size: 1.3rem;
}
.desktop-site-title h1 .sub::before {
  line-height: 1;
  margin-top: 0;
  content: "\a";
  /*        white-space: pre;
  */
  display: block;
  /*        border: #f00 1px solid; */
}

#desktop-nav {
  clear: both;
  /*  text-align: right; */
  text-align: center;
  top: 0;
  z-index: 9999;
  justify-content: center;
}
#desktop-nav ul {
  list-style: none;
  font-size: 0.9rem;
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
}

#desktop-nav ul li {
  border-right: 1px solid #fff;
  padding: 3px 3px 0 9px;
  line-height: 2.2rem;
  display: inline-block;
  vertical-align: middle;
  border-left: 1px solid #ccc;
}

#desktop-nav ul li:first-child {
  border-left: none;
}

@media (max-width: 576px) {
  .desktop-head {
    display: none;
  }
  .desktop-menu {
    display: none;
  }
  #global-nav ul li {
    border-right: none;
    display: block;
  }
}
#global-nav ul li a {
  padding: 0 5px;
  /*  padding: 2px; */
  transition: all 0.6s ease 0s;
  box-sizing: border-box;
  /*  color: #fff; */
  /*  font-weight: bold; */
}

/* Fixed */
/* #head-wrap.fixed {
  top: 100px;
*/
/*  top: 38px; */
/*  position: fixed; */
/*  height: 100px; */
/*  transition: top 0.65s ease-in; */
/* background-color: rgb(233, 51, 51); プライマリーカラー */
/*
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
*/
/*  z-index: 9999; */
/* } */
/*  
#head-wrap.fixed .logo {
  font-size: 36px;
  color: #333;
}

#head-wrap.fixed #global-nav ul li a {
  color: #333;
  padding: 0 20px;
}
*/
/* Toggle Button */
#nav-toggle {
  display: none;
  margin-right: auto;
  margin-left: auto;
  width: 30px;
  height: 36px;
  top: 10px;
  position: relative;
  /*  right: 9px;
  */
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}

@media (max-width: 576px) {
  #head-wrap {
    top: 0px;
    position: fixed;
    margin-top: 0;
    width: 100%;
    padding: 0;
    /* Fixed reset */
  }
  #head-wrap .inner {
    width: 100%;
    padding: 0;
  }
  #head-wrap .fixed {
    top: 0;
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    display: flex;
    /*    background: rgb(255, 240, 240); */
    width: 100%;
    height: 42px;
    z-index: 999;
    position: relative;
  }
  #head-wrap.fixed {
    top: 0;
  }
  #head-wrap.fixed .logo,
  #head-wrap .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    color: #333;
    font-size: 26px;
  }
  #head-wrap.fixed {
    margin-top: 0;
  }
  #global-nav {
    position: absolute;
    top: 42px;
    right: -300px;
    /*
        top: -514px;
        right: 0;
        background: linear-gradient(135deg, #d9d9d9, #bfbfbf, #a6a6a6, #f2f2f2);
    */
    /*    background: linear-gradient(90deg, #97cdff, #5ca0de); */
    /*    background: linear-gradient(135deg, #d9d9d9, #bfbfbf, #a6a6a6, #f2f2f2);*/
    background: rgb(243, 245, 248);
    border-bottom: 1px solid #222;
    width: 40%;
    text-align: center;
    /*
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    */
    transition: 0.5s ease-in-out;
    z-index: 9999;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
    margin-top: 14px;
  }
  #global-nav ul li {
    float: none;
    position: static;
    border-bottom: 1px solid #d9d9d9;
  }
  #head-wrap #global-nav ul li a,
  #head-wrap.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 5px 0;
  }
  #nav-toggle {
    display: block;
  }
  #nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    /* background: rgb(243, 245, 248); */
    background: linear-gradient(135deg, #d9d9d9, #bfbfbf, #a6a6a6, #f2f2f2);
    /*      left: 0;*/
    /*
            -webkit-transition: .35s ease-in-out;
            -moz-transition: .35s ease-in-out;
    */
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 9px;
  }
  #nav-toggle span:nth-child(3) {
    top: 18px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 9px;
    /*
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    */
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 9px;
    /*
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    */
    transform: rotate(-315deg);
  }
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    /*
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    */
    transform: translateX(-300px);
    /* transform: translateX(600px); */
    /*      transform: translateY(556px); */
  }
}
/* footer */
.site-footer {
  background: #f7f7f7;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #333;
  /* -------- navigation -------- */
  /* -------- HOME -------- */
  /* -------- bottom -------- */
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px;
}
.site-footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .footer-col {
  min-width: 0;
}
.site-footer .footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.site-footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-menu li {
  margin-bottom: 10px;
}
.site-footer .footer-home a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-footer .footer-home a i {
  font-size: 1rem;
  opacity: 0.75;
}
.site-footer .footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}
.site-footer .footer-bottom p {
  margin: 6px 0;
}
.site-footer .footer-bottom .footer-legal span {
  margin: 0 6px;
  opacity: 0.6;
}

/* -------- responsive -------- */
@media (max-width: 768px) {
  .site-footer .footer-nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer .footer-title {
    font-size: 0.85rem;
  }
}
/*-- 右サイドバナー */
.side-banner {
  right: 0;
  top: 160px;
  position: fixed;
  width: 240px;
  z-index: 9999;
}

@media (max-width: 576px) {
  .side-banner {
    display: none;
  }
}
/* ページトップへ・ボタン */
#page_top {
  width: 72px;
  height: 90px;
  position: fixed;
  right: 0px;
  bottom: 72px;
  opacity: 0;
  transition: all 1s ease;
  z-index: 9999;
}

#page_top.show {
  opacity: 0.8;
  transform: none;
}

#page_top a {
  position: relative;
  display: block;
  width: 72px;
  height: 90px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 2rem;
  color: rgba(222, 71, 71, 0.8);
  position: absolute;
  width: 30px;
  height: 30px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_top a::after {
  content: "TOP";
  font-size: 1rem;
  position: absolute;
  top: 48px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: rgba(222, 71, 71, 0.9);
}

@media screen and (max-width: 576px) {
  /* スマホ用のブレイクポイントを指定 */
  /* ページトップへ・ボタン */
  #page_top {
    width: 72px;
    height: 90px;
    position: fixed;
    right: 0px;
    bottom: 120px;
    opacity: 0;
    transition: all 1s ease;
  }
}
/* fadeUp : 下からふわっと現れる */
.fadeUp {
  /*    -webkit-animation-name: fadeUpAnime; */
  animation-name: fadeUpAnime;
  /*アニメーションの名前*/
  /*    -webkit-animation-duration: 1s; */
  animation-duration: 1s;
  /*アニメーションの実行時間*/
  /*    -webkit-animation-fill-mode: forwards; */
  animation-fill-mode: forwards;
  /*アニメーション後、要素が表示されたままにする*/
}

.fadeUpTrigger {
  opacity: 0;
  /*非表示*/
}

/* ページトップへ */
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    /*非表示*/
    /*          -webkit-transform: translateY(100px); */
    transform: translateY(100px);
    /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 1;
    /*表示*/
    /*          -webkit-transform: translateY(0); */
    transform: translateY(0);
    /*元の位置*/
  }
}
/*-- page-section --*/
.breadcrumb {
  font-weight: normal;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/*-- フッター固定CTA --*/
.fixed-cta {
  position: fixed;
  z-index: 9999;
  font-family: inherit;
}
.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.fixed-cta a i {
  font-size: 1.2rem;
}
.fixed-cta a:hover {
  opacity: 0.85;
}

/* =========================
   Smartphone
   ========================= */
@media (max-width: 767px) {
  .fixed-cta {
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
  }
  .fixed-cta a {
    width: 50%;
    height: 54px;
    border-radius: 0;
  }
  .fixed-cta .cta-line {
    background: #f1f8f4;
    color: #1e7d4d;
    border-top: 1px solid #ddd;
  }
  .fixed-cta .cta-contact {
    background: #111;
    color: #fff;
    border-top: 1px solid #111;
  }
}
/* =========================
   Tablet & PC（サイズ調整版）
   ========================= */
@media (min-width: 768px) {
  .fixed-cta {
    right: 24px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .fixed-cta a {
    width: 168px;
    height: 42px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }
  .fixed-cta a i {
    font-size: 1.05rem;
  }
  .fixed-cta .cta-line {
    background: #fff;
    border: 1px solid #d8efe3;
    color: #1e7d4d;
  }
  .fixed-cta .cta-contact {
    background: #111;
    color: #fff;
    border: none;
  }
}
/* CTA 通常状態 */
.fixed-cta {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* フッター接近時 */
.fixed-cta.is-fade {
  opacity: 0.35;
  transform: scale(0.96);
  pointer-events: none;
}

/* CTA 非表示ページ */
.page-contact .fixed-cta,
.page-guide .fixed-cta,
.page-id-29 .fixed-cta {
  display: none !important;
}/*# sourceMappingURL=common.css.map */