* {
  font-family: "Noto Sans JP";
}
.content-Wrap {
  background-color: #F9F9F9;
}
body {
  max-width: 2040px;
  margin: 0 auto;
}
/*==============
 * layout
 * =============*/
.taf-page-content {
  max-width: 1024px;
  padding-top: 104px;
  padding-bottom: 104px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.taf-section {
  width: 100%;
  padding-top: 64px;
}
.inner {
  margin: 0 auto;
  width: 1024px;
  max-width: 100%;
  position: relative;
}
.taf-page-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-wrapper {
  margin-top: 40px;
  width: fit-content;
}
.btn-center {
  margin: 40px auto;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.taf-spn {
  display: none;
}
.taf-pc {
  display: block;
}
@media screen and (max-width:1024px) {
  .taf-spn {
    display: block;
  }
  .taf-pc {
    display: none;
  }
}
@media screen and (max-width:1024px)  {
  .taf-page-content {
    max-width: 343px;
    padding-top: 104px;
  }
  .btn-wrapper {
    margin: 40px auto;
  }
}
/*effect*/
.fadein {
  color: rgb(255, 255, 255);
  opacity: 0;
  animation-name: fadein;
  animation-duration: 3.5s;
  animation-timing-function: cubic-bezier(0.93, 1.64, 0.95, 0.34);
  animation-fill-mode: forwards;
}
.fadein-r {
  color: rgb(255, 255, 255);
  opacity: 0;
  animation-name: fadein-r;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.54, 0.01, 1, 1);
  animation-fill-mode: forwards;
}
.fadein-l {
  color: rgb(255, 255, 255);
  opacity: 0;
  animation-name: fadein-l;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0, 0, 1, 0.06);
  animation-fill-mode: forwards;
}
.fadein-s {
  color: rgb(255, 255, 255);
  opacity: 0;
  animation-name: fadein-s;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.42, 1.14, 0.95,-0.44);
  animation-fill-mode: forwards;
}
.fadein-m {
  color: rgb(255, 255, 255);
  opacity: 0;
  animation-name: fadein-m;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.42, 1.14, 0.95,-0.44);
  animation-fill-mode: forwards;
}


@keyframes fadein {
  0% {
     opacity: 0;
     transform: scale(4);
  }
  100% {
     opacity: 1;
  }
}
@keyframes fadein-r {
  0% {
     opacity: 0;
     transform: scale(8);
  }
  100% {
     opacity: 1;
  }
}
@keyframes fadein-l {
  0% {
     opacity: 0;
     transform: scale(8);
  }
  100% {
     opacity: 1;
  }
}
@keyframes fadein-s {
  0% {
     opacity: 0;
     transform: scale(6);
  }
  100% {
     opacity: 1;
  }
}
@keyframes fadein-m {
  0% {
     opacity: 0;
     transform: scale(4);
  }
  100% {
     opacity: 1;
  }
}

/*modal*/
.modal-area {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  max-height: 90%;
  max-width: 1024px;
  padding: 10px 32px;
  background-color: #fff;
  overflow-y: scroll;
  -ms-overflow-style: none;
  border-radius: 12px;
}
.open-modal {
  cursor: pointer;
}
.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.modal-contents {
  text-align: center;
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.taf-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30,30,30,0.9);
  z-index: 10000;
}

.taf-modal__container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  max-width: 1024px;
  max-height: 90%;
  z-index: 10001;
  background-color: #fff;
  border-radius: 12px;
}

.taf-modal__clear {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

/* accordion */
.accordion-mod {
  background: #FFFFFF;
  border: solid 0.5px #B2B2B2;
  border-radius: 12px;
  margin: 16px 0;
}
.open-accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}
.open-accordion:hover {
  opacity: 0.5;
}
.accordion-content {
  display: none;
  padding: 0 24px 24px;
}


/*==============
 * link&element
 * =============*/
