@import url("phone.min.css") screen and (max-width: 767px);
@import url("tablet.min.css") screen and (min-width: 768px) and (max-width: 1024px);
@import url("pc.min.css") screen and (min-width: 1025px);
@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
.ageTabs {
  list-style: none;
  display: flex;
  width: 100%;
}
.ageTabs > li {
  background: #000000;
  position: relative;
  cursor: pointer;
}
.ageTabs > li > span {
  color: #ffffff;
  text-decoration: none;
  font-family: "europa", sans-serif;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ageTabs > li::after {
  content: "";
  position: absolute;
  background: #ffffff;
  transform: rotate(45deg);
}
.ageTabs > li.current {
  background: #f2f2f8;
  cursor: auto;
}
.ageTabs > li.current > span {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .ageTabs {
    gap: 0.3rem;
  }
  .ageTabs > li {
    width: 25%;
    height: 2.2rem;
    overflow: hidden;
  }
  .ageTabs > li > a,
  .ageTabs > li > span {
    font-size: 1.2rem;
  }
  .ageTabs > li::after {
    width: 2.2rem;
    height: 2.2rem;
    top: -1.3rem;
    right: -1.3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ageTabs {
    gap: 0.3rem;
  }
  .ageTabs > li {
    width: 25%;
    height: 2.2rem;
    overflow: hidden;
  }
  .ageTabs > li > a,
  .ageTabs > li > span {
    font-size: 1.2rem;
  }
  .ageTabs > li::after {
    width: 2.2rem;
    height: 2.2rem;
    top: -1.3rem;
    right: -1.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .ageTabs {
    gap: 0.3rem;
    margin-top: 3rem;
  }
  .ageTabs > li {
    width: 25%;
    height: 2.2rem;
    overflow: hidden;
  }
  .ageTabs > li > a,
  .ageTabs > li > span {
    font-size: 1.2rem;
  }
  .ageTabs > li::after {
    width: 2.2rem;
    height: 2.2rem;
    top: -1.3rem;
    right: -1.3rem;
  }
}
/*# sourceMappingURL=ageTab.css.map */