.tab-list-mobile{
  display: none;
  align-items: center;
  border: 1px solid #E1E3E3;
  background: var(--white);
  padding: 0 4.8rem 0 2rem;
  height: 4.8rem;
  border-radius: 100rem;
  font-size: 1.4rem;
  position: relative;
  color: var(--black);
  cursor: pointer;
}
.tab-list-mobile::after {
  position: absolute;
  content: "";
  right: 2rem;
  width: 1rem;
  height: 0.7rem;
  background: url(../images/icon-arrow-down.png);
  background-size: cover;
  background-position: center;
  transition-duration: 250ms;
}
.tab-list.open .tab-list-mobile::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.tab-list{
  border-bottom: 1px solid #ECE8E6;
}
.tab-list ul{
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tab-list li{
  flex: 1 1 28.8rem;
}
.tab-link{
  padding: 0 1.5rem;
  min-height: 5.6rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #072029 !important;
  text-align: center;
  position: relative;
  text-decoration: none !important;
}
.tab-list li.active .tab-link{
  font-weight: bold;
}
.tab-list li.active .tab-link::after{
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.4rem;
  background: var(--pink);
}
@media(min-width:1360px) and (max-width:1459.98px){
  .tab-link {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .tab-link {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .tab-link {
    padding: 0 1rem;
    min-height: 4.8rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media(max-width:991.98px){
  .tab-list {
    border-bottom: 0;
    position: relative;
  }
  .tab-list-mobile {
    display: flex;
  }
  .tab-list ul{
    position: absolute;
    background: var(--white);
    border-radius: 0.4rem;
    padding: 0.6rem 0;
    width: 100%;
    box-shadow: 0px 4px 16px 0px #1D0D050F, 0px -4px 16px 0px #1D0D050F;
    margin-top: 0.8rem;
    display: block;
    z-index: 10;
    max-height: 20rem;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform-origin: 50% 0;
    transform: scaleY(0);
    transition-duration: 250ms;
  }
  .tab-list.open ul{
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  .tab-link {
    padding: 0.6rem 2rem;
    min-height: initial;
    font-size: 1.4rem;
    line-height: 2.4rem;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  .tab-list li.active .tab-link::after {
    height: 0.1rem;
  }
}