/*
tabNavigation
---------------------------*/
.tabNavigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tabNavigation .tab {
  position: relative;
  width: 33.333%;
  text-align: center;
}
.tabNavigation .tab a, .tabNavigation .tab p {
  display: block;
  font-weight: 600;
  line-height: 1.3;
  font-size: 15px;
  padding: 14px 0;
  cursor: pointer;
}
.tabNavigation .tab a:after, .tabNavigation .tab p:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(27, 184, 206, 0.1);
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.tabNavigation .tab.active {
  cursor: default;
}
.tabNavigation .tab.active a:after, .tabNavigation .tab.active p:after {
  content: "";
  height: 2px;
  background: #00C1DF;
  bottom: 1px;
}
@media (min-width: 769px) {
  .tabNavigation {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .tabNavigation .tab {
    position: relative;
    width: 32.5%;
    background-color: #f5f5f5;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .tabNavigation .tab:nth-of-type(n+3) p:after {
    content: "";
  }
  .tabNavigation .tab:nth-of-type(n+3) p:hover:after {
    content: "";
    width: 100%;
    opacity: 1;
  }
  .tabNavigation .tab a, .tabNavigation .tab p {
    font-size: 18px;
    font-weight: 600;
    color: #00C1DF;
    padding: 18px 0;
  }
  .tabNavigation .tab a:after, .tabNavigation .tab p:after {
    content: "";
    height: 2px;
    width: 0;
    background: #00C1DF;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
  }
  .tabNavigation .tab a:hover:after, .tabNavigation .tab p:hover:after {
    content: "";
    width: 100%;
    opacity: 1;
  }
  .tabNavigation .tab.active {
    background-color: #00C1DF;
  }
  .tabNavigation .tab.active a, .tabNavigation .tab.active p {
    color: #00C1DF;
    cursor: default;
    -webkit-filter: drop-shadow(3px -3px 5px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(3px -3px 5px rgba(0, 0, 0, 0.2));
    z-index: 1;
    color: #fff;
  }
  .tabNavigation .tab.active a:after, .tabNavigation .tab.active p:after {
    content: none;
  }
  .tabNavigation .tab:nth-of-type(n+3).active a:after, .tabNavigation .tab:nth-of-type(n+3).active p:after {
    content: none;
    opacity: 0;
  }
  .tabNavigation .tab:hover {
    opacity: 1;
  }
}

#tabNavigationJs .tabContent {
  display: none;
}
#tabNavigationJs .tabContent.show {
  display: block;
}

.tabContent {
  background-color: #fff;
  padding: 20px 4%;
}
.tabContent .qaList li {
  padding-bottom: 20px;
}
.tabContent .qaList dl {
  position: relative;
  padding-left: 43px;
}
.tabContent .qaList dl:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 33px;
  height: 84px;
  background: url(../img/faq/icon-q-sp.svg) center center no-repeat;
  background-size: contain;
}
.tabContent .qaList dt p, .tabContent .qaList dd p {
  line-height: 1.5;
}
.tabContent .qaList dt .att, .tabContent .qaList dd .att {
  color: #E60012;
}
.tabContent .qaList dt {
  padding: 5px 0 10px;
}
.tabContent .qaList dt p {
  font-weight: 600;
}
.tabContent .qaList dd {
  background-color: #fff;
  padding: 10px;
}
.tabContent .qaList dd a {
  color: #00C1DF;
  text-decoration: underline;
}
@media (min-width: 1000px) {
  .tabContent {
    padding: 50px;
  }
  .tabContent .qaList li {
    padding-bottom: 40px;
  }
  .tabContent .qaList dl {
    padding-left: 76px;
  }
  .tabContent .qaList dl:after {
    background: url(../img/faq/icon-q.svg) center center no-repeat;
    width: 66px;
    height: 108px;
  }
  .tabContent .qaList dt {
    padding: 20px 0;
  }
  .tabContent .qaList dd {
    padding: 20px;
  }
}/*# sourceMappingURL=faq.css.map */