a:link {
    text-decoration: none;
    transition: all 0.3s;
}
/*a:visited {
    color: #0000BE;
}*/
p > a {
  color: #003EE5;
  text-decoration: underline;
}
a:hover {
    color: #777;
    text-decoration: none;
}
p {
    padding: 0;
}
p img {
    padding: 0;
    max-width: 100%;
}
blockquote {
    font-style: italic;
    margin: 1em 0 1em 20px;
    padding: 15px;
    background-color: #f7f7f7;
    color: #444;
}
pre {
    padding: 10px 20px;
    border-left: 6px solid #ddd;
    background-color: #f7f7f7;
    overflow: auto;
    width: 90%;
    _width: 95%; /* for IE6 */
}
ul, ol {
    margin: 1em 20px;
    padding: 0;
    list-style-position: outside;
}
ul ul, ul ol, ul ol, ol ol {
    margin: 0.3em 0 0.3em 15px
}
/*基本ボタンエフェクト*/
.taf-button {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #000000;
  color: #FFFFFF;
  font-weight: 600;

  width: fit-content;
  border-radius: 40px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.3);
  overflow: hidden;

  position: relative;
  transition: ease .2s;
  cursor: pointer;

}
.taf-button span {
  color: #FFF;
  position: relative;
  z-index: 3;
}
.taf-button:hover {
  background-size: cover;
  transform: translateY(2px);
}
.taf-button:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -130%;
  z-index: 2;
    /*色や形状*/
  background: url(../img/btn-hover.png);/*背景色*/
  background-size: cover;
  width: 120%;
  height: 100%;
    /*アニメーション*/
  transform: skewX(-25deg);
}
.taf-button:hover:before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
  }
}
/* 内部遷移ボタン */
.taf-button--internal {
  padding: 22px 70px;
  gap: 10px;
}
.taf-button--internal span {
  font-size: 24px;
}
/* 外部遷移ボタン */
.taf-button--external {
  padding: 18px 24px;
  gap: 10px;
}
.taf-button--external span {
  font-size: 16px;
}
.taf-button--external img {
  position: relative;
  z-index: 3;
}
/* to-top */
.page-top-btn {
    background: #EEEEEE;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    width: 64px;
    height: 64px;
    padding: 32px 16px;
    position: fixed;
    bottom: 2%;
    right: 2%;
    opacity: 0;
    z-index: 9;
}
.page-top-btn:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-top: solid 4px #8F8F8F;
    border-right: solid 4px #8F8F8F;
    top: 42%;
    left: 33%;
    transform: rotate(-45deg);
}
.page-top-btn:hover {
  opacity: 0.5;
}
.isActive {
  opacity: 0.8;
}
/*フローティングボタン*/
.fl__item {
  width: fit-content;
  position: fixed;
  bottom: 20px;
  right: -10px;
  z-index: 98;
}
.fl__link-glossary,.fl__link-entry {
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.25));
}
.fl__link-glossary:hover,.fl__link-entry:hover {
  opacity: 0.5;
}
@media screen and (max-width:768px) {
  .fl__item {
    right: 0px;
  }
  .fl__link-glossary,.fl__link-entry {
    width: 112px;
    height: 84px;
  }
  /*
  .fl__link-glossary svg,.fl__link-entry svg {
    width: 66%!important;
    height: 66%!important;
  }*/
}


/* パン屑リスト */
.taf-breadcrumb {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
.taf-breadcrumb__list {
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.taf-breadcrumb__list a {
  color: #000000;
  border-bottom: solid 1px #B2B2B2;
  line-height: 175%;
  letter-spacing: 1px;
}
.taf-breadcrumb__list a:hover {
  opacity: 0.5;
}
.taf-breadcrumb__list p {
  word-break: break-word;
}
@media screen and (max-width:1024px) {
  .taf-breadcrumb__list {
    margin-left: 16px;
  }
}

/*effect*/
.fadein-scroll {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 4s, visibility 4s, transform 4s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*==============
 * form
 * =============*/
form {
    margin: 0;
    padding: 0;
    font-size: 14px;
}
fieldset {
    padding: 3px;
    border: none;
}
legend {
    padding: 0 10px;
    background-color: #fff;
}
input, textarea ,select {
    padding: 12px 16px;
    border-width: 1px;
    border-style: solid;
    border-color: #1A1A1C;
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    margin: 8px 0;
}
select {
  position: relative;
  padding: 12px 48px 12px 16px;
  background-image: url(../img/open-icon.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
}
input:hover, textarea:hover {
    border-color: #339999
}
a:focus, textarea:focus, input:focus {
    border-color: #D18D0F;
}
textarea {
    padding: 12px 16px
}
input[type=submit] {
    color: #FFFFFF;
    padding: 10px 32px;
    font-size: 100%;
    font-weight: 600;
    background-color: #000000;
    border-radius: 40px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.3);
    display: block;
    margin: 32px auto;
    width: fit-content;
}
input[type=submit]:hover {
    opacity: 0.5;
    transform: translateY(2px);
}
/*input[type=radio] {
    display: inline-block;
    border: none;
    background-color: transparent;
    background-image: none;
}*/


input[type="checkbox"], input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
  padding-left: 32px;
  vertical-align: middle;
  position: relative;
  margin: 20px 0;
}
input[type="checkbox"]::before, input[type="radio"]::before,
input[type="checkbox"]::after, input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 3px;
  border: 1.5px solid #1A1A1C;
  width: 17px;
  height: 17px;
  transform: translateY(-56%);
  top: 50%;
  left: 2px;
}
input[type="radio"]::before {
  background-color: #fff;
  border-radius: 10px;
  border: 1.8px solid #1A1A1C;
  width: 20px;
  height: 20px;
  transform: translateY(-56%);
  top: 50%;
  left: 2px;
}

input[type="checkbox"]::after {
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  opacity: 0;
  height: 6px;
  width: 10px;
  transform: rotate(-45deg);
  top: -6px;
  left: 6px;
}
input[type="radio"]::after {
  opacity: 0;
  height: 12px;
  width: 12px;
  border-radius: 10px;
  background-color: #003EE5;
  transform: rotate(-45deg);
  top: -7px;
  left: 6px;
}

input[type="checkbox"]:checked::after, input[type="radio"]:checked::after {
  opacity: 1;/*チェック後表示*/
}
input[type="checkbox"]:checked::before {
  background-color: #003EE5;
  border: 1.5px solid #003EE5;
}
input[type="radio"]:checked::before  {
  border: 1.8px solid #003EE5;
}


.required {
  color: #EC0000;
  font-size: 12px;
  padding-left: 8px;
}

/*=========
 * contact form 7 style
 * ====================*/
/*エラーメッセージ*/
.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  display: block;
  font-size: 12px;
  color: #EC0000;
  margin: 0 0 16px 0;
}
.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  font-size: 16px;
  font-weight: 600;
  color: #EC0000;
  text-align: center;
}
/*span.wpcf7-list-item {display: block;}*/

/*input長さ*/
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="url"], .wpcf7 textarea, .wpcf7 select {
width: 600px!important;
}
.wpcf7 input[type="tel"] {
  width: 146px;
}
@media only screen and (max-width: 979px){
    input, textarea {
        width: 99%;
        padding: 12px 16px;
    }
    input[type=radio] {
        display: inline-block;
        width: 20px;
    }
    input[type=checkbox] {
        width: fit-content;
    }
}
@media screen and (max-width: 1024px) {
    .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="url"], .wpcf7 textarea, .wpcf7 select {
      width: 100%!important;
    }

}


/*==============
 * Headline
 * =============*/
h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
  color: #000000;
}
p {
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 1px;
}
h1 {
  font-size: 42px;
  line-height: 150%;
  letter-spacing: 1px;
}
h2 {
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 1px;
}
h3 {
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 1px;
}
h4 {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 1px;
}
h5 {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 1px;
}

/* 記事以外のh1,h2,h3 */
.taf-headline-h1 {
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
}
.taf-headline-h1__en {
  font-size: 16px;
  font-weight: 900;
  margin-top: 8px;
}
.taf-headline-h1__sub {
  font-size: 16px;
  margin-top: 8px;
}
.taf-headline-h2__sub {
  background: #000000;
  border-radius: 0 20px 20px 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 900;
  line-height: 23px;
  margin-top: 8px;
  padding: 2px 24px;
  width: fit-content;
}
.taf-headline-h2--reverse {
  text-align: right;
}
.taf-headline-h2--reverse .taf-headline-h2__sub {
  margin-left: auto;
  border-radius: 20px 0 0 20px;
}
.taf-headline-h3 {
  border-bottom: dashed 2px #000;
  padding: 4px 0;
  width: fit-content;
}


/* TOPページのH2 */
.content-h2--top h2 {
  font-size: 48px;
}


@media screen and (max-width:540px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  .content-h2--top h2 {
    font-size: 24px;
  }
}
@media screen and (max-width:1024px) {
}

/*==============
  header
  ==============*/
header ul,footer ul {
  list-style-type: none;
}
.header {
  align-items: center;
  position: fixed;
  width: 100%;
  max-width: 2040px;
  z-index: 99;
}
.header-wrapper {
  display: flex;
  margin: 24px 40px;
  justify-content: space-between;
  align-items: center;
}
.global-nav__menu {
  display: flex;
  align-items: center;
}
.global-nav__menu li {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  margin: 0 24px 0 0;
}
.pulldown-menu {
  padding-right: 8px;
}
.global-nav__item {
  position: relative;
}
.global-nav__item a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}
.global-nav__item > ul {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.25);
  position: absolute;
  left: -180%;
  margin: 0;
  padding: 16px 0 24px 24px;
  width: fit-content;
  display: none;
}
.global-nav__item ul li {
  margin: 16px 0;
  width: 224px;
}
.global-nav__item ul li a {
  color: #000000;
  font-weight: 400;
}
.taf-in-menu-h {
  padding-left: 8px;
  border-left: 4px solid #000000;
  font-size: 12px;
}
.pulldown-menu:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: solid 2px #8F8F8F;
  border-right: solid 2px #8F8F8F;
  transform: rotate(135deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 4px;
  right: -5px;
}
.global-nav__menu li:hover ul {
  display: block;
}


.global-nav__menu li a:hover {
  color: #B2B2B2;
}
.header-contact-btn {
  background-color: #000000;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  color: #FFFFFF;
  padding: 10px 24px;
  max-width: 100px;
  margin: 0 auto;
}
.header-contact-btn a {
  max-width: 100px;
}
.header-contact-btn:hover {
  background-color: #B2B2B2;
  transform: translateY(2px);
}
.header-wrapper h1 {
  font-size: 16px;
}
.header-logo-wrapper {
  display: flex;
  align-items: center;
  width: fit-content;
}
.header-logo-wrapper p {
  padding-left: 40px;
  line-height: 35px;
}
.header-logo a {
  width: 300px;
}
.header-logo img {
  width: 100%;
}

/* Responsive menu button */
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.menu_line {
  background: #000000;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  margin: 4px 0;
}
.responsive_btn div {
  transition: ease .4s;
}
.responsive_btn.isActive div:nth-child(1) {
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
}
.responsive_btn.isActive div:nth-child(2) {
  display: none;
}
.responsive_btn.isActive div:nth-child(3) {
  position: absolute;
  top: 8px;
  transform: rotate(-45deg)
}

/* Responsive style */
@media screen and (max-width: 1144px) {
  .responsive_btn {
    display: flex;
  }
  .global-nav {
    background: #FFFFFF;
    width: 100%;
    height: 100vh;
    padding: 40px 0 0 0;
    position: fixed;
    top: 0;
    right: -100%;
    transition: .5s;
    overflow-y: scroll;
  }
  .global-nav__menu {
    display: block;
    text-align: center;
  }
  .global-nav__menu li {
    margin: 32px auto;
    text-align: center;
    width: fit-content;
  }
  .global-nav__menu a {
    font-size: 14px;
    color: #000000;
  }
  .global-nav__menu ul {
    background-color: rgba(0,0,0,0);
    display: block;
    position: unset;
    box-shadow: none;
    padding: 16px;
    margin: 8px auto;
    border: 0.5px dashed #d3d3d3;
  }
  .pulldown-menu:after {
    display: none;
  }
  .taf-link-disabled {
    pointer-events: none
  }
  .taf-in-menu-h {
    padding-right: 8px;
    width: fit-content;
    border-right: 4px solid #000000;
    margin: 0 auto;
  }
  .global-nav__item ul li {
    width: unset;
    margin-bottom: 2px;
  }
  .global-nav__item ul li a {
    border-bottom: solid 1px #F3F3F3;
    font-size: 12px;
  }
  .global-nav__item ul li ul {
    border: none;
    padding: 0 0 16px 0;
  }

  .header-contact-btn:hover {
    background-color: #B2B2B2;
    transform: translateY(0px);
  }
  .header-wrapper {
    margin: 24px 16px;
  }
  .header-logo a {
    width: 200px;
  }
}
@media screen and (max-width:540px) {
  .header-wrapper {
    margin: 24px 16px;
  }
  .header-logo a {
    width: 160px;
  }
  .header-logo-wrapper p {
    padding-left: 16px;
    font-size: 14px;
  }
}
/* js function "menuToggle" starting only */
.menu_active,.menu_active--top {
  right: 0;
}

/*=================
 * footer
 * ================*/
.footer {
  background: #000000;
  padding: 40px;
  width: 100%;
  max-width: 2040px;
  position: relative;
  z-index: 99;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 64px;
}

.taf-footer__corp-info {
  width: fit-content;
}

.taf-footer__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  gap: 24px;
}

.taf-footer__logo a {
  width: 300px;
}

.taf-footer__logo img {
  width: 100%;
}

.taf-footer__logo p {
  color: #FFFFFF;
  line-height: 35px;
}

.taf-footer__adress {
  margin: 24px 0;
}

.taf-footer__adress p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  width: 100%;
}

.taf-footer__policy-link p {
  font-size: 14px;
  line-height: unset;
  letter-spacing: unset;
  margin-bottom: 8px;
}

.taf-footer__policy-link a {
  color: #FFFFFF;
  font-weight: 300;
}

.taf-footer__policy-link a:hover {
  opacity: 0.5;
}

.taf-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  width: fit-content;
}

.taf-footer__menu-item {
  width: fit-content;
}

.taf-footer__menu-item li {
  margin-bottom: 16px;
}

.taf-footer__menu-item a {
  color: #FFFFFF;
  font-size: 14px;
}

.taf-footer__menu-item a:hover {
  opacity: 0.5;
}

.taf-footer__menu-item .taf-in-menu-h {
  color: #FFFFFF;
  border-color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 4px 8px;
}

.taf-footer__copy-rightis {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width:960px) {
  .taf-footer__logo {
    justify-content: center;
    gap: 16px;
  }
  .taf-footer__logo a {
    width: 100%;
  }
  .taf-footer__corp-info {
    width: 100%;
  }
  .taf-footer__menu {
    gap: 32px;
  }
  .taf-footer__menu ul {
    margin: 0;
  }
  .taf-footer__menu-item .taf-in-menu-h {
    margin: 0 0 16px 0;
  }
}
